/third_party/node/deps/v8/src/handles/ |
H A D | maybe-handles.h | 38 V8_INLINE MaybeHandle(Handle<S> handle) : location_(handle.location_) {} in MaybeHandle() 45 : location_(maybe_handle.location_) {} in MaybeHandle() 50 V8_INLINE void Assert() const { DCHECK_NOT_NULL(location_); } in Assert() 51 V8_INLINE void Check() const { CHECK_NOT_NULL(location_); } in Check() 55 return Handle<T>(location_); in ToHandleChecked() 61 if (location_ == nullptr) { in ToHandle() 65 *out = Handle<T>(location_); in ToHandle() 73 return reinterpret_cast<Address>(location_); in address() 79 Address* location_ = nullptr; global() member in v8::internal::final [all...] |
H A D | handles-inl.h | 21 : location_(HandleScope::GetHandle(isolate, object)) {} in HandleBase() 24 : location_(LocalHandleScope::GetHandle(isolate->heap(), object)) {} in HandleBase() 27 : location_(LocalHandleScope::GetHandle(local_heap, object)) {} in HandleBase() 30 SLOW_DCHECK((this->location_ == nullptr || this->IsDereferenceAllowed()) && in is_identical_to() 31 (that.location_ == nullptr || that.IsDereferenceAllowed())); in is_identical_to() 32 if (this->location_ == that.location_) return true; in is_identical_to() 33 if (this->location_ == nullptr || that.location_ == nullptr) return false; in is_identical_to() 34 return Object(*this->location_) in is_identical_to() [all...] |
H A D | handles.h | 44 V8_INLINE explicit HandleBase(Address* location) : location_(location) {} in HandleBase() 51 V8_INLINE bool is_null() const { return location_ == nullptr; } in is_null() 55 V8_INLINE Address address() const { return bit_cast<Address>(location_); } in address() 61 SLOW_DCHECK(location_ == nullptr || IsDereferenceAllowed()); in location() 62 return location_; in location() 76 Address* location_; member in v8::internal::HandleBase 157 SLOW_DCHECK(location_ != nullptr && IsDereferenceAllowed()); in PatchValue() 158 *location_ = new_value.ptr(); in PatchValue() 176 // Handles of different classes are allowed to access each other's location_. 179 // MaybeHandle is allowed to access location_ [all...] |
H A D | handles.cc | 39 DCHECK_NOT_NULL(location_); in IsDereferenceAllowed() 40 Object object(*location_); in IsDereferenceAllowed() 46 if (isolate->roots_table().IsRootHandleLocation(location_, &root_index) && in IsDereferenceAllowed() 50 if (isolate->IsBuiltinTableHandleLocation(location_)) return true; in IsDereferenceAllowed() 70 return local_heap->ContainsPersistentHandle(location_) || in IsDereferenceAllowed() 71 local_heap->ContainsLocalHandle(location_); in IsDereferenceAllowed()
|
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
H A D | lexer.cc | 59 location_{1, 1} {} in Lexer() 106 src.range.begin = location_; in begin_source() 107 src.range.end = location_; in begin_source() 112 src.range.end = location_; in end_source() 147 location_.line++; in skip_whitespace_and_comments() 148 location_.column = 1; in skip_whitespace_and_comments() 153 location_.column++; in skip_whitespace_and_comments() 179 location_.column++; in skip_comment() 192 location_.column += 2; in skip_comment() 199 location_ in skip_comment() [all...] |
H A D | lexer.h | 99 Source::Location location_; member in tint::reader::wgsl::Lexer
|
/third_party/gn/src/gn/ |
H A D | token.h | 67 const Location& location() const { return location_; } in location() 68 void set_location(Location location) { location_ = location; } in set_location() 71 location_, in range() 72 Location(location_.file(), location_.line_number(), in range() 73 location_.column_number() + static_cast<int>(value_.size()))); in range() 83 Location location_; member in Token
|
H A D | token.cc | 13 : type_(t), value_(v), location_(location) {} in Token()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-handle-base.h | 109 V8_INLINE bool IsEmpty() const { return location_ == nullptr; } in IsEmpty() 112 V8_INLINE void Clear() { location_ = nullptr; } in Clear() 124 : location_(location) {} in IndirectHandleBase() 129 V8_INLINE internal::Address ptr() const { return *location_; } in ptr() 132 V8_INLINE internal::Address* const& slot() const { return location_; } in slot() 133 V8_INLINE internal::Address*& slot() { return location_; } in slot() 143 internal::Address* location_ = nullptr; member in v8::IndirectHandleBase
|
/third_party/vixl/src/ |
H A D | pool-manager.h | 116 location_(0) { in LocationBase() 128 location_(0) { in LocationBase() 141 location_(location) {} in LocationBase() 196 T GetLocation() const { return location_; } in GetLocation() 202 // to the object. Reusing the location_ field for this is convenient. 207 location_ = location; in SetLocation() 243 T location_; member in vixl::LocationBase 337 : location_(location), in ForwardReference() 352 T GetLocation() const { return location_; } in GetLocation() 358 void SetLocationToInvalidateOnly(T location) { location_ 363 T location_; global() member in vixl::ForwardReference [all...] |
/third_party/node/deps/v8/src/execution/ |
H A D | arguments-inl.h | 21 : location_(args->address_of_arg_at(index)) { in ChangeValueScope() 22 old_value_ = handle(Object(*location_), isolate); in ChangeValueScope() 23 *location_ = value.ptr(); in ChangeValueScope()
|
H A D | arguments.h | 42 ~ChangeValueScope() { *location_ = old_value_->ptr(); } in ~ChangeValueScope() 45 Address* location_; member in v8::internal::Arguments::ChangeValueScope
|
/third_party/protobuf/src/google/protobuf/compiler/ |
H A D | parser.cc | 404 location_(parser_->source_code_info_->add_location()) { in LocationRecorder() 405 location_->add_span(parser_->input_->current().line); in LocationRecorder() 406 location_->add_span(parser_->input_->current().column); in LocationRecorder() 438 location_ = source_code_info_->add_location(); in Init() 439 location_->mutable_path()->CopyFrom(parent.location_->path()); in Init() 441 location_->add_span(parser_->input_->current().line); in Init() 442 location_->add_span(parser_->input_->current().column); in Init() 446 if (location_->span_size() <= 2) { in ~LocationRecorder() 452 location_ in AddPath() [all...] |
/third_party/node/deps/v8/src/torque/ |
H A D | instructions.h | 89 DefinitionLocation() : kind_(Kind::kInvalid), location_(nullptr), index_(0) {} in DefinitionLocation() 117 return reinterpret_cast<const Block*>(location_); in GetPhiBlock() 131 return reinterpret_cast<const InstructionBase*>(location_); in GetInstruction() 141 if (location_ != other.location_) return false; in operator ==() 153 if (location_ != other.location_) { in operator <() 154 return location_ < other.location_; in operator <() 161 : kind_(kind), location_(locatio in DefinitionLocation() 164 const void* location_; global() member in v8::internal::torque::DefinitionLocation [all...] |
/third_party/node/deps/v8/include/cppgc/internal/ |
H A D | pointer-policies.h | 113 constexpr const SourceLocation& Location() const { return location_; } in Location() 118 : location_(location) {} in KeepLocationPolicy() 129 SourceLocation location_; member in cppgc::internal::KeepLocationPolicy
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkDebugReportUtil.hpp | 58 size_t location_, in DebugReportMessage() 65 , location (location_) in DebugReportMessage()
|
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluDrawUtil.hpp | 108 explicit BindingPoint (int location_) : type(BPTYPE_LOCATION), location(location_) {} in BindingPoint() 109 explicit BindingPoint (const std::string& name_, int location_ = 0) : type(BPTYPE_NAME), name(name_), location(location_) {} in BindingPoint()
|
H A D | gluVarType.cpp | 235 Layout::Layout (int location_, int binding_, int offset_, FormatLayout format_, MatrixOrder matrixOrder_) in Layout() argument 236 : location (location_) in Layout()
|
H A D | gluShaderProgram.hpp | 238 AttribLocationBinding (const std::string& name_, deUint32 location_) : name(name_), location(location_) {} in AttribLocationBinding()
|
H A D | gluDrawUtil.cpp | 51 VertexAttributeDescriptor (int location_, in VertexAttributeDescriptor() 58 : location (location_) in VertexAttributeDescriptor()
|
/third_party/node/deps/v8/include/v8-include/cppgc/internal/ |
H A D | pointer-policies.h | 169 constexpr const SourceLocation& Location() const { return location_; } in Location() 174 : location_(location) {} in KeepLocationPolicy() 185 SourceLocation location_; member in cppgc::internal::KeepLocationPolicy
|
/third_party/node/deps/v8/tools/v8windbg/src/ |
H A D | object-inspection.cc | 16 : location_(std::move(location)), in V8CachedObject() 62 context_.Get(), location_, reinterpret_cast<void*>(&tagged_ptr), 69 if (location_.IsVirtualAddress()) { 70 message << " at 0x" << std::hex << location_.GetOffset(); 77 ::GetHeapObject(context_, tagged_ptr, location_.GetOffset(),
|
H A D | object-inspection.h | 49 Location location_; member in V8CachedObject
|
/third_party/vixl/src/aarch32/ |
H A D | location-aarch32.cc | 48 VIXL_ASSERT(reference.LocationIsEncodable(location_)); in ResolveReferences()
|
/third_party/vixl/test/ |
H A D | test-pool-manager.cc | 161 int32_t min = location_ + min_offset_; 162 int32_t max = location_ + max_offset_; 168 new ForwardReference<int32_t>(location_,
|