/build/kati/ |
string_piece.h | 58 static const size_type npos; member in class:StringPiece 153 size_type rfind(const StringPiece& s, size_type pos = npos) const; 154 size_type rfind(char c, size_type pos = npos) const; 162 size_type find_last_of(const StringPiece& s, size_type pos = npos) const; 163 size_type find_last_of(char c, size_type pos = npos) const { 166 size_type find_last_not_of(const StringPiece& s, size_type pos = npos) const; 167 size_type find_last_not_of(char c, size_type pos = npos) const; 169 StringPiece substr(size_type pos, size_type n = npos) const;
|
/development/vndk/tools/header-checker/src/utils/ |
config_file.cpp | 59 if (pos == std::string::npos) { 70 if (pos == std::string::npos) {
|
/external/google-breakpad/src/common/mac/ |
string_utilities.cc | 66 if (end == string::npos) 77 if (start == string::npos)
|
/external/google-breakpad/src/processor/ |
microdump.cc | 187 if (line.find(kGoogleBreakpadKey) == string::npos) { 190 if (line.find(kMicrodumpBegin) != string::npos) { 194 if (line.find(kMicrodumpEnd) != string::npos) { 203 if ((pos = line.find(kOsKey)) != string::npos) { 233 } else if ((pos = line.find(kStackKey)) != string::npos) { 234 if (line.find(kStackFirstLineKey) != string::npos) { 258 } else if ((pos = line.find(kCpuKey)) != string::npos) { 282 } else if ((pos = line.find(kMmapKey)) != string::npos) {
|
/external/icu/icu4c/source/common/unicode/ |
stringpiece.h | 186 static const int32_t npos; // = 0x7fffffff; member in class:StringPiece 196 StringPiece substr(int32_t pos, int32_t len = npos) const {
|
/external/libchrome/base/debug/ |
elf_reader_linux_unittest.cc | 54 EXPECT_NE(std::string::npos, filename.find(kLibraryName)); 64 EXPECT_NE(std::string::npos, name->find(kLibraryName))
|
/external/libchrome/base/task_scheduler/ |
service_thread_unittest.cc | 29 const bool found_on_stack = stack.find(query) != std::string::npos; 31 stack.find("SchedulerWorker") != std::string::npos;
|
/external/llvm/lib/Support/ |
StringExtras.cpp | 20 /// the offset of s2 in s1 or npos if s2 cannot be found. 24 return StringRef::npos; 28 return StringRef::npos;
|
/external/modp_b64/modp_b64/ |
modp_b64.h | 142 x.erase(d, std::string::npos); 163 x.erase(d, std::string::npos);
|
/external/parameter-framework/upstream/parameter/ |
XmlFileIncluderElement.cpp | 122 std::string::size_type pos = strKind.rfind("Include", std::string::npos); 124 assert(pos != std::string::npos);
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
StringExtras.cpp | 20 /// the offset of s2 in s1 or npos if s2 cannot be found. 24 return StringRef::npos; 28 return StringRef::npos;
|
/external/tensorflow/tensorflow/core/util/ |
stat_summarizer.cc | 112 if (ds.device().find("/stream") != std::string::npos || 113 ds.device().find("/memcpy") != std::string::npos) { 122 if (start == std::string::npos) return "<>"; 125 if (end == std::string::npos) return "<>"; 145 if (ds.device().find("/stream") != std::string::npos && 146 ds.device().find("/stream:all") == std::string::npos) { 156 if (ds.device().find("/stream") != std::string::npos) { 163 } else if (ds.device().find("/memcpy") != std::string::npos) {
|
/external/webrtc/webrtc/test/ |
field_trial.cc | 45 if (name_end == trials_string.npos || next_item == name_end) 49 if (group_name_end == trials_string.npos || name_end + 1 == group_name_end)
|
/external/autotest/client/deps/glbench/src/ |
filepath.cc | 20 new_path.path_.find_last_of(kSeparators, std::string::npos); 23 if (last_separator == std::string::npos) { 65 if (nul_pos != std::string::npos) { 111 std::string::size_type last_stripped = std::string::npos; 135 return std::string::npos;
|
/external/llvm/include/llvm/Analysis/ |
ObjCARCAnalysisUtils.h | 224 if (Section.find("__message_refs") != StringRef::npos || 225 Section.find("__objc_classrefs") != StringRef::npos || 226 Section.find("__objc_superrefs") != StringRef::npos || 227 Section.find("__objc_methname") != StringRef::npos || 228 Section.find("__cstring") != StringRef::npos)
|
/art/cmdline/ |
token_range.h | 243 TokenRange Slice(size_t offset, size_t length = std::string::npos) const { 246 if (length != std::string::npos && offset + length > Size()) { 251 if (length == std::string::npos) { 275 size_t wildcard_idx = std::string::npos; 282 if (wildcard_idx != std::string::npos) { 287 wildcard_idx = std::string::npos; 301 if (next_token_idx == std::string::npos) { 304 } else if (next_token_idx != string_idx && wildcard_idx == std::string::npos) { 317 if (wildcard_idx == std::string::npos) { 352 if (wildcard_idx == std::string::npos) { // No wildcard presen [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
StringRef.h | 51 static const size_t npos = ~size_t(0); member in class:llvm::StringRef 294 /// \returns The index of the first occurrence of \p C, or npos if not 305 return npos; 310 /// \returns The index of the first occurrence of \p C, or npos if not 318 /// \p From, or npos if not found. 328 return npos; 334 /// from \p From, or npos if not found. 343 /// \returns The index of the first occurrence of \p Str, or npos if not 350 /// \returns The index of the first occurrence of \p Str, or npos if not 357 /// \returns The index of the last occurrence of \p C, or npos if no [all...] |
/art/runtime/arch/x86/ |
instruction_set_features_x86.cc | 195 if (line.find("flags") != std::string::npos) { 197 if (line.find("ssse3") != std::string::npos) { 200 if (line.find("sse4_1") != std::string::npos) { 203 if (line.find("sse4_2") != std::string::npos) { 206 if (line.find("avx") != std::string::npos) { 209 if (line.find("avx2") != std::string::npos) { 212 if (line.find("popcnt") != std::string::npos) {
|
/bionic/tools/versioner/src/ |
SymbolFileParser.cpp | 96 if (hash_pos != std::string::npos) { 119 if (lparen_pos == std::string::npos) { 134 if (rparen_pos != std::string::npos) { 136 if (semicolon_pos == std::string::npos) { 163 if (colon_pos != std::string::npos) { 180 if (semicolon_pos == std::string::npos) { 189 if (asterisk_pos != std::string::npos) {
|
/external/bcc/tests/cc/ |
test_usdt_probes.cc | 49 REQUIRE(probe->bin_path().find("/test_libbcc") != std::string::npos); 170 (bin_path.find("/ruby") != std::string::npos) || 171 (bin_path.find("/libruby") != std::string::npos); 193 (bin_path.find("/ruby") != std::string::npos) || 194 (bin_path.find("/libruby") != std::string::npos); 243 (bin_path.find("/ruby") != std::string::npos) || 244 (bin_path.find("/libruby") != std::string::npos);
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
StringRef.cpp | 19 const size_t StringRef::npos; member in class:StringRef 141 /// \return - The index of the first occurrence of \arg Str, or npos if not 146 return npos; 150 return npos; 155 /// \return - The index of the last occurrence of \arg Str, or npos if not 160 return npos; 166 return npos; 170 /// Chars, or npos if not found. 182 return npos; 186 /// \arg C or npos if not found [all...] |
/art/tools/veridex/ |
hidden_api.cc | 48 if (pos != std::string::npos) { 52 if (pos != std::string::npos) { 57 if (pos != std::string::npos) {
|
/external/chromium-libpac/src/ |
net_util.cc | 32 if (ip_literal.find(':') != std::string::npos) { 68 if (split == std::string::npos) 72 if (parts[1].find('/') != std::string::npos)
|
/external/protobuf/src/google/protobuf/compiler/objectivec/ |
objectivec_map_field.cc | 106 string::npos) { 112 if (value_field_flags.find("GPBFieldHasDefaultValue") != string::npos) { 115 if (value_field_flags.find("GPBFieldHasEnumDescriptor") != string::npos) {
|
/external/tensorflow/tensorflow/core/api_def/ |
update_api_def_test.cc | 144 EXPECT_EQ(string::npos, updated_text.find("Summary for Op2")); 145 EXPECT_NE(string::npos, updated_text.find("Summary for Op1")); 146 EXPECT_NE(string::npos, updated_text.find("Summary for Op3"));
|