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

1 2 3

  /art/compiler/linker/
output_stream.h 36 explicit OutputStream(const std::string& location) : location_(location) {}
41 return location_;
57 const std::string location_; member in class:art::OutputStream
  /external/v8/src/
handles.h 29 V8_INLINE explicit HandleBase(Object** location) : location_(location) {}
35 SLOW_DCHECK((this->location_ == nullptr ||
37 (that.location_ == nullptr ||
39 if (this->location_ == that.location_) return true;
40 if (this->location_ == NULL || that.location_ == NULL) return false;
41 return *this->location_ == *that.location_;
44 V8_INLINE bool is_null() const { return location_ == nullptr;
72 Object** location_; member in class:v8::internal::HandleBase
232 T** location_ = nullptr; member in class:v8::internal::final
    [all...]
handles.cc 17 DCHECK_NOT_NULL(location_);
18 Object* object = *location_;
23 if (roots_array_start <= location_ &&
24 location_ < roots_array_start + Heap::kStrongRootListLength &&
26 static_cast<Heap::RootListIndex>(location_ - roots_array_start))) {
36 return !heap->isolate()->IsDeferredHandle(location_);
  /external/v8/src/ast/
variables.h 63 return location_ == VariableLocation::UNALLOCATED;
65 bool IsParameter() const { return location_ == VariableLocation::PARAMETER; }
66 bool IsStackLocal() const { return location_ == VariableLocation::LOCAL; }
68 bool IsContextSlot() const { return location_ == VariableLocation::CONTEXT; }
69 bool IsGlobalSlot() const { return location_ == VariableLocation::GLOBAL; }
73 bool IsLookupSlot() const { return location_ == VariableLocation::LOOKUP; }
111 VariableLocation location() const { return location_; }
118 location_ = location;
129 VariableLocation location_; member in class:v8::internal::Variable
variables.cc 39 location_(VariableLocation::UNALLOCATED),
  /external/libchrome/crypto/
openssl_util.h 77 : location_(location) {
81 ClearOpenSSLERRStack(location_);
85 const tracked_objects::Location location_; member in class:crypto::OpenSSLErrStackTracer
  /system/connectivity/apmanager/
error.cc 44 location_ = location;
50 location_ = tracked_objects::Location();
66 location_,
error.h 77 tracked_objects::Location location_; member in class:apmanager::Error
  /external/deqp/external/vulkancts/framework/vulkan/
vkDebugReportUtil.hpp 56 size_t location_,
63 , location (location_)
  /external/libweave/include/weave/
error.h 74 return location_;
113 tracked_objects::LocationSnapshot location_; member in class:weave::final
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 300 location_(parser_->source_code_info_->add_location()) {
301 location_->add_span(parser_->input_->current().line);
302 location_->add_span(parser_->input_->current().column);
324 location_ = parser_->source_code_info_->add_location();
325 location_->mutable_path()->CopyFrom(parent.location_->path());
327 location_->add_span(parser_->input_->current().line);
328 location_->add_span(parser_->input_->current().column);
332 if (location_->span_size() <= 2) {
338 location_->add_path(path_component)
    [all...]
  /external/libbrillo/brillo/errors/
error.h 62 return location_;
119 tracked_objects::LocationSnapshot location_; member in class:brillo::Error
error.cc 76 new Error(location_, domain_, code_, message_, std::move(inner_error)));
114 location_(location),
  /external/libbrillo/brillo/message_loops/
base_message_loop.h 101 const tracked_objects::Location& location() const { return location_; }
121 tracked_objects::Location location_; member in class:brillo::BaseMessageLoop::IOTask
base_message_loop.cc 306 : location_(location), loop_(loop), task_id_(task_id),
345 location_,
351 DVLOG_LOC(location_, 1)
379 DVLOG_LOC(location_, 1)
412 DVLOG_LOC(location_, 1)
  /system/connectivity/shill/
error.cc 95 location_ = location;
109 location_,
error.h 115 tracked_objects::Location location_; member in class:shill::Error
  /external/deqp/framework/opengl/
gluDrawUtil.hpp 108 explicit BindingPoint (int location_) : type(TYPE_LOCATION), location(location_) {}
109 explicit BindingPoint (const std::string& name_, int location_ = 0) : type(TYPE_NAME), name(name_), location(location_) {}
  /external/libweave/src/
error.cc 73 new Error(location_, code_, message_, std::move(inner_error)));
100 location_(location),
  /art/runtime/mirror/
dex_cache.cc 83 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_), location);
dex_cache.h 73 return GetFieldObject<String>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_));
220 HeapReference<String> location_; member in class:art::mirror::FINAL
  /external/libchrome/base/task/
cancelable_task_tracker_unittest.cc 58 : location_(location), called_(false) {}
62 ADD_FAILURE_AT(location_.file_name(), location_.line_number());
69 tracked_objects::Location location_; member in class:base::__anon14394::RunChecker
  /art/compiler/utils/arm/
assembler_thumb2.cc 38 if (target > fixups[fixup_id].location_) {
39 for (FixupId id = fixup_id + 1u; id != end_id && fixups[id].location_ < target; ++id) {
45 for (FixupId id = fixup_id; id != 0u && fixups[id - 1u].location_ >= target; --id) {
    [all...]
  /art/runtime/
dex_file_verifier.h 38 : dex_file_(dex_file), begin_(begin), size_(size), location_(location),
178 const char* const location_; member in class:art::DexFileVerifier
oat_file.h 103 return location_;
274 const std::string location_; member in class:art::OatFile

Completed in 652 milliseconds

1 2 3