/third_party/typescript/tests/baselines/reference/ |
H A D | classdecl.js | 13 public get d() { 19 public static get p2() { 25 private static get p3() { 117 get: function () {
126 get: function () {
135 get: function () {
223 get d(): number;
225 static get p2(): {
230 private static get p3();
|
H A D | computedPropertyNames3_ES6.js | 6 get [delete id]() { } 8 static get [<String>""]() { } 17 get [delete id]() { }
19 static get [""]() { }
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | ProtobufArrayListTest.java | 67 assertEquals(1, (int) list.get(0)); in testModificationWithIteration() 135 assertEquals(1, (int) TERTIARY_LIST.get(0)); in testGet() 136 assertEquals(2, (int) TERTIARY_LIST.get(1)); in testGet() 137 assertEquals(3, (int) TERTIARY_LIST.get(2)); in testGet() 140 TERTIARY_LIST.get(-1); in testGet() 147 TERTIARY_LIST.get(3); in testGet() 159 assertEquals(3, (int) list.get(0)); in testSet() 162 assertEquals(0, (int) list.get(1)); in testSet() 215 assertEquals(1, (int) list.get(0)); in testAddAll()
|
/third_party/skia/modules/particles/include/ |
H A D | SkParticleSerialization.h | 74 TryParse(get(name), f); 77 TryParse(get(name), i); 80 TryParse(get(name), b); 83 if (const skjson::ArrayValue* lines = get(name)) { 96 TryParse(get(name), s); 101 const skjson::StringValue* typeString = get("Type"); 107 fStack.push_back((const skjson::ObjectValue*)get(name)); 114 const skjson::ArrayValue* arrVal = get(name); 126 const skjson::Value& get(const char* name) { in get() function in SkFromJsonVisitor
|
/third_party/skia/gm/ |
H A D | colorfilters.cpp | 133 const auto dh = (std::get<1>(tst.h) - std::get<0>(tst.h)) / (kSteps - 1), 134 ds = (std::get<1>(tst.s) - std::get<0>(tst.s)) / (kSteps - 1), 135 dl = (std::get<1>(tst.l) - std::get<0>(tst.l)) / (kSteps - 1); 136 auto h = std::get<0>(tst.h), 137 s = std::get<0>(tst.s), 138 l = std::get<0>(tst.l);
|
/third_party/rust/crates/once_cell/src/ |
H A D | race.rs | 14 //! it allows them to be certain that after `get` or `get_or_init` returns on 47 pub fn get(&self) -> Option<NonZeroUsize> { in get() functions 59 self.inner.compare_exchange(0, value.get(), Ordering::AcqRel, Ordering::Acquire); in set() 98 let mut val = f()?.get(); in get_or_try_init() 126 pub fn get(&self) -> Option<bool> { in get() functions 127 self.inner.get().map(OnceBool::from_usize) in get() 168 value.get() == 1 in from_usize() 205 pub fn get(&self) -> Option<&'a T> { in get() functions 206 self.inner.get().map(|ptr| unsafe { &*(ptr.get() a in get() 311 pub fn get(&self) -> Option<&T> { get() functions [all...] |
/third_party/spirv-tools/test/opt/ |
H A D | wrap_opkill_test.cpp | 589 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F() 630 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F() 671 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F() 713 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F() 773 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F() 791 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F() 816 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F() 848 EXPECT_EQ(Pass::Status::SuccessWithChange, std::get<1>(result)); in TEST_F() 850 EXPECT_EQ(Pass::Status::SuccessWithChange, std::get<1>(result)); in TEST_F()
|
/third_party/vk-gl-cts/modules/internal/ |
H A D | ditSeedBuilderTests.cpp | 60 log << TestLog::Message << "Got seed: " << builder.get() << TestLog::EndMessage; in iterate() 62 if (builder.get() != m_seed) in iterate() 98 log << TestLog::Message << "Value a: " << a << ", Seed a: " << builderA.get() << TestLog::EndMessage; in iterate() 99 log << TestLog::Message << "Value b: " << b << ", Seed b: " << builderB.get() << TestLog::EndMessage; in iterate() 100 log << TestLog::Message << "Seed ab: " << builderAB.get() << TestLog::EndMessage; in iterate() 102 if (builderA.get() == builderAB.get()) in iterate() 104 else if (builderB.get() == builderAB.get()) in iterate()
|
/third_party/benchmark/test/ |
H A D | fixture_test.cc | 13 assert(data.get() == nullptr); 20 assert(data.get() != nullptr); 31 assert(data.get() != nullptr); in BENCHMARK_F() 39 assert(data.get() != nullptr); in BENCHMARK_DEFINE_F() 43 assert(data.get() != nullptr); in BENCHMARK_DEFINE_F()
|
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | symbol-split.js | 48 Object.defineProperty (c, Symbol.species, { get: function () { throw "abrupt species";} }); 58 get flags() { 79 Object.defineProperty(RegExp.prototype, "exec", { get : function() { throw "abrupt get exec"; }}) 84 assert (e === "abrupt get exec"); 90 return { get length() { throw "abrupt match length"; }} 102 return { length: 2, get 1() { throw "abrupt capture"; }}
|
H A D | proxy_set_apply_receiver.js | 15 var get = []; variable 21 get: function(o, k) { 22 get.push(k); 30 assert(get + '' === "global,exec,global,unicode,exec");
|
/third_party/node/lib/internal/perf/ |
H A D | performance_entry.js | 35 get name() { return this[kName]; } 37 get entryType() { return this[kType]; } 39 get startTime() { return this[kStart]; } 41 get duration() { return this[kDuration]; } 43 get detail() { return this[kDetail]; }
|
/third_party/node/lib/internal/util/ |
H A D | iterable_weak_map.js | 22 const entry = this.#weakMap.get(key); 38 get(key) { 39 return this.#weakMap.get(key)?.value; 47 const entry = this.#weakMap.get(key); 65 const { value } = this.#weakMap.get(key);
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | marshal_XML.py | 44 if element.get('name') != self.name: 59 self.marshal = element.get('marshal') 60 self.marshal_sync = element.get('marshal_sync') 61 self.marshal_call_before = element.get('marshal_call_before') 62 self.marshal_call_after = element.get('marshal_call_after')
|
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/ |
H A D | Memoizer.java | 49 public R get(T arg) { in get() method in Memoizer 52 SoftReference<R> ref = cache.get(arg); in get() 54 R result = ref.get(); in get() 63 SoftReference<R> ref = cache.get(arg); in get() 65 R result = ref.get(); in get()
|
/third_party/skia/third_party/externals/spirv-tools/test/reduce/ |
H A D | operand_to_dominating_id_test.cpp | 59 .GetAvailableOpportunities(context.get(), 0); in TEST() 92 CheckEqual(env, after_op_0, context.get()); in TEST() 125 CheckEqual(env, after_op_1, context.get()); in TEST() 158 CheckEqual(env, after_op_2, context.get()); in TEST() 193 CheckEqual(env, after_op_4, context.get()); in TEST()
|
/third_party/skia/src/gpu/ops/ |
H A D | SmallPathShapeData.h | 23 memcpy(fKey.get(), that.fKey.get(), fKey.count() * sizeof(uint32_t)); in SmallPathShapeDataKey() 36 0 == memcmp(fKey.get(), that.fKey.get(), sizeof(uint32_t) * fKey.count()); in operator ==() 40 const uint32_t* data() const { return fKey.get(); } in data()
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
H A D | Location.hpp | 58 if(file.get() < o.file.get()) { return true; } in operator <() 59 if(file.get() > o.file.get()) { return false; } in operator <() 80 auto h = std::hash<vk::dbg::File *>()(l.file.get()); in operator ()()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/reduce/ |
H A D | operand_to_dominating_id_test.cpp | 59 .GetAvailableOpportunities(context.get(), 0); in TEST() 92 CheckEqual(env, after_op_0, context.get()); in TEST() 125 CheckEqual(env, after_op_1, context.get()); in TEST() 158 CheckEqual(env, after_op_2, context.get()); in TEST() 193 CheckEqual(env, after_op_4, context.get()); in TEST()
|
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/tests/ |
H A D | TypeTests.h | 32 auto pass = std::get<0>(EffectsTuple); in TEST() 33 auto descrip = std::get<1>(EffectsTuple); in TEST() 34 auto vibdes = std::get<2>(EffectsTuple); in TEST() 35 auto gaindes = std::get<3>(EffectsTuple); in TEST() 48 std::function<void(int*, int*)> fe = std::get<Effect::GainDescription>(EffectsTuple).buildEffect<int*>(arr); in TEST()
|
/third_party/skia/third_party/externals/angle2/third_party/logdog/logdog/ |
H A D | bootstrap.py | 58 streamserver_uri = env.get(cls._ENV_STREAM_SERVER_PATH) 63 project=env.get(cls._ENV_PROJECT, ''), 64 prefix=_check("Prefix", env.get(cls._ENV_PREFIX, '')), 66 coordinator_host=env.get(cls._ENV_COORDINATOR_HOST, ''), 67 namespace=_check("Namespace", env.get(cls._ENV_NAMESPACE, '')))
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | DebugLoc.h | 54 DILocation *get() const; 55 operator DILocation *() const { return get(); } in operator DILocation *() 56 DILocation *operator->() const { return get(); } in operator ->() 57 DILocation &operator*() const { return *get(); } in operator *() 74 /// forwards to \a DILocation::get(). 78 /// FIXME: Remove this. Users should use DILocation::get(). 79 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope, 109 /// find the subprogram, and then DILocation::get().
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
H A D | ValueProfileCollector.cpp | 42 void get(InstrProfValueKind K, std::vector<CandidateInfo> &Candidates) {} in get() function in __anon25082::PluginChain 53 void get(InstrProfValueKind K, std::vector<CandidateInfo> &Candidates) { in get() function in __anon25082::PluginChain 56 Base::get(K, Candidates); in get() 74 ValueProfileCollector::get(InstrProfValueKind Kind) const { in get() function in ValueProfileCollector 76 PImpl->get(Kind, Result); in get()
|
/third_party/spirv-tools/test/reduce/ |
H A D | operand_to_dominating_id_test.cpp | 59 .GetAvailableOpportunities(context.get(), 0); in TEST() 92 CheckEqual(env, after_op_0, context.get()); in TEST() 125 CheckEqual(env, after_op_1, context.get()); in TEST() 158 CheckEqual(env, after_op_2, context.get()); in TEST() 193 CheckEqual(env, after_op_4, context.get()); in TEST()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | bitfield-32bit-overflow.rs | 54 pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { in get() functions 117 ::std::mem::transmute(self._bitfield_1.get(0usize, 1u8) as u8) in m0() 130 ::std::mem::transmute(self._bitfield_1.get(1usize, 1u8) as u8) in m1() 143 ::std::mem::transmute(self._bitfield_1.get(2usize, 1u8) as u8) in m2() 156 ::std::mem::transmute(self._bitfield_1.get(3usize, 1u8) as u8) in m3() 169 ::std::mem::transmute(self._bitfield_1.get(4usize, 1u8) as u8) in m4() 182 ::std::mem::transmute(self._bitfield_1.get(5usize, 1u8) as u8) in m5() 195 ::std::mem::transmute(self._bitfield_1.get(6usize, 1u8) as u8) in m6() 208 ::std::mem::transmute(self._bitfield_1.get(7usize, 1u8) as u8) in m7() 221 ::std::mem::transmute(self._bitfield_1.get( in m8() [all...] |