/external/v8/src/ |
D | handles.h | 31 V8_INLINE explicit HandleBase(Object** location) : location_(location) {} in HandleBase() 37 SLOW_DCHECK((this->location_ == nullptr || in is_identical_to() 39 (that.location_ == nullptr || in is_identical_to() 41 if (this->location_ == that.location_) return true; in is_identical_to() 42 if (this->location_ == NULL || that.location_ == NULL) return false; in is_identical_to() 43 return *this->location_ == *that.location_; in is_identical_to() 46 V8_INLINE bool is_null() const { return location_ == nullptr; } in is_null() 50 V8_INLINE Address address() const { return bit_cast<Address>(location_); } in address() 56 return *location_; 61 SLOW_DCHECK(location_ == nullptr || 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 | handles-inl.h | 17 : location_(HandleScope::GetHandle(isolate, object)) {} in HandleBase()
|
/external/vixl/src/ |
D | pool-manager.h | 118 location_(0) { in LocationBase() 130 location_(0) { in LocationBase() 143 location_(location) {} in LocationBase() 199 T GetLocation() const { return location_; } in GetLocation() 208 location_ = location; in SetLocation() 242 T location_; 336 : location_(location), in location_() function 351 T GetLocation() const { return location_; } in GetLocation() 357 void SetLocationToInvalidateOnly(T location) { location_ = location; } in SetLocationToInvalidateOnly() 362 T location_;
|
/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 | 339 location_(parser_->source_code_info_->add_location()) { in LocationRecorder() 340 location_->add_span(parser_->input_->current().line); in LocationRecorder() 341 location_->add_span(parser_->input_->current().column); in LocationRecorder() 363 location_ = parser_->source_code_info_->add_location(); in Init() 364 location_->mutable_path()->CopyFrom(parent.location_->path()); in Init() 366 location_->add_span(parser_->input_->current().line); in Init() 367 location_->add_span(parser_->input_->current().column); in Init() 371 if (location_->span_size() <= 2) { in ~LocationRecorder() 377 location_->add_path(path_component); in AddPath() 381 location_->set_span(0, token.line); in StartAt() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | reduce_precision_insertion.h | 46 location_(location), in ReducePrecisionInsertion() 56 location_(reduce_precision_options.location()), in ReducePrecisionInsertion() 145 const HloReducePrecisionOptions::Location location_; variable
|
D | reduce_precision_insertion.cc | 28 switch (location_) { in instructions_to_modify() 202 switch (location_) { in Run()
|
/external/libbrillo/brillo/message_loops/ |
D | base_message_loop.cc | 317 : location_(location), loop_(loop), task_id_(task_id), in IOTask() 357 location_, in OnFileReady() 363 DVLOG_LOC(location_, 1) in OnFileReady() 391 DVLOG_LOC(location_, 1) in OnFileReadyPostedTask() 424 DVLOG_LOC(location_, 1) in CancelTask()
|
D | base_message_loop.h | 105 const tracked_objects::Location& location() const { return location_; } in location() 125 tracked_objects::Location location_;
|
/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()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkDebugReportUtil.hpp | 56 size_t location_, in DebugReportMessage() 63 , location (location_) in DebugReportMessage()
|
/external/libchrome/base/task/ |
D | cancelable_task_tracker_unittest.cc | 59 : location_(location), called_(false) {} in RunChecker() 63 ADD_FAILURE_AT(location_.file_name(), location_.line_number()); in ~RunChecker() 70 tracked_objects::Location location_; member in base::__anon162530e80111::RunChecker
|
/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/libchrome/base/ |
D | tracked_objects.h | 213 const Location& location() const { return location_; } in location() 220 const Location location_;
|
/external/vixl/src/aarch32/ |
D | location-aarch32.cc | 48 VIXL_ASSERT(reference.LocationIsEncodable(location_)); in ResolveReferences()
|
/external/vixl/test/ |
D | test-pool-manager.cc | 166 int32_t min = location_ + min_offset_; in UpdatePoolObject() 167 int32_t max = location_ + max_offset_; in UpdatePoolObject() 173 new ForwardReference<int32_t>(location_, in UpdatePoolObject()
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | Descriptor.cs | 4716 location_ = other.location_.Clone(); in SourceCodeInfo() 4727 …Field<global::Google.Protobuf.Reflection.SourceCodeInfo.Types.Location> location_ = new pbc::Repea… field in Google.Protobuf.Reflection.SourceCodeInfo 4774 get { return location_; } 4788 if(!location_.Equals(other.location_)) return false; in Equals() 4794 hash ^= location_.GetHashCode(); in GetHashCode() 4803 location_.WriteTo(output, _repeated_location_codec); in WriteTo() 4808 size += location_.CalculateSize(_repeated_location_codec); in CalculateSize() 4816 location_.Add(other.location_); in MergeFrom() 4827 location_.AddEntriesFrom(input, _repeated_location_codec); in MergeFrom()
|
/external/v8/testing/gtest/include/gtest/ |
D | gtest.h | 673 const char* file() const { return location_.file.c_str(); } in file() 676 int line() const { return location_.line; } in line() 759 internal::CodeLocation location_; variable
|
/external/googletest/googletest/include/gtest/ |
D | gtest.h | 673 const char* file() const { return location_.file.c_str(); } in file() 676 int line() const { return location_.line; } in line() 759 internal::CodeLocation location_; variable
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/ |
D | gtest.h | 673 const char* file() const { return location_.file.c_str(); } in file() 676 int line() const { return location_.line; } in line() 759 internal::CodeLocation location_; variable
|