| /third_party/rust/rust/tests/ui/associated-types/ |
| D | associated-types-in-ambiguous-context.rs | 4 type Value; typedef 5 fn get(&self) -> <Self as Get>::Value; in get() method 8 fn get<T:Get,U:Get>(x: T, y: U) -> Get::Value {} in get() function 12 type Value; typedef 13 fn grab(&self) -> Grab::Value; in grab() 16 fn get(&self) -> Get::Value; in get() method
|
| D | associated-types-in-fn.rs | 4 type Value; typedef 5 fn get(&self) -> &<Self as Get>::Value; in get() method 13 type Value = isize; typedef 14 fn get(&self) -> &isize { in get() method 19 fn grab<T:Get>(x: &T) -> &<T as Get>::Value { in grab()
|
| D | associated-types-in-default-method.rs | 4 type Value; typedef 5 fn get(&self) -> &<Self as Get>::Value; in get() method 6 fn grab(&self) -> &<Self as Get>::Value { in grab() 16 type Value = isize; typedef 17 fn get(&self) -> &isize { in get() method
|
| D | associated-types-in-inherent-method.rs | 4 type Value; typedef 5 fn get(&self) -> &<Self as Get>::Value; in get() method 13 type Value = isize; typedef 14 fn get(&self) -> &isize { in get() method 20 fn grab<T:Get>(x: &T) -> &<T as Get>::Value { in grab()
|
| D | associated-types-simple.rs | 4 type Value; typedef 5 fn get(&self) -> &<Self as Get>::Value; in get() method 13 type Value = isize; typedef 14 fn get(&self) -> &isize { in get() method
|
| D | associated-types-in-impl-generics.rs | 4 type Value; typedef 5 fn get(&self) -> &<Self as Get>::Value; in get() method 13 type Value = isize; typedef 14 fn get(&self) -> &isize { in get() method 26 fn grab(&self) -> &<T as Get>::Value { in grab()
|
| D | associated-types-for-unimpl-trait.rs | 5 type Value; typedef 6 fn get(&self) -> <Self as Get>::Value; in get() method 10 fn uhoh<U:Get>(&self, foo: U, bar: <Self as Get>::Value) {} in uhoh()
|
| D | associated-types-no-suitable-bound.rs | 2 type Value; typedef 3 fn get(&self) -> <Self as Get>::Value; in get() method 11 fn uhoh<T>(foo: <T as Get>::Value) {} in uhoh()
|
| D | associated-types-unsized.rs | 5 type Value: ?Sized; typedef 6 fn get(&self) -> <Self as Get>::Value; in get() method
|
| D | associated-types-enum-field-numbered.rs | 8 type Value; typedef 17 fn get<'a,K:UnifyKey<Value=Option<V>>,V>(table: &'a Vec<VarValue<K>>, key: &K) -> &'a Option<V> { in get() function 25 type Value = Option<char>; typedef
|
| D | associated-types-enum-field-named.rs | 8 type Value; typedef 17 fn get<'a,K:UnifyKey<Value=Option<V>>,V>(table: &'a Vec<VarValue<K>>, key: &K) -> &'a Option<V> { in get() function 25 type Value = Option<char>; typedef
|
| /third_party/rust/rust/tests/ui/nll/ |
| D | issue-52078.rs | 12 type Value; typedef 13 fn get(value: &mut Self::Value); in get() method 17 type Value = &'a mut Option<T>; typedef 19 fn get<'b>(value: &'b mut Self::Value) { in get() method
|
| /third_party/typescript/tests/baselines/reference/ |
| D | thisInAccessors.js | 4 get Value() { getter in GetterOnly 8 set Value(val) { setter in GetterOnly 14 get Value() { getter in SetterOnly 17 set Value(val) { setter in SetterOnly 18 var fn = () => this; 24 get Value() { getter in GetterAndSetter 28 set Value(val) { setter in GetterAndSetter 29 var fn = () => this; 39 get: function () { method 56 get: function () { method [all …]
|
| /third_party/rust/rust/tests/ui/regions/ |
| D | regions-assoc-type-region-bound.rs | 9 type Value: 'a; typedef 11 fn get(&self) -> &'a Self::Value; in get() method
|
| /third_party/rust/rust/compiler/rustc_query_system/src/ |
| D | cache.rs | 34 pub fn get<Tcx: DepContext>(&self, key: &Key, tcx: Tcx) -> Option<Value> { in get() method 38 pub fn insert(&self, key: Key, dep_node: DepNodeIndex, value: Value) { in insert() 54 pub fn get<Tcx: DepContext>(&self, tcx: Tcx) -> T { in get() method
|
| /third_party/skia/src/core/ |
| D | SkImageFilterCache.cpp | 37 struct Value { struct in __anon541cf1160311::CacheImpl 38 Value(const Key& key, const skif::FilterResult& image, in Value() function 42 Key fKey; 43 skif::FilterResult fImage; 44 const SkImageFilter* fFilter; 45 static const Key& GetKey(const Value& v) { in GetKey() 48 static uint32_t Hash(const Key& key) { in Hash() 54 bool get(const Key& key, skif::FilterResult* result) const override { in get() function in __anon541cf1160311::CacheImpl
|
| /third_party/skia/m133/src/core/ |
| D | SkImageFilterCache.cpp | 38 struct Value { struct in __anon88b9e0c90311::CacheImpl 39 Value(const Key& key, const skif::FilterResult& image, in Value() function 43 Key fKey; 44 skif::FilterResult fImage; 45 const SkImageFilter* fFilter; 46 static const Key& GetKey(const Value& v) { in GetKey() 49 static uint32_t Hash(const Key& key) { in Hash() 55 bool get(const Key& key, skif::FilterResult* result) const override { in get() function in __anon88b9e0c90311::CacheImpl
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
| D | Use.h | 34 class Value; variable 82 Value *get() const { return Val; } in get() function 137 friend class Value; variable
|
| /third_party/rust/rust/library/std/src/sys/common/thread_local/ |
| D | os_local.rs | 107 struct Value<T: 'static> { struct 120 pub unsafe fn get(&'static self, init: impl FnOnce() -> T) -> Option<&'static T> { in get() method 122 let ptr = unsafe { self.os.get() as *mut Value<T> }; in get() argument
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
| D | MemoryLocation.h | 71 uint64_t Value; variable 90 static LocationSize precise(uint64_t Value) { return LocationSize(Value); } in precise() 92 static LocationSize upperBound(uint64_t Value) { in upperBound() 204 static MemoryLocation get(const Instruction *Inst) { in get() function
|
| /third_party/mindspore/mindspore-src/source/mindspore/ccsrc/include/common/expander/core/ |
| D | node.h | 38 …virtual const AnfNodePtr &get() const { MS_EXCEPTION(NotImplementedError) << "Base Node not implem… in get() function 44 ValuePtr Value() { return value_; } in Value() function 79 const AnfNodePtr &get() const override { return anf_node_; } in get() function
|
| /third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
| D | Value.hpp | 45 class Value class 70 …std::string get(const FormatFlags &fmt = FormatFlags::Default) override { return std::to_string(va… in get() function in vk::dbg::Constant 85 …std::string get(const FormatFlags &fmt = FormatFlags::Default) override { return std::to_string(re… in get() function in vk::dbg::Reference
|
| /third_party/mesa3d/src/tool/pps/ |
| D | pps_counter.h | 45 using Value = std::variant<int64_t, double>; variable 93 inline void Counter::set_getter(const std::function<Getter> &get) in set_getter()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
| D | Use.h | 36 class Value; variable 107 Value *get() const { return Val; } in get() function
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
| D | PointerSumType.h | 88 uintptr_t Value; member 125 template <TagT N> typename HelperT::template Lookup<N>::PointerT get() const { in get() function
|