Home
last modified time | relevance | path

Searched refs:location_ (Results 1 - 25 of 48) sorted by relevance

12

/third_party/node/deps/v8/src/handles/
H A Dmaybe-handles.h38 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 Dhandles-inl.h21 : 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 Dhandles.h44 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 Dhandles.cc39 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 Dlexer.cc59 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 Dlexer.h99 Source::Location location_; member in tint::reader::wgsl::Lexer
/third_party/gn/src/gn/
H A Dtoken.h67 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 Dtoken.cc13 : type_(t), value_(v), location_(location) {} in Token()
/third_party/node/deps/v8/include/v8-include/
H A Dv8-handle-base.h109 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 Dpool-manager.h116 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 Darguments-inl.h21 : 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 Darguments.h42 ~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 Dparser.cc404 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 Dinstructions.h89 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 Dpointer-policies.h113 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 DvkDebugReportUtil.hpp58 size_t location_, in DebugReportMessage()
65 , location (location_) in DebugReportMessage()
/third_party/vk-gl-cts/framework/opengl/
H A DgluDrawUtil.hpp108 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 DgluVarType.cpp235 Layout::Layout (int location_, int binding_, int offset_, FormatLayout format_, MatrixOrder matrixOrder_) in Layout() argument
236 : location (location_) in Layout()
H A DgluShaderProgram.hpp238 AttribLocationBinding (const std::string& name_, deUint32 location_) : name(name_), location(location_) {} in AttribLocationBinding()
H A DgluDrawUtil.cpp51 VertexAttributeDescriptor (int location_, in VertexAttributeDescriptor()
58 : location (location_) in VertexAttributeDescriptor()
/third_party/node/deps/v8/include/v8-include/cppgc/internal/
H A Dpointer-policies.h169 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 Dobject-inspection.cc16 : 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 Dobject-inspection.h49 Location location_; member in V8CachedObject
/third_party/vixl/src/aarch32/
H A Dlocation-aarch32.cc48 VIXL_ASSERT(reference.LocationIsEncodable(location_)); in ResolveReferences()
/third_party/vixl/test/
H A Dtest-pool-manager.cc161 int32_t min = location_ + min_offset_;
162 int32_t max = location_ + max_offset_;
168 new ForwardReference<int32_t>(location_,

Completed in 18 milliseconds

12