/external/v8/src/ |
D | maybe-handles.h | 33 : location_(reinterpret_cast<T**>(handle.location_)) {} in MaybeHandle() 40 : location_(reinterpret_cast<T**>(maybe_handle.location_)) {} in MaybeHandle() 44 V8_INLINE void Assert() const { DCHECK_NOT_NULL(location_); } in Assert() 45 V8_INLINE void Check() const { CHECK_NOT_NULL(location_); } in Check() 49 return Handle<T>(location_); in ToHandleChecked() 55 if (location_ == nullptr) { in ToHandle() 59 *out = Handle<T>(location_); in ToHandle() 66 V8_INLINE Address address() const { return bit_cast<Address>(location_); } in address() 68 bool is_null() const { return location_ == nullptr; } in is_null() 71 T** location_ = nullptr;
|
D | handles.h | 32 V8_INLINE explicit HandleBase(Object** location) : location_(location) {} in HandleBase() 38 SLOW_DCHECK((this->location_ == nullptr || in is_identical_to() 40 (that.location_ == nullptr || in is_identical_to() 42 if (this->location_ == that.location_) return true; in is_identical_to() 43 if (this->location_ == nullptr || that.location_ == nullptr) return false; in is_identical_to() 44 return *this->location_ == *that.location_; in is_identical_to() 47 V8_INLINE bool is_null() const { return location_ == nullptr; } in is_null() 51 V8_INLINE Address address() const { return bit_cast<Address>(location_); } in address() 57 return *location_; 62 SLOW_DCHECK(location_ == nullptr || in location() [all …]
|
D | handles.cc | 26 DCHECK_NOT_NULL(location_); in IsDereferenceAllowed() 27 Object* object = *location_; in IsDereferenceAllowed() 34 if (roots_array_start <= location_ && in IsDereferenceAllowed() 35 location_ < roots_array_start + Heap::kStrongRootListLength && in IsDereferenceAllowed() 37 static_cast<Heap::RootListIndex>(location_ - roots_array_start))) { in IsDereferenceAllowed() 47 return !isolate->IsDeferredHandle(location_); in IsDereferenceAllowed()
|
D | handles-inl.h | 16 : location_(HandleScope::GetHandle(isolate, object)) {} in HandleBase() 30 return Handle<T>(reinterpret_cast<T**>(that.location_)); in cast()
|
/external/image_io/includes/image_io/base/ |
D | data_context.h | 26 : location_(location), in DataContext() 32 size_t GetLocation() const { return location_; } in GetLocation() 35 void SetLocation(size_t location) { location_ = location; } in SetLocation() 40 location_ += delta; in IncrementLocation() 41 return location_; in IncrementLocation() 59 return range_.IsValid() && range_.Contains(location_) && in IsValidLocationAndRange() 67 ? reinterpret_cast<const char*>(segment_.GetBuffer(location_)) in GetCharBytes() 75 return IsValidLocationAndRange() ? range_.GetEnd() - location_ : 0; in GetBytesAvailable() 133 size_t location_; variable
|
/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/ |
D | RouteGuide.cs | 430 location_ = other.location_ != null ? other.location_.Clone() : null; in Feature() 455 private global::Routeguide.Point location_; field in Routeguide.Feature 461 get { return location_; } 463 location_ = value; 489 if (location_ != null) hash ^= Location.GetHashCode(); in GetHashCode() 507 if (location_ != null) { in WriteTo() 522 if (location_ != null) { in CalculateSize() 539 if (other.location_ != null) { in MergeFrom() 540 if (location_ == null) { in MergeFrom() 541 location_ = new global::Routeguide.Point(); in MergeFrom() [all …]
|
/external/image_io/src/base/ |
D | data_context.cc | 24 ss << "Invalid location:" << location_ << " range:[" << range_.GetBegin() in GetInvalidLocationAndRangeErrorText() 62 data_line = line_info_map_.GetDataLine(location_); in GetErrorText() 77 size_t spaces_count = location_ + spaces_before_caret - line_range.GetBegin(); in GetErrorText() 120 if (clipped_range->IsValid() && clipped_range->Contains(location_)) { in GetClippedAndLineRange() 121 line_begin = (clipped_range->GetBegin() + kLimit < location_) in GetClippedAndLineRange() 122 ? location_ - kLimit in GetClippedAndLineRange() 126 line_begin = location_; in GetClippedAndLineRange() 127 line_end = std::min(location_ + 2 * kLimit, range_.GetEnd()); in GetClippedAndLineRange() 155 if (index + line_range.GetBegin() < location_) { in GetLineString()
|
/external/vixl/src/ |
D | pool-manager.h | 118 location_(0) { in LocationBase() 130 location_(0) { in LocationBase() 143 location_(location) {} in LocationBase() 198 T GetLocation() const { return location_; } in GetLocation() 207 location_ = location; in SetLocation() 241 T location_; 335 : location_(location), in location_() function 350 T GetLocation() const { return location_; } in GetLocation() 356 void SetLocationToInvalidateOnly(T location) { location_ = location; } in SetLocationToInvalidateOnly() 361 T location_;
|
/external/libchrome/crypto/ |
D | openssl_util.h | 76 : location_(location) { in OpenSSLErrStackTracer() 80 ClearOpenSSLERRStack(location_); in ~OpenSSLErrStackTracer() 84 const base::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 | 45 location_(location), in ReducePrecisionInsertion() 55 location_(reduce_precision_options.location()), in ReducePrecisionInsertion() 138 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 | 318 : location_(location), loop_(loop), task_id_(task_id), in IOTask() 364 location_, in OnFileReady() 370 DVLOG_LOC(location_, 1) in OnFileReady() 398 DVLOG_LOC(location_, 1) in OnFileReadyPostedTask() 431 DVLOG_LOC(location_, 1) in CancelTask()
|
D | base_message_loop.h | 106 const base::Location& location() const { return location_; } in location() 126 base::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 | gluVarType.cpp | 235 Layout::Layout (int location_, int binding_, int offset_, FormatLayout format_, MatrixOrder matrixO… in Layout() argument 236 : location (location_) in Layout()
|
D | gluShaderProgram.hpp | 238 …ibLocationBinding (const std::string& name_, deUint32 location_) : name(name_), location(location_… in AttribLocationBinding()
|
/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 Location location_; member in base::__anon4fbf652b0111::RunChecker
|
/external/libbrillo/brillo/errors/ |
D | error.h | 62 return location_; in GetLocation() 113 base::Location location_; variable
|
D | error.cc | 83 new Error(location_, domain_, code_, message_, std::move(inner_error))); in Clone() 109 location_(location), in Error()
|
/external/grpc-grpc/examples/cpp/route_guide/ |
D | helper.cc | 79 if (!Match(location_) || !Match("{") || !Match(latitude_)) { in TryParseOne() 134 const std::string location_ = "\"location\":"; member in routeguide::Parser
|
/external/fonttools/Lib/fontTools/feaLib/ |
D | lexer.py | 57 def location_(self): member in Lexer 63 location = self.location_() 174 location = self.location_()
|
/external/perfetto/src/profiling/memory/ |
D | bookkeeping.h | 171 : parent_(parent), location_(std::move(frame)) {} in Node() 180 const Interned<Frame> location_; variable 181 base::LookupSet<Node, const Interned<Frame>, &Node::location_> children_;
|
/external/vixl/src/aarch32/ |
D | location-aarch32.cc | 48 VIXL_ASSERT(reference.LocationIsEncodable(location_)); in ResolveReferences()
|