/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
|
/external/v8/src/ |
handles.h | 29 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_ == nullptr; 68 Object** location_; member in class:v8::internal::HandleBase 228 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_);
|
/external/chromium-trace/catapult/tracing/tracing/ui/base/ |
ui_state.html | 24 this.location_ = location; 58 return this.location_; 66 var timestamp = this.location_.xWorld; 68 this.location_.getContainingTrack(viewport).eventContainer.stableId; 75 location: this.location_.toDict(),
|
/system/connectivity/apmanager/ |
error.cc | 44 location_ = location; 50 location_ = tracked_objects::Location(); 66 location_,
|
error.h | 77 tracked_objects::Location location_; member in class:apmanager::Error
|
/external/v8/src/ast/ |
variables.h | 66 return location_ == VariableLocation::UNALLOCATED; 68 bool IsParameter() const { return location_ == VariableLocation::PARAMETER; } 69 bool IsStackLocal() const { return location_ == VariableLocation::LOCAL; } 71 bool IsContextSlot() const { return location_ == VariableLocation::CONTEXT; } 72 bool IsGlobalSlot() const { return location_ == VariableLocation::GLOBAL; } 76 bool IsLookupSlot() const { return location_ == VariableLocation::LOOKUP; } 120 VariableLocation location() const { return location_; } 127 location_ = location; 169 VariableLocation location_; member in class:v8::internal::Variable
|
variables.cc | 40 location_(VariableLocation::UNALLOCATED),
|
/external/libchrome/crypto/ |
openssl_util.h | 77 : location_(location) { 81 ClearOpenSSLERRStack(location_); 85 const tracked_objects::Location location_; member in class:crypto::OpenSSLErrStackTracer
|
/external/compiler-rt/cmake/Modules/ |
SanitizerUtils.cmake | 48 get_target_property(libfile ${target_name} LOCATION_${c}) 53 get_target_property(libfile ${target_name} LOCATION_${CMAKE_BUILD_TYPE})
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkDebugReportUtil.hpp | 56 size_t location_, 63 , location (location_)
|
/external/protobuf/src/google/protobuf/compiler/ |
parser.cc | 300 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_->add_path(path_component) [all...] |
/external/libweave/include/weave/ |
error.h | 74 return location_; 113 tracked_objects::LocationSnapshot location_; member in class:weave::final
|
/external/libweave/src/ |
error.cc | 73 new Error(location_, code_, message_, std::move(inner_error))); 100 location_(location),
|
/system/connectivity/shill/ |
error.cc | 95 location_ = location; 109 location_,
|
error.h | 115 tracked_objects::Location location_; member in class:shill::Error
|
/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_) {}
|
/art/compiler/utils/arm/ |
assembler_thumb2.cc | 38 if (target > fixups[fixup_id].location_) { 39 for (FixupId id = fixup_id + 1u; id != end_id && fixups[id].location_ < target; ++id) { 45 for (FixupId id = fixup_id; id != 0u && fixups[id - 1u].location_ >= target; --id) { [all...] |
/art/runtime/mirror/ |
dex_cache.cc | 83 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_), location);
|
dex_cache.h | 73 return GetFieldObject<String>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_)); 220 HeapReference<String> location_; member in class:art::mirror::FINAL
|
/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::__anon15252::RunChecker
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
StackViewState.java | 56 * <p>See <code>LOCATION_</code> flags.</p>
|
/external/libbrillo/brillo/errors/ |
error.cc | 76 new Error(location_, domain_, code_, message_, std::move(inner_error))); 114 location_(location),
|
error.h | 62 return location_; 119 tracked_objects::LocationSnapshot location_; member in class:brillo::Error
|
/external/libbrillo/brillo/message_loops/ |
base_message_loop.h | 101 const tracked_objects::Location& location() const { return location_; } 121 tracked_objects::Location location_; member in class:brillo::BaseMessageLoop::IOTask
|