/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
basic_string.tcc | 51 _Rep::_S_max_size = (((npos - sizeof(_Rep_base))/sizeof(_CharT)) - 1) / 4; 60 basic_string<_CharT, _Traits, _Alloc>::npos; 215 __s + npos, __a), __a) 550 // 83. String::npos vs. string::max_size() 744 return __pos <= __size ? __pos : npos; 754 return npos; 762 size_type __ret = npos; 793 return npos; 810 return npos; 825 return npos; [all...] |
/external/libbrillo/brillo/ |
process_unittest.cc | 154 EXPECT_NE(std::string::npos, contents.find("errormessage")); 187 EXPECT_NE(std::string::npos, contents.find("errormessage")); 215 EXPECT_NE(std::string::npos, contents.find("hello world\n")); 255 EXPECT_NE(std::string::npos, contents.find("Unable to set UID to 0: 1\n")); 265 EXPECT_NE(std::string::npos, contents.find("Unable to set GID to 0: 1\n"));
|
/external/llvm/include/llvm/Analysis/ |
ObjCARCAnalysisUtils.h | 223 if (Section.find("__message_refs") != StringRef::npos || 224 Section.find("__objc_classrefs") != StringRef::npos || 225 Section.find("__objc_superrefs") != StringRef::npos || 226 Section.find("__objc_methname") != StringRef::npos || 227 Section.find("__cstring") != StringRef::npos)
|
/art/dex2oat/ |
dex2oat_test.cc | 161 CHECK_NE(ampersand, std::string::npos); 235 EXPECT_NE(output_.find("Large app, accepted running with swap."), std::string::npos) 238 EXPECT_EQ(output_.find("Large app, accepted running with swap."), std::string::npos) 261 EXPECT_NE(output_.find("dex2oat took"), std::string::npos) << output_; 371 std::string::npos) 375 std::string::npos) 396 EXPECT_NE(output_.find("dex2oat took"), std::string::npos) << output_;
|
/build/kati/ |
parser.cc | 187 if (sep == string::npos || line[sep] == ';') { 188 ParseRule(line, string::npos); 204 if (sep != string::npos) { 219 const bool is_rule = sep != string::npos && line[sep] == ':'; 224 if (found != string::npos) { 351 if (end == string::npos) 478 if (i == string::npos)
|
eval.cc | 113 if (expr.find_first_not_of(" \t;") == string::npos) { 192 if (lhs.str().find_first_of(" \t") != string::npos) 269 if (equal_index == string::npos) {
|
/external/llvm/unittests/Support/ |
YAMLIOTest.cpp | 482 EXPECT_NE(llvm::StringRef::npos, flowOut.find("'''aaa")); 483 EXPECT_NE(llvm::StringRef::npos, flowOut.find("'\"bbb'")); 484 EXPECT_NE(llvm::StringRef::npos, flowOut.find("'`ccc'")); 485 EXPECT_NE(llvm::StringRef::npos, flowOut.find("'@ddd'")); 486 EXPECT_NE(llvm::StringRef::npos, flowOut.find("''\n")); 487 EXPECT_NE(llvm::StringRef::npos, flowOut.find("'0000000004000000'\n")); 488 EXPECT_NE(llvm::StringRef::npos, flowOut.find("'true'\n")); 489 EXPECT_NE(llvm::StringRef::npos, flowOut.find("'FALSE'\n")); 490 EXPECT_NE(llvm::StringRef::npos, flowOut.find("'~'\n")); 491 EXPECT_NE(llvm::StringRef::npos, flowOut.find("'0.2e20'\n")) [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/basic_cstring/ |
basic_cstring.hpp | 60 enum npos_type { npos = static_cast<size_type>(-1) }; enumerator in enum:boost::unit_test::basic_cstring::npos_type 64 static const size_type npos = -1 ; member in class:boost::unit_test::basic_cstring 136 self_type substr( size_type beg_index, size_type end_index = npos ) const; 517 return static_cast<size_type>(npos); 529 return it == last ? static_cast<size_type>(npos) : it - begin(); 539 return static_cast<size_type>(npos); 551 return it == last ? static_cast<size_type>(npos) : static_cast<size_type>(it - begin());
|
/system/connectivity/apmanager/ |
config_unittest.cc | 272 EXPECT_NE(std::string::npos, config_content.find( 321 EXPECT_NE(std::string::npos, config_content1.find( 341 EXPECT_NE(std::string::npos, config_content.find( 362 EXPECT_NE(std::string::npos, config_content.find( 386 EXPECT_NE(std::string::npos, ghz5_config_content.find( 402 EXPECT_NE(std::string::npos, ghz24_config_content.find( 434 EXPECT_NE(std::string::npos, config_content.find(
|
/external/llvm/unittests/ADT/ |
StringRefTest.cpp | 347 EXPECT_EQ(StringRef::npos, Str.find('z')); 348 EXPECT_EQ(StringRef::npos, Str.find("helloworld")); 351 EXPECT_EQ(StringRef::npos, Str.find("zz")); 353 EXPECT_EQ(StringRef::npos, Str.find("ll", 3)); 362 EXPECT_EQ(StringRef::npos, Str.rfind('z')); 363 EXPECT_EQ(StringRef::npos, Str.rfind("helloworld")); 366 EXPECT_EQ(StringRef::npos, Str.rfind("zz")); 370 EXPECT_EQ(StringRef::npos, Str.find_first_of("xyz")); 374 EXPECT_EQ(StringRef::npos, Str.find_first_not_of("hello")); 378 EXPECT_EQ(StringRef::npos, Str.find_last_not_of("helo")) [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_string.h | 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, 788 _Self& erase(size_type __pos = 0, size_type __n = npos) { 1089 const size_t basic_string<_CharT, _Traits, _Alloc>::npos = ~(size_t) 0; member in class:basic_string [all...] |
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/ |
_string.h | 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, 788 _Self& erase(size_type __pos = 0, size_type __n = npos) { 1089 const size_t basic_string<_CharT, _Traits, _Alloc>::npos = ~(size_t) 0; member in class:basic_string [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/ |
vstring.h | 81 static const size_type npos = static_cast<size_type>(-1); member in class:__versa_string 181 size_type __n = npos) 223 __s + npos, __a) { } [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/ |
vstring.h | 81 static const size_type npos = static_cast<size_type>(-1); member in class:__versa_string 181 size_type __n = npos) 223 __s + npos, __a) { } [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/ |
vstring.h | 81 static const size_type npos = static_cast<size_type>(-1); member in class:__versa_string 181 size_type __n = npos) 223 __s + npos, __a) { } [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/ |
vstring.h | 96 static const size_type npos = static_cast<size_type>(-1); member in class:__versa_string 192 size_type __n = npos) 234 __s + npos, __a) { } [all...] |
/external/boringssl/src/tool/ |
speed.cc | 135 if (!selected.empty() && key_name.find(selected) == std::string::npos) { 229 if (!selected.empty() && name.find(selected) == std::string::npos) { 269 if (!selected.empty() && name.find(selected) == std::string::npos) { 309 if (!selected.empty() && name.find(selected) == std::string::npos) { 347 if (!selected.empty() && name.find(selected) == std::string::npos) { 402 if (!selected.empty() && selected.find("25519") == std::string::npos) {
|
/cts/tests/tests/jni/libjnitest/ |
android_jni_cts_LinkerNamespacesTest.cpp | 79 err.find("is not accessible for the namespace \"classloader-namespace\"") == std::string::npos) { 176 if (soname.rfind('/') != std::string::npos) { 184 if (space_pos != std::string::npos) {
|
/external/webrtc/webrtc/base/ |
socketaddress.cc | 184 if (closebracket != std::string::npos) { 186 if (colon != std::string::npos && colon > closebracket) { 195 if (std::string::npos == pos)
|
sslidentity.cc | 97 if (header == std::string::npos) 101 if (body == std::string::npos) 105 if (trailer == std::string::npos)
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSX86CallConvPass.cpp | 81 if (FName.find("rsSetObject") != std::string::npos && ArgNo == 0) 84 if (FName.find("rsClearObject") != std::string::npos && ArgNo == 0) 87 if (FName.find("rsForEachInternal") != std::string::npos && ArgNo == 4)
|
/frameworks/rs/api/ |
Specification.cpp | 187 if (pComma == string::npos || pParen == string::npos) { 195 if (pParen == string::npos) { 202 if (pParen == string::npos) { 283 if (pComma != string::npos) { 559 if (pParen == string::npos) { 583 bool patternFound = inlineStr.find(kRSTypePatterns[i]) != string::npos; 604 if (p != string::npos) { 639 if (scanner->getValue().find("1") != string::npos) { 642 if (scanner->getValue().find("2") != string::npos) { [all...] |
/system/core/fastboot/ |
tcp_test.cpp | 61 EXPECT_NE(std::string::npos, error.find("Failed to send initialization message")); 71 EXPECT_NE(std::string::npos, error.find("No initialization message received")); 81 EXPECT_NE(std::string::npos, error.find("Unrecognized initialization message"));
|
/system/extras/multinetwork/ |
httpurl.cpp | 56 if (first_slash != std::string::npos) { 68 if (closing_bracket == std::string::npos) { 84 if (first_colon != std::string::npos) {
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
minidump_writer_unittest_utils.cc | 55 if (pos == string::npos) {
|