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

1 2 3 4

  /art/compiler/linker/
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
  /art/runtime/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 56 ^ std::hash<jlocation> {}(location_);
59 Breakpoint::Breakpoint(art::ArtMethod* m, jlocation loc) : method_(m), location_(loc) {
  /external/v8/src/
handles.h 31 V8_INLINE explicit HandleBase(Object** location) : location_(location) {}
37 SLOW_DCHECK((this->location_ == nullptr ||
39 (that.location_ == nullptr ||
41 if (this->location_ == that.location_) return true;
42 if (this->location_ == NULL || that.location_ == NULL) return false;
43 return *this->location_ == *that.location_;
46 V8_INLINE bool is_null() const { return location_ == nullptr;
76 Object** location_; member in class:v8::internal::HandleBase
243 T** location_ = nullptr; member in class:v8::internal::final
    [all...]
handles.cc 17 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_);
handles-inl.h 17 : location_(HandleScope::GetHandle(isolate, object)) {}
  /external/libchrome/crypto/
openssl_util.h 77 : location_(location) {
81 ClearOpenSSLERRStack(location_);
85 const tracked_objects::Location location_; member in class:crypto::OpenSSLErrStackTracer
  /external/deqp/external/vulkancts/framework/vulkan/
vkDebugReportUtil.hpp 56 size_t location_,
63 , location (location_)
  /external/libbrillo/brillo/errors/
error.h 62 return location_;
119 tracked_objects::LocationSnapshot location_; member in class:brillo::Error
error.cc 76 new Error(location_, domain_, code_, message_, std::move(inner_error)));
114 location_(location),
  /external/libbrillo/brillo/message_loops/
base_message_loop.h 105 const tracked_objects::Location& location() const { return location_; }
125 tracked_objects::Location location_; member in class:brillo::BaseMessageLoop::IOTask
base_message_loop.cc 317 : location_(location), loop_(loop), task_id_(task_id),
356 location_,
362 DVLOG_LOC(location_, 1)
390 DVLOG_LOC(location_, 1)
423 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_) {}
gluShaderProgram.hpp 227 AttribLocationBinding (const std::string& name_, deUint32 location_) : name(name_), location(location_) {}
gluVarType.cpp 234 Layout::Layout (int location_, int binding_, int offset_, FormatLayout format_, MatrixOrder matrixOrder_)
235 : location (location_)
gluVarType.hpp 244 Layout (int location_ = -1, int binding_ = -1, int offset_ = -1, FormatLayout format_ = FORMATLAYOUT_LAST, MatrixOrder matrixOrder_ = MATRIXORDER_LAST);
  /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/libchrome/base/task/
cancelable_task_tracker_unittest.cc 58 : location_(location), called_(false) {}
62 ADD_FAILURE_AT(location_.file_name(), location_.line_number());
69 tracked_objects::Location location_; member in class:base::__anon22863::RunChecker
  /external/vixl/src/aarch32/
label-aarch32.h 76 : location_(location), op_(op), isa_(isa), is_branch_(false) {
86 int32_t GetLocation() const { return location_; }
112 int32_t location_; member in class:vixl::aarch32::Label::ForwardReference
  /art/runtime/
dex_file_verifier.h 52 location_(location),
204 const char* const location_; member in class:art::DexFileVerifier
oat_file.h 121 return location_;
318 const std::string location_; member in class:art::OatFile
  /external/libchrome/base/
tracked_objects.h 204 const Location& location() const { return location_; }
211 const Location location_; member in class:tracked_objects::BirthOnThread
245 // The number of births on this thread for our location_.
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/compiler/
parser.h 258 SourceCodeInfo::Location* location_; member in class:google::protobuf::compiler::Parser::LocationRecorder
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/compiler/
parser.h 258 SourceCodeInfo::Location* location_; member in class:google::protobuf::compiler::Parser::LocationRecorder
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/compiler/
parser.h 258 SourceCodeInfo::Location* location_; member in class:google::protobuf::compiler::Parser::LocationRecorder

Completed in 254 milliseconds

1 2 3 4