HomeSort by relevance Sort by last modified time
    Searched refs:to_find (Results 1 - 5 of 5) sorted by null

  /art/runtime/dex/
art_dex_file_loader_test.cc 248 const DexFile::ProtoId& to_find = java_lang_dex_file_->GetProtoId(i); local
249 const DexFile::TypeList* to_find_tl = java_lang_dex_file_->GetProtoParameters(to_find);
257 java_lang_dex_file_->FindProtoId(to_find.return_type_idx_, to_find_types);
265 const DexFile::MethodId& to_find = java_lang_dex_file_->GetMethodId(i); local
266 const DexFile::TypeId& klass = java_lang_dex_file_->GetTypeId(to_find.class_idx_);
267 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_);
268 const DexFile::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_);
271 << java_lang_dex_file_->StringByTypeIdx(to_find.class_idx_) << "."
273 << java_lang_dex_file_->GetMethodSignature(to_find);
280 const DexFile::FieldId& to_find = java_lang_dex_file_->GetFieldId(i) local
    [all...]
  /external/autotest/cli/
cli_mock.py 76 def assertWords(self, string, to_find=[], not_in=[]):
77 """Assert the string contains all of the set of words to_find and none
81 @param to_find: List of strings that must be in string.
86 for word in to_find:
  /external/autotest/client/site_tests/logging_UserCrash/
logging_UserCrash.py 87 to_find = 'Received crash notification for ' + crasher_basename
89 to_find = 'Ignoring crash from ' + crasher_basename
91 lambda: self._log_reader.can_find(to_find),
94 'Timeout waiting for: ' + to_find + ' in ' +
  /external/tensorflow/tensorflow/core/kernels/
multinomial_op.cc 114 const double to_find = simple_philox.RandDouble() * running_total;
115 auto found_iter = std::upper_bound(cdf_begin, cdf_end, to_find);
  /art/runtime/
quick_exception_handler.cc 110 Handle<mirror::Class> to_find(hs.NewHandle((*exception_)->GetClass()));
111 uint32_t found_dex_pc = method->FindCatchBlock(to_find, dex_pc, &clear_exception);

Completed in 245 milliseconds