Home
last modified time | relevance | path

Searched refs:location_ (Results 1 – 25 of 29) sorted by relevance

12

/external/v8/src/
Dhandles.h29 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 …]
Dhandles.cc17 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()
Dcompiler.h615 : job_(job), location_(location) { in Timer()
616 DCHECK(location_ != NULL); in Timer()
621 *location_ += timer_.Elapsed(); in ~Timer()
626 base::TimeDelta* location_; member
Dhandles-inl.h17 : location_(HandleScope::GetHandle(isolate, object)) {} in HandleBase()
/external/v8/src/ast/
Dvariables.h66 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
Dvariables.cc40 location_(VariableLocation::UNALLOCATED), in Variable()
/external/libchrome/crypto/
Dopenssl_util.h77 : location_(location) { in OpenSSLErrStackTracer()
81 ClearOpenSSLERRStack(location_); in ~OpenSSLErrStackTracer()
85 const tracked_objects::Location location_;
/external/protobuf/src/google/protobuf/compiler/
Dparser.cc300 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 …]
Dparser.h260 SourceCodeInfo::Location* location_; variable
/external/libbrillo/brillo/message_loops/
Dbase_message_loop.cc306 : 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()
Dbase_message_loop.h101 const tracked_objects::Location& location() const { return location_; } in location()
121 tracked_objects::Location location_;
/external/deqp/external/vulkancts/framework/vulkan/
DvkDebugReportUtil.hpp56 size_t location_, in DebugReportMessage()
63 , location (location_) in DebugReportMessage()
/external/deqp/framework/opengl/
DgluDrawUtil.hpp108 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()
DgluShaderProgram.hpp227 …ibLocationBinding (const std::string& name_, deUint32 location_) : name(name_), location(location_ in AttribLocationBinding()
DgluVarType.cpp234 Layout::Layout (int location_, int binding_, int offset_, FormatLayout format_, MatrixOrder matrixO… in Layout() argument
235 : location (location_) in Layout()
DgluDrawUtil.cpp51 VertexAttributeDescriptor (int location_, in VertexAttributeDescriptor()
58 : location (location_) in VertexAttributeDescriptor()
DgluVarType.hpp244 …Layout (int location_ = -1, int binding_ = -1, int offset_ = -1, FormatLayout format_ = FORMATLA…
/external/libchrome/base/task/
Dcancelable_task_tracker_unittest.cc58 : 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/
Derror.h74 return location_; in GetLocation()
113 tracked_objects::LocationSnapshot location_; variable
/external/libbrillo/brillo/errors/
Derror.h62 return location_; in GetLocation()
119 tracked_objects::LocationSnapshot location_; variable
Derror.cc76 new Error(location_, domain_, code_, message_, std::move(inner_error))); in Clone()
114 location_(location), in Error()
/external/libweave/src/
Derror.cc73 new Error(location_, code_, message_, std::move(inner_error))); in Clone()
100 location_(location), in Error()
/external/libchrome/base/
Dtracked_objects.h205 const Location& location() const { return location_; } in location()
212 const Location location_;
/external/deqp/modules/gles31/functional/
Des31fUniformLocationTests.cpp84 …tage declareLocation_, ShaderStage layoutLocation_, ShaderStage checkLocation_, int location_ = -1) in UniformInfo()
89 , location (location_) in UniformInfo()
/external/vixl/src/vixl/a64/
Dassembler-a64.h763 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

12