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

<<21222324252627282930>>

  /libnativehelper/platform_include/nativehelper/detail/
signature_checker.h 107 constexpr ConstexprStringView substr(size_t start, size_t len) const { function in struct:nativehelper::detail::ConstexprStringView
115 constexpr ConstexprStringView substr(size_t start) const { function in struct:nativehelper::detail::ConstexprStringView
117 return substr(start, size() - start);
437 ConstexprStringView remainder = single_type.substr(/*start*/1u);
471 token = single_type.substr(/*start*/0u, /*len*/1u);
502 token = single_type.substr(/*start*/0u, res.token.size() + 1u);
523 token = single_type.substr(/*start*/0u, semicolon_len);
524 remainder = single_type.substr(/*start*/semicolon_len);
604 signature = signature.substr(/*start*/1u);
611 signature = signature.substr(/*start*/1u)
    [all...]
  /art/openjdkjvmti/
ti_properties.cc 166 if (prop_assignment.substr(0, assign_pos) == kPropertyLibraryPath) {
167 return Copy(env, prop_assignment.substr(assign_pos + 1).c_str(), value_ptr);
  /art/runtime/ti/
agent.cc 43 name_ = arg.substr(0, eq);
44 args_ = arg.substr(eq + 1, arg.length());
  /bionic/linker/
linker_utils.cpp 47 if (str->substr(pos + 1, token.size()) == token) {
52 } else if (str->substr(pos + 1, token.size() + 2) == "{" + token + "}") {
  /external/autotest/client/site_tests/video_GlitchDetection/
froogaloop.js 131 if (url.substr(0, 2) === '//') {
249 if (url.substr(0, 2) === '//') {
  /external/autotest/client/site_tests/video_VimeoVideo/
froogaloop.js 131 if (url.substr(0, 2) === '//') {
249 if (url.substr(0, 2) === '//') {
  /external/deqp/framework/opengl/
gluContextInfo.cpp 156 dst.push_back(src.substr(start, end-start));
161 dst.push_back(src.substr(start, end-start));
  /external/google-breakpad/src/common/
stabs_to_module.cc 138 ext->name = Demangle(name.substr(1));
140 ext->name = name.substr(1);
  /external/icu/icu4c/source/test/perf/perldriver/
Format.pm 160 $result = $sign . substr($d, 0, $e) . '.' . substr($d, $e);
  /external/icu/icu4j/perf-tests/perldriver/
Format.pm 158 $result = $sign . substr($d, 0, $e) . '.' . substr($d, $e);
  /external/libchrome/base/trace_event/
trace_config_category_filter.cc 58 StringPiece synthetic_category = category.substr(
69 excluded_categories_.push_back(category.substr(1).as_string());
  /external/libchrome/base/
values.cc 641 StringPiece key = current_path.substr(0, delimiter_position);
650 current_path = current_path.substr(delimiter_position + 1);
726 current_path.substr(0, delimiter_position), &child_dictionary)) {
731 current_path = current_path.substr(delimiter_position + 1);
975 if (!GetDictionary(current_path.substr(0, delimiter_position),
978 current_path = current_path.substr(delimiter_position + 1);
1007 StringPiece subdict_path = path.substr(0, delimiter_position);
1011 result = subdict->RemovePath(path.substr(delimiter_position + 1),
    [all...]
  /external/libtextclassifier/
token-feature-extractor.cc 197 "^" + word.substr(0, max_word_length / 2) + "\1" +
198 word.substr(word.size() - max_word_length / 2, max_word_length / 2) +
  /external/libvpx/libvpx/test/
invalid_file_test.cc 93 if (filename.substr(filename.length() - 3, 3) == "ivf") {
95 } else if (filename.substr(filename.length() - 4, 4) == "webm") {
  /external/protobuf/src/google/protobuf/compiler/java/
java_name_resolver.cc 60 return full_name.substr(file->package().size() + 1);
126 basename = file->name().substr(last_slash + 1);
  /external/protobuf/src/google/protobuf/util/internal/
field_mask_utility.cc 100 path.substr(current_segment_start, i - current_segment_start));
183 paths.substr(previous_position, i - previous_position);
  /external/protobuf/src/google/protobuf/util/
type_resolver_util.cc 63 *url_prefix = type_url.substr(0, pos);
64 *message_name = type_url.substr(pos + 1);
  /external/swiftshader/third_party/subzero/src/
IceRangeSpec.cpp 105 Tokens.emplace_back(Spec.substr(StartPos, DelimPos - StartPos));
118 exclude(Token.substr(1));
  /external/tensorflow/tensorflow/core/framework/
shape_inference_testutil_test.cc 28 #define EXPECT_CONTAINS(str, substr) \
31 EXPECT_TRUE(StringPiece(s).contains(substr)) << "String: " << s; \
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_scope.cc 52 name = name.substr(0, last_slash);
71 const string prefix = node->name().substr(0, last_slash);
  /external/tensorflow/tensorflow/core/profiler/
tfprof_options.cc 59 *output_type = output_opt.substr(0, opt_split);
67 kv_split = str_util::Split(output_opt.substr(opt_split + 1), ",",
  /external/tensorflow/tensorflow/python/framework/
python_op_gen_main.cc 76 } else if (op_names.size() == 1 && op_names[0].substr(0, 1) == "@") {
77 const string filename = op_names[0].substr(1);
  /external/v8/tools/
ic-processor.js 237 userValue = arg.substr(eqPos + 1);
238 arg = arg.substr(0, eqPos);
parser-shell.cc 147 benchmark = std::string(argv[i]).substr(12);
149 std::string repeat_str = std::string(argv[i]).substr(9);
  /external/webrtc/webrtc/base/
sslidentity.cc 108 std::string inner = pem_string.substr(body + 1, trailer - (body + 1));
132 result << b64_encoded.substr(chunk_offset, kChunkSize);

Completed in 1229 milliseconds

<<21222324252627282930>>