Home
last modified time | relevance | path

Searched refs:get (Results 4026 - 4050 of 11802) sorted by relevance

1...<<161162163164165166167168169170>>...473

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DCurrencyPluralInfo.java29 * If you need to change any of these symbols, you can get the
112 String currencyPluralPattern = pluralCountToCurrencyUnitPattern.get(pluralCount); in getCurrencyPluralPattern()
116 currencyPluralPattern = pluralCountToCurrencyUnitPattern.get("other"); in getCurrencyPluralPattern()
191 String currencyPattern = pluralCountToCurrencyUnitPattern.get(pluralCount); in clone()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DEraRules.java43 UResourceBundle calendarDataRes = supplementalDataRes.get("calendarData"); in getInstance()
44 UResourceBundle calendarTypeRes = calendarDataRes.get(calType.getId()); in getInstance()
45 UResourceBundle erasRes = calendarTypeRes.get("eras"); in getInstance()
/third_party/icu/icu4c/source/i18n/
H A Dcollationiterator.h88 inline int64_t get(int32_t i) const { return buffer[i]; } in get() function in CollationIterator::CEBuffer
132 return ceBuffer.get(cesIndex++); in nextCE()
197 return ceBuffer.get(i); in getCE()
/third_party/jsframework/runtime/main/reactivity/
H A Dobserver.js140 const getter = property && property.get;
147 get: function reactiveGetter () {
251 get: function proxyGetter () {
/third_party/node/lib/internal/cluster/
H A Dchild.js81 let indexSet = indexes.get(indexesKey);
130 const indexSet = indexes.get(indexesKey);
199 // So it is ok if the close message get lost.
230 const server = handles.get(key);
/third_party/node/lib/internal/webstreams/
H A Dtransfer.js79 get() { return message; },
85 get() { return name; },
91 get() { return code; },
/third_party/node/lib/
H A Dutil.js389 get transferableAbortSignal() {
392 get transferableAbortController() {
395 get aborted() {
/third_party/node/src/api/
H A Dembed_helpers.cc124 isolate, loop, platform, impl_->allocator.get())); in CommonEnvironmentSetup()
183 return impl_->isolate_data.get(); in isolate_data()
187 return impl_->env.get(); in env()
/third_party/node/test/parallel/
H A Dtest-http-set-timeout-server.js53 http.get({
61 // Just do nothing, we should get a timeout event.
82 // Just do nothing, we should get a timeout event.
91 http.get({
99 // Just do nothing, we should get a timeout event.
110 http.get({
H A Dtest-https-set-timeout-server.js63 https.get({
74 // Just do nothing, we should get a timeout event.
98 // Just do nothing, we should get a timeout event.
107 https.get({
118 // Just do nothing, we should get a timeout event.
129 https.get({
H A Dtest-whatwg-encoding-custom-textdecoder.js169 encoding: { get: encodingGetter },
170 fatal: { get: fatalGetter },
171 ignoreBOM: { get: ignoreBOMGetter },
/third_party/node/test/cctest/
H A Dnode_test_fixture.h118 isolate_ = NewIsolate(allocator.get(), &current_loop, platform.get());
142 platform.get());
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationiterator.h88 inline int64_t get(int32_t i) const { return buffer[i]; } in get() function in CollationIterator::CEBuffer
132 return ceBuffer.get(cesIndex++); in nextCE()
197 return ceBuffer.get(i); in getCE()
/third_party/mesa3d/src/mapi/new/
H A DgenCommon.py113 if featElem.get("name") in featureNames:
116 if featElem.get("name") in featureNames:
120 names.add(commandElem.get("name"))
183 # If I just remove the tags and string the text together, I'll get valid C code.
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/
H A Dindex.js95 if (options.saveType && !saveTypeMap.get(options.saveType)) {
117 const path = wsMap.get(name)
124 const node = tree.inventory.get(loc)
/third_party/node/deps/v8/src/debug/
H A Ddebug-stack-trace-iterator.cc87 // FrameInspector is not able to get receiver for arrow function. in GetReceiver()
96 isolate_, frame_inspector_.get(), in GetReceiver()
107 Handle<Object> value = handle(context->get(slot_index), isolate_); in GetReceiver()
168 return std::make_unique<DebugScopeIterator>(isolate_, frame_inspector_.get()); in GetScopeIterator()
/third_party/node/deps/v8/src/bigint/
H A Dbigint-internal.h135 digit_t* get() { return ptr_.get(); } in get() function in v8::bigint::Storage
145 digits_ = storage_.get(); in ScratchDigits()
/third_party/node/deps/v8/src/heap/
H A Dobjects-visiting.cc151 Object list_head = VisitWeakList<T>(heap, context.get(index), retainer); in DoWeakList()
165 ClearWeakList<CodeT>(heap, context.get(Context::OPTIMIZED_CODE_LIST)); in VisitPhantomObject()
166 ClearWeakList<CodeT>(heap, context.get(Context::DEOPTIMIZED_CODE_LIST)); in VisitPhantomObject()
/third_party/libabigail/tests/data/test-diff-dwarf/
H A Dtest42-PR21296-clanggcc.cc213 get(const tuple<_Elements...>& __t) noexcept
229 printf("tpl: &C=%p\n", get<0>(x).C); in tpl()
230 printf("tpl: C=%s\n", get<0>(x).C); in tpl()
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/
H A DTypes.java98 return Optional.ofNullable(XML_TYPE_MAP.get(xmlName)); in forXmlName()
103 return Optional.ofNullable(XML_TO_SCHEMA_TYPE_MAP.get(rangeType)); in toSchemaType()
108 return Optional.ofNullable(XML_TO_SCHEMA_TYPE_MAP.inverse().get(schemaType)); in toXmlType()
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/regex/
H A DRangeTreeConverterTest.java133 assertThat(nfa.edgeValue(node, target).get()).isEqualTo(edge); in assertOutEdge()
141 .map(t -> nfa.edgeValue(node, t).get()) in assertOutEdges()
150 .filter(t -> nfa.edgeValue(node, t).get().equals(edge)) in follow()
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dbitfield_align_2.rs55 pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { in get() functions
136 ::std::mem::transmute(self._bitfield_1.get(0usize, 2u8) as u32) in tag()
149 ::std::mem::transmute(self._bitfield_1.get(2usize, 62u8) as u64) in ptr()
H A Dunion_with_anon_struct_bitfield.rs54 pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { in get() functions
124 ::std::mem::transmute(self._bitfield_1.get(0usize, 7u8) as u32) in b()
137 ::std::mem::transmute(self._bitfield_1.get(7usize, 25u8) as u32) in c()
H A Dderive-partialeq-bitfield.rs54 pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { in get() functions
149 ::std::mem::transmute(self._bitfield_1.get(0usize, 1u8) as u8) in a()
162 ::std::mem::transmute(self._bitfield_1.get(1usize, 7u8) as u8) in b()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/conditional_rendering/
H A DvktConditionalClearAttachmentTests.cpp174 m_vk.cmdExecuteCommands(*m_cmdBuffer, 1, &m_secondaryCmdBuffer.get()); in iterate()
185 m_vk.cmdExecuteCommands(*m_cmdBuffer, 1, &m_secondaryCmdBuffer.get()); in iterate()
191 submitCommandsAndWait(m_vk, device, queue, m_cmdBuffer.get()); in iterate()

Completed in 15 milliseconds

1...<<161162163164165166167168169170>>...473