Searched refs:location_ (Results 1 - 25 of 31) sorted by relevance

12

/external/v8/src/
H A Dhandles.h29 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_
72 Object** location_; member in class:v8::internal::HandleBase
232 T** location_ = nullptr; member in class:v8::internal::final
[all...]
H A Dhandles.cc17 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_);
H A Dhandles-inl.h17 : location_(HandleScope::GetHandle(isolate, object)) {}
H A Dcompiler.cc78 explicit ScopedTimer(base::TimeDelta* location) : location_(location) {
79 DCHECK(location_ != NULL);
83 ~ScopedTimer() { *location_ += timer_.Elapsed(); }
86 base::TimeDelta* location_; member in struct:v8::internal::ScopedTimer
/external/v8/src/ast/
H A Dvariables.h63 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
H A Dvariables.cc39 location_(VariableLocation::UNALLOCATED),
/external/libchrome/crypto/
H A Dopenssl_util.h77 : location_(location) {
81 ClearOpenSSLERRStack(location_);
85 const tracked_objects::Location location_; member in class:crypto::OpenSSLErrStackTracer
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkDebugReportUtil.hpp56 size_t location_,
63 , location (location_)
53 DebugReportMessage(VkDebugReportFlagsEXT flags_, VkDebugReportObjectTypeEXT objectType_, deUint64 object_, size_t location_, deInt32 messageCode_, const std::string& layerPrefix_, const std::string& message_) argument
/external/protobuf/src/google/protobuf/compiler/
H A Dparser.cc300 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_
[all...]
H A Dparser.h260 SourceCodeInfo::Location* location_; member in class:google::protobuf::compiler::Parser::LocationRecorder
/external/libbrillo/brillo/errors/
H A Derror.h62 return location_;
119 tracked_objects::LocationSnapshot location_; member in class:brillo::Error
H A Derror.cc76 new Error(location_, domain_, code_, message_, std::move(inner_error)));
114 location_(location),
/external/libbrillo/brillo/message_loops/
H A Dbase_message_loop.h101 const tracked_objects::Location& location() const { return location_; }
121 tracked_objects::Location location_; member in class:brillo::BaseMessageLoop::IOTask
H A Dbase_message_loop.cc306 : 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)
/external/libweave/include/weave/
H A Derror.h74 return location_;
113 tracked_objects::LocationSnapshot location_; member in class:weave::final
/external/deqp/framework/opengl/
H A DgluDrawUtil.hpp108 explicit BindingPoint (int location_) : type(TYPE_LOCATION), location(location_) {} argument
109 explicit BindingPoint (const std::string& name_, int location_ = 0) : type(TYPE_NAME), name(name_), location(location_) {}
H A DgluShaderProgram.hpp227 AttribLocationBinding (const std::string& name_, deUint32 location_) : name(name_), location(location_) {} argument
H A DgluVarType.cpp234 Layout::Layout (int location_, int binding_, int offset_, FormatLayout format_, MatrixOrder matrixOrder_) argument
235 : location (location_)
H A DgluVarType.hpp244 Layout (int location_ = -1, int binding_ = -1, int offset_ = -1, FormatLayout format_ = FORMATLAYOUT_LAST, MatrixOrder matrixOrder_ = MATRIXORDER_LAST);
H A DgluDrawUtil.cpp51 VertexAttributeDescriptor (int location_, argument
58 : location (location_)
/external/libweave/src/
H A Derror.cc73 new Error(location_, code_, message_, std::move(inner_error)));
100 location_(location),
/external/libchrome/base/task/
H A Dcancelable_task_tracker_unittest.cc58 : location_(location), called_(false) {}
62 ADD_FAILURE_AT(location_.file_name(), location_.line_number());
69 tracked_objects::Location location_; member in class:base::__anon9299::RunChecker
/external/libchrome/base/
H A Dtracked_objects.h205 const Location& location() const { return location_; }
212 const Location location_; member in class:tracked_objects::BirthOnThread
246 // The number of births on this thread for our location_.
H A Dtracked_objects.cc253 : location_(location),
/external/deqp/modules/gles31/functional/
H A Des31fUniformLocationTests.cpp84 UniformInfo (VarType type_, ShaderStage declareLocation_, ShaderStage layoutLocation_, ShaderStage checkLocation_, int location_ = -1)
89 , location (location_)

Completed in 496 milliseconds

12