Home
last modified time | relevance | path

Searched refs:Reference (Results 1 – 25 of 1511) sorted by relevance

12345678910>>...61

/third_party/node/deps/v8/src/objects/
Dslots-atomic-inl.h33 class Reference {
35 explicit Reference(Tagged_t* address) : address_(address) {} in Reference() function
36 Reference(const Reference&) V8_NOEXCEPT = default;
38 Reference& operator=(const Reference& other) V8_NOEXCEPT {
43 Reference& operator=(Tagged_t value) {
52 void swap(Reference& other) { in swap()
58 bool operator<(const Reference& other) const {
62 bool operator==(const Reference& other) const {
76 using reference = Reference;
85 Reference operator*() const {
[all …]
Dslots.h200 class Reference {
202 explicit Reference(Address address) : address_(address) {} in Reference() function
203 Reference(const Reference&) V8_NOEXCEPT = default;
205 Reference& operator=(const Reference& other) V8_NOEXCEPT {
209 Reference& operator=(T value) {
218 void swap(Reference& other) { in swap()
224 bool operator<(const Reference& other) const {
228 bool operator==(const Reference& other) const {
242 using reference = Reference;
252 Reference operator*() const {
[all …]
/third_party/skia/third_party/externals/tint/src/sem/
Dreference_type.cc19 TINT_INSTANTIATE_TYPEINFO(tint::sem::Reference);
24 Reference::Reference(const Type* subtype, in Reference() function in tint::sem::Reference
28 TINT_ASSERT(Semantic, !subtype->Is<Reference>()); in Reference()
32 std::string Reference::type_name() const { in type_name()
38 std::string Reference::FriendlyName(const SymbolTable& symbols) const { in FriendlyName()
49 Reference::Reference(Reference&&) = default;
51 Reference::~Reference() = default;
Dreference_type.h28 class Reference : public Castable<Reference, Type> {
34 Reference(const Type* subtype,
39 Reference(Reference&&);
40 ~Reference() override;
Dreference_type_test.cc25 auto* r = create<Reference>(create<I32>(), ast::StorageClass::kStorage, in TEST_F()
33 auto* r = create<Reference>(create<I32>(), ast::StorageClass::kWorkgroup, in TEST_F()
39 auto* r = create<Reference>(create<I32>(), ast::StorageClass::kNone, in TEST_F()
45 auto* r = create<Reference>(create<I32>(), ast::StorageClass::kWorkgroup, in TEST_F()
/third_party/typescript/tests/baselines/reference/
DcollisionArgumentsClassConstructor.errors.txt2 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
3 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
4 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
6 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
7 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
8 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
9 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
10 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
12 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
13 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
[all …]
DcollisionArgumentsClassMethod.errors.txt2 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
3 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
4 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
6 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
7 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
8 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
9 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
10 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
12 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
13 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
[all …]
DparseClassDeclarationInStrictModeByDefaultInES6.errors.txt1 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
2 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
3 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
13 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
16 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
19 …ore information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.
/third_party/skia/third_party/externals/tint/src/resolver/
Dvar_let_test.cc64 ASSERT_TRUE(TypeOf(i)->Is<sem::Reference>()); in TEST_F()
65 ASSERT_TRUE(TypeOf(u)->Is<sem::Reference>()); in TEST_F()
66 ASSERT_TRUE(TypeOf(f)->Is<sem::Reference>()); in TEST_F()
67 ASSERT_TRUE(TypeOf(b)->Is<sem::Reference>()); in TEST_F()
68 ASSERT_TRUE(TypeOf(s)->Is<sem::Reference>()); in TEST_F()
69 ASSERT_TRUE(TypeOf(a)->Is<sem::Reference>()); in TEST_F()
71 EXPECT_TRUE(TypeOf(i)->As<sem::Reference>()->StoreType()->Is<sem::I32>()); in TEST_F()
72 EXPECT_TRUE(TypeOf(u)->As<sem::Reference>()->StoreType()->Is<sem::U32>()); in TEST_F()
73 EXPECT_TRUE(TypeOf(f)->As<sem::Reference>()->StoreType()->Is<sem::F32>()); in TEST_F()
74 EXPECT_TRUE(TypeOf(b)->As<sem::Reference>()->StoreType()->Is<sem::Bool>()); in TEST_F()
[all …]
Darray_accessor_test.cc99 ASSERT_TRUE(TypeOf(acc)->Is<sem::Reference>()); in TEST_F()
101 auto* ref = TypeOf(acc)->As<sem::Reference>(); in TEST_F()
115 ASSERT_TRUE(TypeOf(acc)->Is<sem::Reference>()); in TEST_F()
117 auto* ref = TypeOf(acc)->As<sem::Reference>(); in TEST_F()
158 ASSERT_TRUE(TypeOf(acc)->Is<sem::Reference>()); in TEST_F()
160 auto* ref = TypeOf(acc)->As<sem::Reference>(); in TEST_F()
174 ASSERT_TRUE(TypeOf(acc)->Is<sem::Reference>()); in TEST_F()
176 auto* ref = TypeOf(acc)->As<sem::Reference>(); in TEST_F()
191 ASSERT_TRUE(TypeOf(acc)->Is<sem::Reference>()); in TEST_F()
193 auto* ref = TypeOf(acc)->As<sem::Reference>(); in TEST_F()
/third_party/node/src/
Daliased_buffer.h147 class Reference {
149 Reference(AliasedBufferBase<NativeT, V8T>* aliased_buffer, size_t index) in Reference() function
152 Reference(const Reference& that) in Reference() function
157 inline Reference& operator=(const NativeT& val) {
162 inline Reference& operator=(const Reference& val) {
170 inline Reference& operator+=(const NativeT& val) {
176 inline Reference& operator+=(const Reference& val) {
180 inline Reference& operator-=(const NativeT& val) {
249 Reference operator[](size_t index) {
251 return Reference(this, index);
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
DSharedObject.java102 public static final class Reference<T extends SharedObject> implements Cloneable { class in SharedObject
105 public Reference(T r) { in Reference() method in SharedObject.Reference
114 public Reference<T> clone() { in clone()
115 Reference<T> c; in clone()
117 c = (Reference<T>)super.clone(); in clone()
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DSharedObject.java99 public static final class Reference<T extends SharedObject> implements Cloneable { class in SharedObject
102 public Reference(T r) { in Reference() method in SharedObject.Reference
111 public Reference<T> clone() { in clone()
112 Reference<T> c; in clone()
114 c = (Reference<T>)super.clone(); in clone()
/third_party/ltp/testcases/kernel/mce-test/doc/cases/
Dsoft-inj_recoverable_ucr.txt24 - Reference:
43 - Reference:
62 - Reference:
79 - Reference:
96 - Reference:
115 - Reference:
133 - Reference:
151 - Reference:
169 - Reference:
187 - Reference:
Dsoft-inj_panic.txt26 - Reference:
48 - Reference:
65 - Reference:
82 - Reference:
99 - Reference:
116 - Reference:
133 - Reference:
135 * Reference MCE records: cases/soft-inj/panic/refer/fatal_no_en
149 - Reference:
165 - Reference:
Dsoft-inj_panic_ucr.txt25 - Reference:
48 - Reference:
71 - Reference:
94 - Reference:
96 * Reference MCE records: cases/soft-inj/panic_ucr/refer/srar_no_en
114 - Reference:
127 - Reference:
Dsoft-inj_panic_npcc.txt26 - Reference:
41 - Reference:
61 - Reference:
77 - Reference:
92 - Reference:
108 - Reference:
123 - Reference:
140 - Reference:
/third_party/skia/third_party/externals/dawn/src/common/
DRefBase.h57 Reference(value); in RefBase()
67 Reference(other.mValue); in RefBase()
92 Reference(other.mValue); in RefBase()
159 static void Reference(T value) { in Reference() function
161 Traits::Reference(value); in Reference()
174 Reference(value); in Set()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DReactor.hpp211 class Reference class
216 explicit Reference(Value *pointer, int alignment = 1);
217 Reference(const Reference<T> &ref) = default;
220 RValue<T> operator=(const Reference<T> &ref) const;
297 RValue(const Reference<T> &rhs);
331 Bool(const Reference<Bool> &rhs);
336 RValue<Bool> operator=(const Reference<Bool> &rhs);
361 Byte(const Reference<Byte> &rhs);
366 RValue<Byte> operator=(const Reference<Byte> &rhs);
417 SByte(const Reference<SByte> &rhs);
[all …]
/third_party/skia/third_party/externals/tint/src/reader/spirv/
Dparser_type.cc32 TINT_INSTANTIATE_TYPEINFO(tint::reader::spirv::Reference);
59 size_t operator()(const Reference& t) const { in operator ()()
105 static bool operator==(const Reference& a, const Reference& b) { in operator ==()
162 Reference::Reference(const Type* t, ast::StorageClass s) in Reference() function in tint::reader::spirv::Reference
164 Reference::Reference(const Reference&) = default;
166 const ast::Type* Reference::Build(ProgramBuilder& b) const { in Build()
286 std::unordered_map<spirv::Reference, const spirv::Reference*, ReferenceHasher>
337 while (auto* ptr = type->As<Reference>()) { in UnwrapRef()
453 const spirv::Reference* TypeManager::Reference(const Type* el, in Reference() function in tint::reader::spirv::TypeManager
455 return utils::GetOrCreate(state->references_, spirv::Reference(el, sc), [&] { in Reference()
[all …]
/third_party/node/deps/v8/src/builtins/
Dtorque-internal.tq55 struct Reference<T: type> {
60 type ConstReference<T: type> extends Reference<T>;
67 Reference<T>{object: object, offset: offset, unsafeMarker: Unsafe {}});
70 return %RawDownCast<&T>(Reference<T>{
87 struct Slice<T: type, Reference: type> {
88 macro TryAtIndex(index: intptr): Reference labels OutOfBounds {
95 macro UncheckedAtIndex(index: intptr): Reference {
100 macro AtIndex(index: intptr): Reference {
104 macro AtIndex(index: uintptr): Reference {
108 macro AtIndex(index: constexpr IntegerLiteral): Reference {
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/
Dvideo_extensions.txt42 === Reference Picture
44 Video *Reference Picture* is a <<video-picture-resources,Video Picture
79 <<reference-picture,Reference Pictures>>.
88 Such reconstructed pictures may: be used as <<reference-picture,Reference
90 The correct use of such <<reference-picture,Reference Pictures>> is driven
103 indexed <<reference-picture,Reference Picture's>> entry within the
106 maximum of *N* - 1, where *N* is the number of <<reference-picture,Reference
111 === Reference Picture Metadata
114 contain *Reference Picture Metadata*, present when the
127 references to the <<reference-picture,Reference Pictures>>, beyond the
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dnode_hash_policy.h48 template <class Reference, class Policy>
50 static_assert(std::is_lvalue_reference<Reference>::value, "");
53 typename std::remove_reference<Reference>::type>::type*;
75 static Reference element(slot_type* slot) { return **slot; } in element()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DSimpleCache.java12 import java.lang.ref.Reference;
22 private volatile Reference<Map<K, V>> cacheRef = null;
44 Reference<Map<K, V>> ref = cacheRef; in get()
56 Reference<Map<K, V>> ref = cacheRef; in put()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DSimpleCache.java13 import java.lang.ref.Reference;
26 private volatile Reference<Map<K, V>> cacheRef = null;
48 Reference<Map<K, V>> ref = cacheRef; in get()
60 Reference<Map<K, V>> ref = cacheRef; in put()

12345678910>>...61