/external/v8/src/ |
D | handles.h | 29 V8_INLINE explicit HandleBase(Object** location) : location_(location) {} in HandleBase() 35 SLOW_DCHECK((this->location_ == nullptr || in is_identical_to() 37 (that.location_ == nullptr || in is_identical_to() 39 if (this->location_ == that.location_) return true; in is_identical_to() 40 if (this->location_ == NULL || that.location_ == NULL) return false; in is_identical_to() 41 return *this->location_ == *that.location_; in is_identical_to() 44 V8_INLINE bool is_null() const { return location_ == nullptr; } in is_null() 50 return *location_; 55 SLOW_DCHECK(location_ == nullptr || in location() 57 return location_; in location() [all …]
|
D | handles.cc | 17 DCHECK_NOT_NULL(location_); in IsDereferenceAllowed() 18 Object* object = *location_; in IsDereferenceAllowed() 23 if (roots_array_start <= location_ && in IsDereferenceAllowed() 24 location_ < roots_array_start + Heap::kStrongRootListLength && in IsDereferenceAllowed() 26 static_cast<Heap::RootListIndex>(location_ - roots_array_start))) { in IsDereferenceAllowed() 36 return !heap->isolate()->IsDeferredHandle(location_); in IsDereferenceAllowed()
|
D | compiler.h | 615 : job_(job), location_(location) { in Timer() 616 DCHECK(location_ != NULL); in Timer() 621 *location_ += timer_.Elapsed(); in ~Timer() 626 base::TimeDelta* location_; member
|
D | handles-inl.h | 17 : location_(HandleScope::GetHandle(isolate, object)) {} in HandleBase()
|
/external/v8/src/ast/ |
D | variables.h | 66 return location_ == VariableLocation::UNALLOCATED; in IsUnallocated() 68 bool IsParameter() const { return location_ == VariableLocation::PARAMETER; } in IsParameter() 69 bool IsStackLocal() const { return location_ == VariableLocation::LOCAL; } in IsStackLocal() 71 bool IsContextSlot() const { return location_ == VariableLocation::CONTEXT; } in IsContextSlot() 72 bool IsGlobalSlot() const { return location_ == VariableLocation::GLOBAL; } in IsGlobalSlot() 76 bool IsLookupSlot() const { return location_ == VariableLocation::LOOKUP; } in IsLookupSlot() 120 VariableLocation location() const { return location_; } in location() 127 location_ = location; in AllocateTo() 169 VariableLocation location_; variable
|
D | variables.cc | 40 location_(VariableLocation::UNALLOCATED), in Variable()
|
/external/libchrome/crypto/ |
D | openssl_util.h | 77 : location_(location) { in OpenSSLErrStackTracer() 81 ClearOpenSSLERRStack(location_); in ~OpenSSLErrStackTracer() 85 const tracked_objects::Location location_;
|
/external/protobuf/src/google/protobuf/compiler/ |
D | parser.cc | 300 location_(parser_->source_code_info_->add_location()) { in LocationRecorder() 301 location_->add_span(parser_->input_->current().line); in LocationRecorder() 302 location_->add_span(parser_->input_->current().column); in LocationRecorder() 324 location_ = parser_->source_code_info_->add_location(); in Init() 325 location_->mutable_path()->CopyFrom(parent.location_->path()); in Init() 327 location_->add_span(parser_->input_->current().line); in Init() 328 location_->add_span(parser_->input_->current().column); in Init() 332 if (location_->span_size() <= 2) { in ~LocationRecorder() 338 location_->add_path(path_component); in AddPath() 342 location_->set_span(0, token.line); in StartAt() [all …]
|
D | parser.h | 260 SourceCodeInfo::Location* location_; variable
|
/external/libbrillo/brillo/message_loops/ |
D | base_message_loop.cc | 306 : location_(location), loop_(loop), task_id_(task_id), in IOTask() 345 location_, in OnFileReady() 351 DVLOG_LOC(location_, 1) in OnFileReady() 379 DVLOG_LOC(location_, 1) in OnFileReadyPostedTask() 412 DVLOG_LOC(location_, 1) in CancelTask()
|
D | base_message_loop.h | 101 const tracked_objects::Location& location() const { return location_; } in location() 121 tracked_objects::Location location_;
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkDebugReportUtil.hpp | 56 size_t location_, in DebugReportMessage() 63 , location (location_) in DebugReportMessage()
|
/external/deqp/framework/opengl/ |
D | gluDrawUtil.hpp | 108 explicit BindingPoint (int location_) : type(TYPE_LOCATION), location(location_) {} in BindingPoint() 109 …BindingPoint (const std::string& name_, int location_ = 0) : type(TYPE_NAME), name(name_), locatio… in BindingPoint()
|
D | gluShaderProgram.hpp | 227 …ibLocationBinding (const std::string& name_, deUint32 location_) : name(name_), location(location_… in AttribLocationBinding()
|
D | gluVarType.cpp | 234 Layout::Layout (int location_, int binding_, int offset_, FormatLayout format_, MatrixOrder matrixO… in Layout() argument 235 : location (location_) in Layout()
|
D | gluDrawUtil.cpp | 51 VertexAttributeDescriptor (int location_, in VertexAttributeDescriptor() 58 : location (location_) in VertexAttributeDescriptor()
|
D | gluVarType.hpp | 244 …Layout (int location_ = -1, int binding_ = -1, int offset_ = -1, FormatLayout format_ = FORMATLA…
|
/external/libchrome/base/task/ |
D | cancelable_task_tracker_unittest.cc | 58 : location_(location), called_(false) {} in RunChecker() 62 ADD_FAILURE_AT(location_.file_name(), location_.line_number()); in ~RunChecker() 69 tracked_objects::Location location_; member in base::__anon217908700111::RunChecker
|
/external/libweave/include/weave/ |
D | error.h | 74 return location_; in GetLocation() 113 tracked_objects::LocationSnapshot location_; variable
|
/external/libbrillo/brillo/errors/ |
D | error.h | 62 return location_; in GetLocation() 119 tracked_objects::LocationSnapshot location_; variable
|
D | error.cc | 76 new Error(location_, domain_, code_, message_, std::move(inner_error))); in Clone() 114 location_(location), in Error()
|
/external/libweave/src/ |
D | error.cc | 73 new Error(location_, code_, message_, std::move(inner_error))); in Clone() 100 location_(location), in Error()
|
/external/libchrome/base/ |
D | tracked_objects.h | 205 const Location& location() const { return location_; } in location() 212 const Location location_;
|
/external/deqp/modules/gles31/functional/ |
D | es31fUniformLocationTests.cpp | 84 …tage declareLocation_, ShaderStage layoutLocation_, ShaderStage checkLocation_, int location_ = -1) in UniformInfo() 89 , location (location_) in UniformInfo()
|
/external/vixl/src/vixl/a64/ |
D | assembler-a64.h | 763 Label() : location_(kLocationUnbound) {} in Label() 769 bool IsBound() const { return location_ >= 0; } in IsBound() 772 ptrdiff_t location() const { return location_; } in location() 804 location_ = location; in Bind() 850 ptrdiff_t location_; variable
|