HomeSort by relevance Sort by last modified time
    Searched refs:location_ (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/image_io/includes/image_io/base/
data_context.h 26 : location_(location),
32 size_t GetLocation() const { return location_; }
35 void SetLocation(size_t location) { location_ = location; }
40 location_ += delta;
41 return location_;
59 return range_.IsValid() && range_.Contains(location_) &&
67 ? reinterpret_cast<const char*>(segment_.GetBuffer(location_))
75 return IsValidLocationAndRange() ? range_.GetEnd() - location_ : 0;
133 size_t location_; member in class:photos_editing_formats::image_io::DataContext
  /art/libelffile/stream/
output_stream.h 36 explicit OutputStream(const std::string& location) : location_(location) {}
41 return location_;
57 const std::string location_; member in class:art::OutputStream
  /external/v8/src/
maybe-handles.h 33 : location_(reinterpret_cast<T**>(handle.location_)) {}
40 : location_(reinterpret_cast<T**>(maybe_handle.location_)) {}
44 V8_INLINE void Assert() const { DCHECK_NOT_NULL(location_); }
45 V8_INLINE void Check() const { CHECK_NOT_NULL(location_); }
49 return Handle<T>(location_);
55 if (location_ == nullptr) {
59 *out = Handle<T>(location_);
66 V8_INLINE Address address() const { return bit_cast<Address>(location_); }
71 T** location_ = nullptr; member in class:v8::internal::final
    [all...]
handles.h 32 V8_INLINE explicit HandleBase(Object** location) : location_(location) {}
38 SLOW_DCHECK((this->location_ == nullptr ||
40 (that.location_ == nullptr ||
42 if (this->location_ == that.location_) return true;
43 if (this->location_ == nullptr || that.location_ == nullptr) return false;
44 return *this->location_ == *that.location_;
47 V8_INLINE bool is_null() const { return location_ == nullptr;
77 Object** location_; member in class:v8::internal::HandleBase
    [all...]
handles.cc 26 DCHECK_NOT_NULL(location_);
27 Object* object = *location_;
34 if (roots_array_start <= location_ &&
35 location_ < roots_array_start + Heap::kStrongRootListLength &&
37 static_cast<Heap::RootListIndex>(location_ - roots_array_start))) {
47 return !isolate->IsDeferredHandle(location_);
  /art/openjdkjvmti/
ti_breakpoint.h 59 return method_ == other.method_ && location_ == other.location_;
67 return location_;
72 jlocation location_; member in class:openjdkjvmti::Breakpoint
ti_breakpoint.cc 58 ^ std::hash<jlocation> {}(location_);
61 Breakpoint::Breakpoint(art::ArtMethod* m, jlocation loc) : method_(m), location_(loc) {
  /external/libchrome/crypto/
openssl_util.h 76 : location_(location) {
80 ClearOpenSSLERRStack(location_);
84 const base::Location location_; member in class:crypto::OpenSSLErrStackTracer
  /external/vixl/src/
pool-manager.h 118 location_(0) {
130 location_(0) {
143 location_(location) {}
198 T GetLocation() const { return location_; }
204 // to the object. Reusing the location_ field for this is convenient.
207 location_ = location;
241 T location_; member in class:vixl::LocationBase
335 : location_(location),
350 T GetLocation() const { return location_; }
356 void SetLocationToInvalidateOnly(T location) { location_ = location;
361 T location_; member in class:vixl::ForwardReference
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
reduce_precision_insertion.h 45 location_(location),
55 location_(reduce_precision_options.location()),
138 const HloReducePrecisionOptions::Location location_; member in class:xla::ReducePrecisionInsertion
  /external/image_io/src/base/
data_context.cc 24 ss << "Invalid location:" << location_ << " range:[" << range_.GetBegin()
62 data_line = line_info_map_.GetDataLine(location_);
77 size_t spaces_count = location_ + spaces_before_caret - line_range.GetBegin();
120 if (clipped_range->IsValid() && clipped_range->Contains(location_)) {
121 line_begin = (clipped_range->GetBegin() + kLimit < location_)
122 ? location_ - kLimit
126 line_begin = location_;
127 line_end = std::min(location_ + 2 * kLimit, range_.GetEnd());
155 if (index + line_range.GetBegin() < location_) {
  /external/deqp/external/vulkancts/framework/vulkan/
vkDebugReportUtil.hpp 56 size_t location_,
63 , location (location_)
  /external/libbrillo/brillo/errors/
error.h 62 return location_;
113 base::Location location_; member in class:brillo::Error
error.cc 83 new Error(location_, domain_, code_, message_, std::move(inner_error)));
109 location_(location),
  /external/libbrillo/brillo/message_loops/
base_message_loop.h 106 const base::Location& location() const { return location_; }
126 base::Location location_; member in class:brillo::BaseMessageLoop::IOTask
base_message_loop.cc 318 : location_(location), loop_(loop), task_id_(task_id),
364 location_,
370 DVLOG_LOC(location_, 1)
398 DVLOG_LOC(location_, 1)
431 DVLOG_LOC(location_, 1)
  /external/deqp/framework/opengl/
gluDrawUtil.hpp 108 explicit BindingPoint (int location_) : type(TYPE_LOCATION), location(location_) {}
109 explicit BindingPoint (const std::string& name_, int location_ = 0) : type(TYPE_NAME), name(name_), location(location_) {}
  /external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/
RouteGuide.cs 430 location_ = other.location_ != null ? other.location_.Clone() : null;
455 private global::Routeguide.Point location_; field in class:Routeguide.Feature
461 get { return location_; }
463 location_ = value;
489 if (location_ != null) hash ^= Location.GetHashCode();
507 if (location_ != null) {
522 if (location_ != null) {
539 if (other.location_ != null)
613 private global::Routeguide.Point location_; field in class:Routeguide.RouteNote
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 339 location_(parser_->source_code_info_->add_location()) {
340 location_->add_span(parser_->input_->current().line);
341 location_->add_span(parser_->input_->current().column);
363 location_ = parser_->source_code_info_->add_location();
364 location_->mutable_path()->CopyFrom(parent.location_->path());
366 location_->add_span(parser_->input_->current().line);
367 location_->add_span(parser_->input_->current().column);
371 if (location_->span_size() <= 2) {
377 location_->add_path(path_component)
    [all...]
  /external/grpc-grpc/examples/cpp/route_guide/
helper.cc 79 if (!Match(location_) || !Match("{") || !Match(latitude_)) {
134 const std::string location_ = "\"location\":"; member in class:routeguide::Parser
  /bootable/recovery/updater/include/private/
commands.h 109 location_(std::move(location)),
143 return hash_ == other.hash_ && ranges_ == other.ranges_ && location_ == other.location_ &&
157 RangeSet location_; member in class:SourceInfo
  /external/libchrome/base/task/
cancelable_task_tracker_unittest.cc 59 : location_(location), called_(false) {}
63 ADD_FAILURE_AT(location_.file_name(), location_.line_number());
70 Location location_; member in class:base::__anon27560::RunChecker
  /bootable/recovery/updater/
commands.cpp 344 if (location_) {
345 MoveRange(buffer, location_, *buffer, block_size);
363 const RangeSet& location = location_ ? location_ : RangeSet({ Range{ 0, ranges_.blocks() } });
395 if (source.location_) {
396 os << " (location: " << source.location_.ToString() << ")";
  /external/perfetto/src/profiling/memory/
bookkeeping.h 171 : parent_(parent), location_(std::move(frame)) {}
180 const Interned<Frame> location_; member in class:perfetto::profiling::GlobalCallstackTrie::Node
181 base::LookupSet<Node, const Interned<Frame>, &Node::location_> children_;
  /art/libdexfile/dex/
dex_file_verifier.h 53 location_(location),
212 const char* const location_; member in class:art::DexFileVerifier

Completed in 1818 milliseconds

1 2 3