HomeSort by relevance Sort by last modified time
    Searched refs:GetLocation (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/libweave/src/
error_unittest.cc 30 EXPECT_EQ("GenerateNetworkError", err->GetLocation().function_name);
31 EXPECT_EQ("error_unittest.cc", err->GetLocation().file_name);
32 EXPECT_EQ(15, err->GetLocation().line_number);
58 EXPECT_EQ(error1->GetLocation().function_name,
59 error2->GetLocation().function_name);
60 EXPECT_EQ(error1->GetLocation().file_name, error2->GetLocation().file_name);
61 EXPECT_EQ(error1->GetLocation().line_number,
62 error2->GetLocation().line_number);
  /external/libbrillo/brillo/errors/
error_unittest.cc 33 EXPECT_EQ("GenerateNetworkError", err->GetLocation().function_name);
34 EXPECT_EQ("error_unittest.cc", err->GetLocation().file_name);
35 EXPECT_EQ(15, err->GetLocation().line_number);
74 EXPECT_EQ(error1->GetLocation().function_name,
75 error2->GetLocation().function_name);
76 EXPECT_EQ(error1->GetLocation().file_name, error2->GetLocation().file_name);
77 EXPECT_EQ(error1->GetLocation().line_number,
78 error2->GetLocation().line_number);
error.h 61 const tracked_objects::LocationSnapshot& GetLocation() const {
  /system/connectivity/shill/cellular/
mm1_modem_location_proxy_interface.h 41 virtual void GetLocation(Error* error,
mock_mm1_modem_location_proxy.cc 29 ON_CALL(*this, GetLocation(_, _, _))
mock_mm1_modem_location_proxy.h 40 MOCK_METHOD3(GetLocation, void(Error* error,
  /art/compiler/linker/
error_delaying_output_stream.h 30 : OutputStream(output->GetLocation()),
41 << " bytes to " << GetLocation() << " at offset " << output_offset_;
69 PLOG(ERROR) << "Failed to seek in " << GetLocation() << ". Offset=" << offset
output_stream.h 40 const std::string& GetLocation() const {
buffered_output_stream.cc 24 : OutputStream(out->GetLocation()), // Before out is moved to out_.
  /system/weaved/buffet/
weave_error_conversion.h 32 const auto& location = source.GetLocation();
47 const auto& location = source.GetLocation();
  /art/runtime/
oat_file_test.cc 100 EXPECT_EQ(split1[0], dex_files_const1[0]->GetLocation());
111 EXPECT_EQ(split2[0], dex_files_const2[0]->GetLocation());
112 EXPECT_EQ(split2[1], dex_files_const2[1]->GetLocation());
oat_file.cc 240 GetLocation().c_str(),
247 *error_msg = StringPrintf("In oat file '%s' found truncated OatHeader", GetLocation().c_str());
255 GetLocation().c_str(),
272 GetLocation().c_str(),
278 GetLocation().c_str(),
285 GetLocation().c_str(),
300 GetLocation().c_str(),
310 GetLocation().c_str(),
318 GetLocation().c_str(),
326 GetLocation().c_str()
    [all...]
dex_file.h 442 const std::string& GetLocation() const {
485 DCHECK(header_ != nullptr) << GetLocation();
502 DCHECK(header_ != nullptr) << GetLocation();
508 DCHECK_LT(idx, NumStringIds()) << GetLocation();
513 CHECK_GE(&string_id, string_ids_) << GetLocation();
514 CHECK_LT(&string_id, string_ids_ + header_->string_ids_size_) << GetLocation();
555 DCHECK(header_ != nullptr) << GetLocation();
561 DCHECK_LT(idx, NumTypeIds()) << GetLocation();
566 CHECK_GE(&type_id, type_ids_) << GetLocation();
567 CHECK_LT(&type_id, type_ids_ + header_->type_ids_size_) << GetLocation();
    [all...]
oat_file_manager.cc 50 CHECK_NE(oat_file.get(), existing.get()) << oat_file->GetLocation();
95 if (oat_file->GetLocation() == oat_location) {
400 std::string dex_filename(dex_file->GetLocation());
485 const std::string& location = loaded_oat_file->GetLocation();
487 boot_oat_files.end() && location != oat_file->GetLocation() &&
524 compare_pop.GetDexFile()->GetLocation().c_str(),
525 top.GetDexFile()->GetLocation().c_str());
623 VLOG(class_linker) << "Registering " << oat_file->GetLocation();
689 error_msgs->push_back("Failed to open dex files from " + source_oat_file->GetLocation());
725 os << oat_file->GetLocation() << ": " << oat_file->GetCompilerFilter() << "\n"
    [all...]
dex_file-inl.h 35 DCHECK(utf16_length != nullptr) << GetLocation();
oat_file_assistant.cc 112 if (boot_class_path[i]->GetLocation() == dex_location_) {
278 << oat_file.GetLocation() << " for dex location " << dex_location;
383 const std::string oat_file_location = oat_file->GetLocation();
524 VLOG(oat) << "Compiler filter for " << file.GetLocation() << " is " << current_compiler_filter;
593 VLOG(oat) << file.GetLocation() <<
604 VLOG(oat) << file.GetLocation() <<
    [all...]
  /art/compiler/
oat_writer.cc 69 : OutputStream(out->GetLocation()), out_(out), oat_header_(oat_header) { }
217 const char* GetLocation() const {
411 locations.push_back(oat_dex_file.GetLocation());
    [all...]
oat_test.cc 138 dex_file->GetLocation().c_str(),
396 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(),
597 ASSERT_EQ(dex_file1_data->GetLocation(), opened_dex_file1->GetLocation());
603 ASSERT_EQ(dex_file2_data->GetLocation(), opened_dex_file2->GetLocation());
698 opened_dex_file1->GetLocation());
705 opened_dex_file2->GetLocation());
746 opened_dex_file1->GetLocation());
    [all...]
  /external/v8/src/compiler/
linkage.h 83 caller_location.GetLocation() - stack_param_delta);
105 int32_t GetLocation() const {
112 return IsRegister() && GetLocation() == ANY_REGISTER;
114 bool IsCallerFrameSlot() const { return !IsRegister() && GetLocation() < 0; }
115 bool IsCalleeFrameSlot() const { return !IsRegister() && GetLocation() >= 0; }
119 return GetLocation();
123 return GetLocation();
127 return GetLocation();
  /art/compiler/utils/
test_dex_file_builder_test.cc 35 EXPECT_STREQ(dex_location, dex_file->GetLocation().c_str());
  /external/libweave/include/weave/
error.h 73 const tracked_objects::LocationSnapshot& GetLocation() const {
  /external/libweave/src/privet/
cloud_delegate.h 68 virtual std::string GetLocation() const = 0;
mock_delegates.h 176 MOCK_CONST_METHOD0(GetLocation, std::string());
214 EXPECT_CALL(*this, GetLocation()).WillRepeatedly(Return(""));
  /external/v8/src/
global-handles.h 408 return Handle<Object>(GetLocation(index));
444 inline Object** GetLocation(int index) {
  /art/runtime/jit/
offline_profiling_info.cc 62 if (!AddMethodIndex(GetProfileDexFileKey(method.dex_file->GetLocation()),
550 auto info_it = info_.find(GetProfileDexFileKey(method_ref.dex_file->GetLocation()));
562 auto info_it = info_.find(GetProfileDexFileKey(dex_file.GetLocation()));
613 if (location == (*dex_files)[i]->GetLocation()) {

Completed in 465 milliseconds

1 2 3