Searched defs:str (Results 51 - 75 of 2866) sorted by relevance

1234567891011>>

/external/ipsec-tools/src/libipsec/
H A Dipsec_strerror.c90 void __ipsec_set_strerror(const char *str) argument
93 ipsec_errlist[EIPSEC_SYSTEM_ERROR] = str;
/external/libcxx/test/strings/basic.string/string.ops/string_find.first.not.of/
H A Dpointer_size.pass.cpp21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, argument
24 assert(s.find_first_not_of(str, pos) == x);
31 test(const S& s, const typename S::value_type* str, typename S::size_type x) argument
33 assert(s.find_first_not_of(str) == x);
H A Dstring_size.pass.cpp12 // size_type find_first_not_of(const basic_string& str, size_type pos = 0) const;
21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) argument
23 assert(s.find_first_not_of(str, pos) == x);
30 test(const S& s, const S& str, typename S::size_type x) argument
32 assert(s.find_first_not_of(str) == x);
/external/libcxx/test/strings/basic.string/string.ops/string_find.first.of/
H A Dpointer_size.pass.cpp21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, argument
24 assert(s.find_first_of(str, pos) == x);
31 test(const S& s, const typename S::value_type* str, typename S::size_type x) argument
33 assert(s.find_first_of(str) == x);
H A Dstring_size.pass.cpp12 // size_type find_first_of(const basic_string& str, size_type pos = 0) const;
21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) argument
23 assert(s.find_first_of(str, pos) == x);
30 test(const S& s, const S& str, typename S::size_type x) argument
32 assert(s.find_first_of(str) == x);
/external/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/
H A Dpointer_size.pass.cpp21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, argument
24 assert(s.find_last_not_of(str, pos) == x);
31 test(const S& s, const typename S::value_type* str, typename S::size_type x) argument
33 assert(s.find_last_not_of(str) == x);
H A Dstring_size.pass.cpp12 // size_type find_last_not_of(const basic_string& str, size_type pos = npos) const;
21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) argument
23 assert(s.find_last_not_of(str, pos) == x);
30 test(const S& s, const S& str, typename S::size_type x) argument
32 assert(s.find_last_not_of(str) == x);
/external/libcxx/test/strings/basic.string/string.ops/string_find.last.of/
H A Dpointer_size.pass.cpp21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, argument
24 assert(s.find_last_of(str, pos) == x);
31 test(const S& s, const typename S::value_type* str, typename S::size_type x) argument
33 assert(s.find_last_of(str) == x);
H A Dstring_size.pass.cpp12 // size_type find_last_of(const basic_string& str, size_type pos = npos) const;
21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) argument
23 assert(s.find_last_of(str, pos) == x);
30 test(const S& s, const S& str, typename S::size_type x) argument
32 assert(s.find_last_of(str) == x);
/external/libunwind/src/arm/
H A DGglobal.c53 const char* str = getenv ("UNW_ARM_UNWIND_METHOD"); local
54 if (str)
56 unwi_unwind_method = atoi (str);
/external/libunwind/src/mi/
H A Dinit.c47 const char *str = getenv ("UNW_DEBUG_LEVEL"); local
49 if (str)
50 unwi_debug_level = atoi (str);
/external/lldb/test/expression_command/call-function/
H A Dmain.cpp6 std::string str = "Hello world"; local
7 std::cout << str << std::endl;
8 std::cout << str.c_str() << std::endl;
10 print str
11 print str.c_str()
/external/llvm/test/MC/Mips/
H A Delf-N64.s39 ld $1, %got_page($str)($gp)
40 daddiu $4, $1, %got_ofst($str)
57 .type $str,@object # @str
60 $str:
62 .size $str, 12
/external/srec/shared/src/
H A DESR_Locale.c43 ESR_ReturnCode ESR_str2locale(const LCHAR* str, ESR_Locale* locale) argument
46 if (!lstrcasecmp(str, L("EN-US"), &rtn) && !rtn) *locale = ESR_LOCALE_EN_US;
47 else if (!lstrcasecmp(str, L("FR-FR"), &rtn) && !rtn) *locale = ESR_LOCALE_FR_FR;
48 else if (!lstrcasecmp(str, L("DE-DE"), &rtn) && !rtn) *locale = ESR_LOCALE_DE_DE;
49 else if (!lstrcasecmp(str, L("EN-GB"), &rtn) && !rtn) *locale = ESR_LOCALE_EN_GB;
50 else if (!lstrcasecmp(str, L("IT-IT"), &rtn) && !rtn) *locale = ESR_LOCALE_IT_IT;
51 else if (!lstrcasecmp(str, L("NL-NL"), &rtn) && !rtn) *locale = ESR_LOCALE_NL_NL;
52 else if (!lstrcasecmp(str, L("PT-PT"), &rtn) && !rtn) *locale = ESR_LOCALE_PT_PT;
53 else if (!lstrcasecmp(str, L("ES-ES"), &rtn) && !rtn) *locale = ESR_LOCALE_ES_ES;
54 else if (!lstrcasecmp(str,
[all...]
/external/valgrind/main/none/tests/
H A Dreadline1.c15 int zzzstrlen ( char* str )
17 if (str[1] == 0) return 2; else return 10;
22 char str[2]; local
23 str[1] = 0;
24 str[0] = c;
25 printf("HERE strlen is %d\n", zzzstrlen(str));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/misc/
H A DNetscapeRevocationURL.java9 DERIA5String str)
11 super(str.getString());
8 NetscapeRevocationURL( DERIA5String str) argument
H A DVerisignCzagExtension.java9 DERIA5String str)
11 super(str.getString());
8 VerisignCzagExtension( DERIA5String str) argument
/external/chromium_org/base/
H A Dhash.h30 // Computes a hash of a string |str|.
32 inline uint32 Hash(const std::string& str) { argument
33 return Hash(str.data(), str.size());
/external/chromium_org/jingle/notifier/base/
H A Dnotification_method.cc30 NotificationMethod StringToNotificationMethod(const std::string& str) { argument
31 if (str == "p2p") {
33 } else if (str == "server") {
36 LOG(WARNING) << "Unknown notification method \"" << str
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dstring-base64.js119 var str = ""; variable
122 str += String.fromCharCode( (25 * Math.random()) + 97 );
128 base64 = toBase64(str);
132 str += str;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dstring-base64.js119 var str = ""; variable
122 str += String.fromCharCode( (25 * Math.random()) + 97 );
128 base64 = toBase64(str);
132 str += str;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dstring-base64.js119 var str = ""; variable
122 str += String.fromCharCode( (25 * Math.random()) + 97 );
128 base64 = toBase64(str);
132 str += str;
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DDOMParser.cpp28 PassRefPtrWillBeRawPtr<Document> DOMParser::parseFromString(const String& str, const String& contentType, ExceptionState& exceptionState) argument
42 doc->setContent(str);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringCF.cpp32 String::String(CFStringRef str) argument
34 if (!str)
37 CFIndex size = CFStringGetLength(str);
43 CFIndex convertedsize = CFStringGetBytes(str, CFRangeMake(0, size), kCFStringEncodingISOLatin1, 0, false, lcharBuffer.data(), size, &usedBufLen);
50 CFStringGetCharacters(str, CFRangeMake(0, size), (UniChar*)buffer.data());
/external/chromium_org/third_party/angle/tests/preprocessor_tests/
H A Dcomment_test.cpp17 const char* str = GetParam(); local
19 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
47 const char* str = "/*foo*/bar"; local
49 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
60 const char* str = "/*foo"; local
62 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));

Completed in 5816 milliseconds

1234567891011>>