HomeSort by relevance Sort by last modified time
    Searched full:substr (Results 426 - 450 of 1935) sorted by null

<<11121314151617181920>>

  /cts/suite/audio_quality/lib/src/task/
TaskCase.cpp 256 translated.append(StringUtil::substr(orig, strStart, pmatch[1].rm_so - 1)); //-1 for $
258 indexName.append(StringUtil::substr(orig, matchStart, matchEnd - matchStart));
273 translated.append(StringUtil::substr(orig, matchEnd, orig.length() - matchEnd));
  /external/deqp/framework/delibs/decpp/
deFilePath.cpp 79 components.push_back(m_path.substr(curCompStart, pos - curCompStart));
86 components.push_back(m_path.substr(curCompStart, pos - curCompStart));
168 return baseName.substr(dotPos+1);
  /external/e2fsprogs/util/
symlinks.c 45 static int substr (char *s, char *old, char *new) function
92 while (substr(path, "/./", "/"))
94 while (substr(path, "//", "/"))
  /external/llvm/lib/Support/
ScaledNumber.cpp 199 return Float.substr(0, NonZero + 1);
295 return stripTrailingZeros(Str.substr(0, Truncate));
313 return stripTrailingZeros(std::string(Carry, '1') + Str.substr(0, Truncate));
  /external/swiftshader/third_party/LLVM/lib/MC/
MCWin64EH.cpp 216 return name.substr(dollar);
218 return name.substr(dot);
219 return name.substr(dollar);
  /external/tensorflow/tensorflow/contrib/lite/testing/
generated_examples_zip_test.cc 174 string filename = manifest.substr(pos, end_pos - pos);
201 string tflite_dir = test_path.substr(0, test_path.find_last_of("/"));
202 string test_name = test_path.substr(test_path.find_last_of('/'));
  /external/tensorflow/tensorflow/core/api_def/
update_api_def.cc 168 string doc_text = file_contents.substr(
180 auto before_doc = file_contents.substr(0, doc_start_location);
183 file_contents.substr(doc_end_location + sizeof(kDocEnd) - 1);
  /external/tensorflow/tensorflow/core/framework/
resource_mgr_test.cc 73 static void HasError(const Status& s, const string& substr) {
74 EXPECT_TRUE(StringPiece(s.ToString()).contains(substr))
75 << s << ", expected substring " << substr; local
  /external/tensorflow/tensorflow/core/kernels/
spectrogram_test_utils.cc 130 i->substr(operator_index - 1, 1) == "e") {
133 parts.push_back(i->substr(0, operator_index));
135 parts.push_back(i->substr(operator_index, string::npos));
  /external/webrtc/webrtc/tools/frame_analyzer/
video_quality_analysis.cc 48 std::string frame = line.substr(0, space_position);
54 std::string frame_number = frame.substr(underscore_position + 1);
64 std::string decoded_number = line.substr(space_position + 1);
  /frameworks/base/cmds/incident_helper/src/parsers/
SystemPropertiesParser.cpp 190 line = line.substr(1, line.size() - 2); // trim []
196 name = line.substr(0, index);
197 value = trim(line.substr(index + 4), DEFAULT_WHITESPACE);
  /frameworks/base/tests/BackgroundDexOptServiceIntegrationTests/src/com/android/server/pm/
BackgroundDexOptServiceIntegrationTests.java 176 final String substr = "[status="; local
178 int startIndex = line.indexOf(substr);
182 startIndex += substr.length();
  /frameworks/base/tools/aapt2/util/
Util.cpp 47 parts.emplace_back(str.substr(start, current).to_string());
69 return str.substr(0, prefix.size()) == prefix;
76 return str.substr(str.size() - suffix.size(), suffix.size()) == suffix;
  /art/runtime/
reference_table_test.cc 193 jmethodID substr = soa.Env()->GetMethodID(WellKnownClasses::java_lang_String, local
196 ASSERT_TRUE(substr != nullptr);
200 substr,
312 std::string haystack = base.substr(summary_pos);
  /art/test/ti-agent/
common_helper.cc 110 type = type.substr(type.find(')') + 1);
  /bootable/recovery/otautil/
DirUtil.cpp 87 std::string dir_path = path.substr(0, next_end);
  /external/ImageMagick/Magick++/lib/
Statistic.cpp 155 if (sscanf(hash_.substr(i*5,5).c_str(),"%05x",&hex) != 1)
498 hash_.substr(0, 70)));
500 hash_.substr(70, 70)));
502 hash_.substr(140, 70)));
  /external/boringssl/src/fipstools/
cavp_rsa2_siggen_test.cc 73 test = test.substr(test.find("]") + 3);
  /external/clang/lib/Frontend/
TestModuleFileExtension.cpp 68 StringRef Message = Blob.substr(0, Record[0]);
  /external/curl/tests/certs/scripts/
genroot.sh 38 GETSERIAL="\$t = time ;\$d = \$t . substr(\$t+$$ ,-4,4)-1;print \$d"
  /external/flatbuffers/docs/source/
PHPUsage.md 55 $class = substr($class_name, strrpos($class_name, "\\") + 1);
  /external/flatbuffers/include/flatbuffers/
util.h 192 return i != std::string::npos ? filepath.substr(0, i) : filepath;
198 return i != std::string::npos ? filepath.substr(i + 1) : "";
204 return i != std::string::npos ? filepath.substr(i + 1) : filepath;
210 return i != std::string::npos ? filepath.substr(0, i) : "";
  /external/google-benchmark/src/
sysinfo.cc 207 total += CountBits(Val.substr(0, Pos));
208 Val = Val.substr(Pos + 1);
371 if (SplitIdx != std::string::npos) value = ln.substr(SplitIdx + 1);
442 if (SplitIdx != std::string::npos) value = ln.substr(SplitIdx + 1);
  /external/libbrillo/brillo/streams/
fake_stream_unittest.cc 278 stream_->AddReadPacketString({}, input_data.substr(0, split_pos));
279 stream_->AddReadPacketString(one_sec_delay, input_data.substr(split_pos));
443 stream_->ExpectWritePacketString({}, output_data.substr(0, split_pos));
445 output_data.substr(split_pos));
  /external/libchrome/base/trace_event/
heap_profiler_type_name_deduplicator.cc 37 result = result.substr(0, first_comma_position);

Completed in 1360 milliseconds

<<11121314151617181920>>