Home
last modified time | relevance | path

Searched refs:get (Results 1151 - 1175 of 15595) sorted by relevance

1...<<41424344454647484950>>...624

/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/locale/
H A DLocaleDistanceBuilder.java73 if (resolved.get(contained) == null) { // a leaf node (usually a country) in TerritoryContainment()
78 leaves = toLeavesOnly.get("001"); in TerritoryContainment()
97 Set<String> contained = graph.get(region); in resolve()
106 return resolved.get(region); in resolve()
125 Integer result = objectToInt.get(source); in makeUniqueIndex()
171 buffer.get(bytes); in build()
205 Map<String, DistanceTable> sub2 = subtables.get(desired); in getDistance()
207 sub2 = subtables.get(ANY); // <*, supported> in getDistance()
210 DistanceTable value = sub2.get(supported); // <*/desired, supported> in getDistance()
212 value = sub2.get(AN in getDistance()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DDecimalFormat.java530 int serialVersion = fieldGetter.get("serialVersionOnStream", -1); in readObject()
566 setDecimalSeparatorAlwaysShown(fieldGetter.get("decimalSeparatorAlwaysShown", false)); in readObject()
568 setExponentSignAlwaysShown(fieldGetter.get("exponentSignAlwaysShown", false)); in readObject()
570 setFormatWidth(fieldGetter.get("formatWidth", 0)); in readObject()
572 setGroupingSize(fieldGetter.get("groupingSize", (byte) 3)); in readObject()
574 setSecondaryGroupingSize(fieldGetter.get("groupingSize2", (byte) 0)); in readObject()
576 setMaximumSignificantDigits(fieldGetter.get("maxSignificantDigits", 6)); in readObject()
578 setMinimumExponentDigits(fieldGetter.get("minExponentDigits", (byte) 0)); in readObject()
580 setMinimumSignificantDigits(fieldGetter.get("minSignificantDigits", 1)); in readObject()
582 setMultiplier(fieldGetter.get("multiplie in readObject()
[all...]
H A DPluralRanges.java76 + StandardPlural.VALUES.get(old) + ">"); in setIfNew()
85 StandardPlural get(StandardPlural start, StandardPlural end) { in get() method in PluralRanges.Matrix
87 return result < 0 ? null : StandardPlural.VALUES.get(result); in get()
97 StandardPlural item = get(start, end); in endSame()
121 StandardPlural item = get(start, end); in startSame()
180 StandardPlural x = get(i, j); in toString()
245 public StandardPlural get(StandardPlural start, StandardPlural end) { in get() method in PluralRanges
246 StandardPlural result = matrix.get(start, end); in get()
252 * is explicitly in the data (vs given an implicit value). See also {@link #get}.
264 return matrix.get(star in isExplicit()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstructionSelector.cpp87 const RegisterBank *RB = RegClassOrBank.get<const RegisterBank *>(); in isVCC()
94 I.setDesc(TII.get(TargetOpcode::COPY)); in selectCOPY()
126 BuildMI(*BB, &I, DL, TII.get(AndOpc), MaskedReg) in selectCOPY()
129 BuildMI(*BB, &I, DL, TII.get(AMDGPU::V_CMP_NE_U32_e64), DstReg) in selectCOPY()
190 const RegisterBank &RB = *RegClassOrBank.get<const RegisterBank *>(); in selectPHI()
199 I.setDesc(TII.get(TargetOpcode::PHI)); in selectPHI()
215 BuildMI(*BB, MI, MI->getDebugLoc(), TII.get(AMDGPU::COPY), DstReg) in getSubOperand64()
263 I.setDesc(TII.get(InstOpc)); in selectG_AND_OR_XOR()
281 I.setDesc(TII.get(InstOpc)); in selectG_AND_OR_XOR()
307 BuildMI(*BB, &I, DL, TII.get(Op in selectG_ADD_SUB()
[all...]
H A DSIInstrInfo.cpp122 // MachineSDNode's operands, so we need to skip the result operand to get in nodesHaveSameOperandValue()
156 if (!get(Opc0).mayLoad() || !get(Opc1).mayLoad()) in areLoadsFromSameBasePtr()
181 Offset0Idx -= get(Opc0).NumDefs; in areLoadsFromSameBasePtr()
182 Offset1Idx -= get(Opc1).NumDefs; in areLoadsFromSameBasePtr()
231 OffIdx0 -= get(Opc0).NumDefs; in areLoadsFromSameBasePtr()
232 OffIdx1 -= get(Opc1).NumDefs; in areLoadsFromSameBasePtr()
527 BuildMI(MBB, MI, DL, TII->get(AMDGPU::SI_ILLEGAL_COPY), DestReg) in reportIllegalCopy()
543 BuildMI(MBB, MI, DL, get(Opc), DestReg) in copyPhysReg()
551 BuildMI(MBB, MI, DL, get(AMDGP in copyPhysReg()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp417 return replaceInstUsesWith(EI, UndefValue::get(EI.getType())); in visitExtractElementInst()
426 ConstantInt::get(Int32Ty, in visitExtractElementInst()
452 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext()))); in collectSingleShuffleElements()
458 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()), i)); in collectSingleShuffleElements()
464 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()), in collectSingleShuffleElements()
484 Mask[InsertedIdx] = UndefValue::get(Type::getInt32Ty(V->getContext())); in collectSingleShuffleElements()
501 ConstantInt::get(Type::getInt32Ty(V->getContext()), in collectSingleShuffleElements()
506 ConstantInt::get(Type::getInt32Ty(V->getContext()), in collectSingleShuffleElements()
542 ExtendMask.push_back(ConstantInt::get(IntType, i)); in replaceExtractElements()
544 ExtendMask.push_back(UndefValue::get(IntTyp in replaceExtractElements()
[all...]
H A DInstCombineCalls.cpp111 BoolVec.push_back(ConstantInt::get(BoolTy, Sign)); in getNegativeIsTrueBoolVec()
113 return ConstantVector::get(BoolVec); in getNegativeIsTrueBoolVec()
169 IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3); in SimplifyAnyMemTransfer()
170 Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp); in SimplifyAnyMemTransfer()
171 Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp); in SimplifyAnyMemTransfer()
173 // If the memcpy has metadata describing the members, see if we can get the in SimplifyAnyMemTransfer()
269 Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8. in SimplifyAnyMemSet()
273 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp); in SimplifyAnyMemSet()
278 StoreInst *S = Builder.CreateStore(ConstantInt::get(ITy, Fill), Dest, in SimplifyAnyMemSet()
404 return ConstantAggregateZero::get(V in simplifyX86immShift()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DFunction.cpp741 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Void, 0));
744 OutputTable.push_back(IITDescriptor::get(IITDescriptor::VarArg, 0));
747 OutputTable.push_back(IITDescriptor::get(IITDescriptor::MMX, 0));
750 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Token, 0));
753 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Metadata, 0));
756 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Half, 0));
759 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Float, 0));
762 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Double, 0));
765 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Quad, 0));
768 OutputTable.push_back(IITDescriptor::get(IITDescripto
[all...]
/third_party/node/deps/undici/src/lib/fetch/
H A Dfile.js77 get name () {
83 get lastModified () {
89 get type () {
168 get size () {
174 get type () {
180 get name () {
186 get lastModified () {
192 get [Symbol.toStringTag] () {
234 get defaultValue () {
289 // 2. If element is a BufferSource, get
[all...]
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/table/
H A DCsvParserTest.java104 assertThat(rows.get(0)).containsExactly("foo", "Hello,\nWorld!").inOrder(); in testMultiline()
114 assertThat(rows.get(0)).containsExactly("foo", " Hello,\nWorld! ").inOrder(); in testMultilineWithTrimming()
139 assertThat(rows.get(0)).containsExactly("FOO", "foo", "BAR", "bar").inOrder(); in testRowMapping()
140 assertThat(rows.get(1)).containsExactly("FOO", "Hello", "BAR", "World!").inOrder(); in testRowMapping()
141 assertThat(rows.get(2)).containsExactly("FOO", "No Trailing").inOrder(); in testRowMapping()
142 assertThat(rows.get(3)).isEmpty(); in testRowMapping()
143 assertThat(rows.get(4)).isEmpty(); in testRowMapping()
156 assertThat(rows.get(0)).containsExactly("FOO", "foo", "BAR", "bar").inOrder(); in testRowMapping_withHeader()
162 assertThat(rows.get(0)).containsExactlyElementsIn(values).inOrder(); in assertSingleRow()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Dwrap_opkill_test.cpp590 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F()
631 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F()
672 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F()
714 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F()
774 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F()
792 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F()
817 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F()
849 EXPECT_EQ(Pass::Status::SuccessWithChange, std::get<1>(result)); in TEST_F()
851 EXPECT_EQ(Pass::Status::SuccessWithChange, std::get<1>(result)); in TEST_F()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dfunction.cpp131 if (!static_cast<const Instruction*>(def_inst_.get()) in WhileEachInst()
138 if (!static_cast<const Instruction*>(param.get()) in WhileEachInst()
151 if (!static_cast<const BasicBlock*>(bb.get())->WhileEachInst( in WhileEachInst()
158 if (!static_cast<const Instruction*>(end_inst_.get()) in WhileEachInst()
166 if (!static_cast<const Instruction*>(non_semantic.get()) in WhileEachInst()
179 static_cast<Instruction*>(param.get()) in ForEachParam()
186 static_cast<const Instruction*>(param.get()) in ForEachParam()
234 !post_dominator_analysis->Dominates(block.get(), entry().get())) { in HasEarlyReturn()
247 // Process the call tree from all of the function called by |this|. If it get in IsRecursive()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dfunction.cpp131 if (!static_cast<const Instruction*>(def_inst_.get()) in WhileEachInst()
138 if (!static_cast<const Instruction*>(param.get()) in WhileEachInst()
151 if (!static_cast<const BasicBlock*>(bb.get())->WhileEachInst( in WhileEachInst()
158 if (!static_cast<const Instruction*>(end_inst_.get()) in WhileEachInst()
166 if (!static_cast<const Instruction*>(non_semantic.get()) in WhileEachInst()
179 static_cast<Instruction*>(param.get()) in ForEachParam()
186 static_cast<const Instruction*>(param.get()) in ForEachParam()
234 !post_dominator_analysis->Dominates(block.get(), entry().get())) { in HasEarlyReturn()
247 // Process the call tree from all of the function called by |this|. If it get in IsRecursive()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dwrap_opkill_test.cpp590 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F()
631 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F()
672 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F()
714 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F()
774 EXPECT_EQ(Pass::Status::Failure, std::get<1>(result)); in TEST_F()
792 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F()
817 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F()
849 EXPECT_EQ(Pass::Status::SuccessWithChange, std::get<1>(result)); in TEST_F()
851 EXPECT_EQ(Pass::Status::SuccessWithChange, std::get<1>(result)); in TEST_F()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/audio/
H A DFFMpegExtractor.cpp153 if (!createAVFormatContext(ioContext.get(), &tmp)) return returnValue; in decode()
157 if (!openAVFormatContext(formatContext.get())) return returnValue; in decode()
159 if (!getStreamInfo(formatContext.get())) return returnValue; in decode()
162 AVStream *stream = getBestAudioStream(formatContext.get()); in decode()
192 if (avcodec_parameters_to_context(codecContext.get(), stream->codecpar) < 0){ in decode()
198 if (avcodec_open2(codecContext.get(), codec, nullptr) < 0){ in decode()
241 while (av_read_frame(formatContext.get(), &avPacket) == 0){ in decode()
246 result = avcodec_send_packet(codecContext.get(), &avPacket); in decode()
253 result = avcodec_receive_frame(codecContext.get(), decodedFrame); in decode()
/third_party/skia/tests/
H A DCopySurfaceTest.cpp41 srcPixels.get()[i] = i; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
46 dstPixels.get()[i] = ~i; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
80 GrCPixmap srcPM(ii, srcPixels.get(), kRowBytes); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
81 GrPixmap dstPM(ii, dstPixels.get(), kRowBytes); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
162 sk_memset32(read.get(), 0, kW * kH); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
163 GrPixmap readPM(ii, read.get(), kRowBytes); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
174 uint32_t r = read.get()[y * kW + x]; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
178 uint32_t s = srcPixels.get()[sy * kW + sx]; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
187 uint32_t d = dstPixels.get()[y * kW + x]; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
H A DMipsMachineFunction.cpp88 BuildMI(MBB, I, DL, TII.get(Mips::LUi64), V0) in initGlobalBaseReg()
90 BuildMI(MBB, I, DL, TII.get(Mips::DADDu), V1).addReg(V0) in initGlobalBaseReg()
92 BuildMI(MBB, I, DL, TII.get(Mips::DADDiu), GlobalBaseReg).addReg(V1) in initGlobalBaseReg()
102 BuildMI(MBB, I, DL, TII.get(Mips::LUi), V0) in initGlobalBaseReg()
104 BuildMI(MBB, I, DL, TII.get(Mips::ADDiu), GlobalBaseReg).addReg(V0) in initGlobalBaseReg()
117 BuildMI(MBB, I, DL, TII.get(Mips::LUi), V0) in initGlobalBaseReg()
119 BuildMI(MBB, I, DL, TII.get(Mips::ADDu), V1).addReg(V0).addReg(Mips::T9); in initGlobalBaseReg()
120 BuildMI(MBB, I, DL, TII.get(Mips::ADDiu), GlobalBaseReg).addReg(V1) in initGlobalBaseReg()
146 BuildMI(MBB, I, DL, TII.get(Mips::ADDu), GlobalBaseReg) in initGlobalBaseReg()
/third_party/typescript/tests/baselines/reference/
H A Dclassdecl.js13 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();
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DProtobufArrayListTest.java67 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 DSkParticleSerialization.h74 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 Dcolorfilters.cpp133 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 Drace.rs14 //! 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 Dwrap_opkill_test.cpp589 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 DditSeedBuilderTests.cpp60 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()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H A Dskia_image.cpp64 auto context = as_IB(skiaImage_.get())->directContext(); in PostSkImgToTargetThread()
136 auto skImage = SkImage::MakeFromYUVAPixmaps(grContext.get(), skYUVAPixmaps); in MakeFromYUVAPixmaps()
150 skiaImage_ = SkImage::MakeCrossContextFromPixmap(grContext_.get(), skBitmap.pixmap(), false); in BuildFromBitmap()
187 skiaImage_ = skiaImage->makeSubset(skiaRect, grContext_.get()); in BuildSubset()
206 skiaImage_ = SkImage::MakeTextureFromCompressed(grContext_.get(), in BuildFromCompressed()
249 skiaImage_ = SkImage::MakeFromTexture(grContext_.get(), backendTexture, in BuildFromTexture()
255 skiaImage_ = SkImage::MakeFromTexture(grContext_.get(), in BuildFromTexture()
263 skiaImage_ = SkImage::MakeFromTexture(grContext_.get(), SkiaTextureInfo::ConvertToGrBackendTexture(info), in BuildFromTexture()
299 skiaImage_ = SkImage::MakeFromTexture(grContext_.get(), grBackendTexture, in BuildFromSurface()
354 return skiaImage_->isValid(context->GetImpl<SkiaGPUContext>()->GetGrContext().get()); in IsValid()
[all...]

Completed in 23 milliseconds

1...<<41424344454647484950>>...624