Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for iosfwd (0.07 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    //
    // Author: ******@****.*** (Markus Heule)
    //
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    #define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    
    #include <iosfwd>
    #include <vector>
    #include "gtest/internal/gtest-internal.h"
    #include "gtest/internal/gtest-string.h"
    
    namespace testing {
    
    // A copyable object representing the result of a test part (i.e. an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/net/mail/message.go

    	if a.Name == "" {
    		return s
    	}
    
    	// If every character is printable ASCII, quoting is simple.
    	allPrintable := true
    	for _, r := range a.Name {
    		// isWSP here should actually be isFWS,
    		// but we don't support folding yet.
    		if !isVchar(r) && !isWSP(r) || isMultibyte(r) {
    			allPrintable = false
    			break
    		}
    	}
    	if allPrintable {
    		return quoteString(a.Name) + " " + s
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top