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

<<11121314151617181920>>

  /system/netd/server/
ControllersTest.cpp 207 #define DELETE_SUBSTRING(substr, str) { \
208 size_t start = (str).find((substr)); \
210 (str).erase(start, strlen((substr))); \
211 ASSERT_EQ(std::string::npos, (str).find((substr))); \
  /system/tpm/attestation/common/
mock_tpm_utility.cc 47 *out = in.substr(0, position);
  /external/tensorflow/tensorflow/core/debug/
debug_io_utils.cc 216 ->set_tensor_content(tensor_proto.tensor_content().substr(pos, len));
266 encoded_graph_def.substr(pos, len)));
377 const string address = url.substr(strlen(DebugIO::kFileURLScheme));
380 : address.substr(address.find("/"));
384 strings::StrCat(json_metadata.substr(0, json_metadata.size() - 1),
393 const string dump_root_dir = url.substr(strlen(kFileURLScheme));
419 const string dump_root_dir = url.substr(strlen(kFileURLScheme));
440 const string dump_root_dir = url.substr(strlen(kMemoryURLScheme));
491 io::JoinPath(debug_url.substr(strlen(kFileURLScheme)),
798 ? grpc_stream_url.substr(strlen(DebugIO::kGrpcURLScheme)
    [all...]
  /art/compiler/debug/dwarf/
dwarf_test.h 55 void Check(const char* substr, bool next, const char* at_file, int at_line) {
56 expected_lines_.push_back(ExpectedLine {substr, next, at_file, at_line});
  /art/compiler/jit/
jit_compiler.cc 111 StringPiece str = option.substr(strlen("--instruction-set-variant=")).data();
119 StringPiece str = option.substr(strlen("--instruction-set-features=")).data();
  /art/libartbase/base/
utils.cc 156 stats = stats.substr(stats.find(')') + 2);
175 *parsed_value = s.substr(colon + 1);
  /external/clang/lib/Basic/
Version.cpp 51 URL = URL.substr(Start + 4);
69 URL = URL.substr(Start);
  /external/clang/lib/Format/
Encoding.h 89 TotalWidth += columnWidth(Tail.substr(0, TabPos), Encoding);
91 Tail = Tail.substr(TabPos + 1);
  /external/curl/tests/libtest/
test613.pl 96 @canondir = sort {substr($a,57) cmp substr($b,57)} @canondir;
  /external/deqp/executor/tools/
xeBatchResultToJUnit.cpp 114 std::string caseName = result.casePath.substr(sepPos+1);
115 std::string groupName = result.casePath.substr(0, sepPos);
  /external/e2fsprogs/lib/et/
et_h.awk 83 table_number=(table_number*char_shift)+c2n[substr(base_name,i,1)]
141 tag=prefix_str substr($2,1,length($2)-1)
  /external/flatbuffers/src/
code_generators.cpp 46 const std::string key = text.substr(begin + 2, end - begin - 2);
60 text = text.substr(end + 2);
  /external/google-breakpad/src/processor/
simple_symbol_supplier.cc 185 debug_file_extension = debug_file_name.substr(debug_file_name.size() - 4);
189 path.append(debug_file_name.substr(0, debug_file_name.size() - 4));
  /external/libcxx/include/
string_view 112 constexpr basic_string_view substr(size_type pos = 0, size_type n = npos) const;
342 basic_string_view substr(size_type __pos = 0, size_type __n = npos) const
345 ? (__throw_out_of_range("string_view::substr"), basic_string_view())
361 return substr(__pos1, __n1).compare(__sv);
368 return substr(__pos1, __n1).compare(__sv.substr(__pos2, __n2));
380 return substr(__pos1, __n1).compare(basic_string_view(__s));
386 return substr(__pos1, __n1).compare(basic_string_view(__s, __n2));
    [all...]
  /external/libvpx/libvpx/test/
test_vector_test.cc 104 if (filename.substr(filename.length() - 3, 3) == "ivf") {
106 } else if (filename.substr(filename.length() - 4, 4) == "webm") {
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLoc.cpp 67 StringRef str = data.getData().substr(Offset, Bytes);
100 StringRef str = data.getData().substr(Offset, Bytes);
  /external/llvm/tools/llvm-diff/
DiffConsumer.cpp 175 if (percent > 0) out << format.substr(0, percent);
184 format = format.substr(percent+2);
  /external/perf_data_converter/src/quipper/
test_utils.cc 167 string build_id = line.substr(0, separator);
168 string filename = line.substr(separator + 1);
  /external/skia/docs/
catalogTrailer.txt 40 link = link.substr(0, len - 2)
42 link = link.substr(0, len - 2)
  /external/skqp/docs/
catalogTrailer.txt 40 link = link.substr(0, len - 2)
42 link = link.substr(0, len - 2)
  /external/swiftshader/third_party/LLVM/lib/Support/
StringExtras.cpp 27 if (s1.substr(i, N).equals_lower(s2))
46 return std::make_pair(Source.slice(Start, End), Source.substr(End));
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
DiffConsumer.cpp 170 if (percent > 0) out << format.substr(0, percent);
179 format = format.substr(percent+2);
  /external/swiftshader/third_party/LLVM/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp 68 name = name.substr(8); // Skip "__DWARF," prefix.
69 name = name.substr(name.find_first_not_of("._")); // Skip . and _ prefixes.
  /external/tensorflow/tensorflow/compiler/xla/legacy_flags/
debug_options_parsers.h 44 value = part.substr(eq_pos + 1);
46 (*extra_options_map)[part.substr(0, eq_pos)] = value;
  /external/tensorflow/tensorflow/contrib/libsvm/kernels/
decode_libsvm_op.cc 72 ctx, strings::safe_strto64(piece.substr(0, p), &feature_index),
82 strings::SafeStringToNumeric<T>(piece.substr(p + 1),

Completed in 1542 milliseconds

<<11121314151617181920>>