Home
last modified time | relevance | path

Searched refs:get (Results 1726 - 1750 of 9743) sorted by relevance

1...<<61626364656667686970>>...390

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
H A DTapiUniversal.cpp25 auto Result = TextAPIReader::get(Source); in TapiUniversal()
31 ParsedFile = std::move(Result.get()); in TapiUniversal()
43 *Parent->ParsedFile.get(), in getAsObjectFile()
/third_party/vk-gl-cts/external/amber/src/src/vulkan/
H A Dpipeline_test.cc34 Result r = pipeline.AddBufferDescriptor(cmd.get()); in TEST_F()
45 Result r = pipeline.AddBufferDescriptor(cmd.get()); in TEST_F()
48 r = pipeline.AddBufferDescriptor(cmd.get()); in TEST_F()
/third_party/skia/third_party/externals/dawn/src/dawn_wire/
H A DChunkedCommandHandler.cpp35 memcpy(mChunkedCommandData.get() + mChunkedCommandPutOffset, in HandleCommands()
47 if (HandleCommandsImpl(chunkedCommandData.get(), mChunkedCommandPutOffset) == in HandleCommands()
72 memcpy(mChunkedCommandData.get(), const_cast<const char*>(commands), initialSize); in BeginChunkedCommandData()
/third_party/typescript/tests/baselines/reference/
H A DsymbolDeclarationEmit12.js10 get [Symbol.toPrimitive]() { return undefined; }
23 get [Symbol.toPrimitive]() { return undefined; }
38 get [Symbol.toPrimitive](): any;
H A DnodeModulesAllowJsImportHelpersCollisions3(module=node16).js39 Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(fs_1).default; } });
41 Object.defineProperty(exports, "foo", { enumerable: true, get: function () { return __importDefault(fs_2).default; } });
43 Object.defineProperty(exports, "baz", { enumerable: true, get: function () { return fs_3.bar; } });
H A DnodeModulesAllowJsImportHelpersCollisions3(module=nodenext).js39 Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(fs_1).default; } });
41 Object.defineProperty(exports, "foo", { enumerable: true, get: function () { return __importDefault(fs_2).default; } });
43 Object.defineProperty(exports, "baz", { enumerable: true, get: function () { return fs_3.bar; } });
H A DprivateNamesIncompatibleModifiersJs.js36 get #aProp() { return 1; }
45 get #bProp() { return 1; }
54 get #cProp() { return 1; }
H A DindexedAccessCanBeHighOrder.js2 declare function get<U, Y extends keyof U>(x: U, y: Y): U[Y];
6 const item = get(a, b);
16 var item = get(a, b);
H A DjsDeclarationsClassAccessor.js30 get type() {
57 get type() {
81 get type(): string;
H A DjsDeclarationsClassStatic.js3 static get OPTIONS() {
31 get: function () {
58 static get OPTIONS(): number;
/third_party/skia/docs/examples/
H A Dskpaint_skia.cpp28 canvas->drawTextBlob(blob1.get(), 20.0f, 64.0f, paint1); in REG_FIDDLE()
29 canvas->drawTextBlob(blob1.get(), 20.0f, 144.0f, paint2); in REG_FIDDLE()
30 canvas->drawTextBlob(blob2.get(), 20.0f, 224.0f, paint3); in REG_FIDDLE()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp393 ArrayType *Int8Arr0Ty = ArrayType::get(Type::getInt8Ty(M.getContext()), 0);
584 B.CreateAnd(BitOffset, ConstantInt::get(BitsType, BitWidth - 1)); in createMaskedBitTest()
585 Value *BitMask = B.CreateShl(ConstantInt::get(BitsType, 1), BitIndex); in createMaskedBitTest()
587 return B.CreateICmpNE(MaskedBits, ConstantInt::get(BitsType, 0)); in createMaskedBitTest()
592 // get initialized, we RAUW and erase them later in allocateByteArrays() once in createByteArray()
625 ConstantExpr::getIntToPtr(ConstantInt::get(Int8Ty, Mask), Int8PtrTy)); in allocateByteArrays()
631 Constant *ByteArrayConst = ConstantDataArray::get(M.getContext(), BAB.Bytes); in allocateByteArrays()
639 Constant *Idxs[] = {ConstantInt::get(IntPtrTy, 0), in allocateByteArrays()
640 ConstantInt::get(IntPtrTy, ByteArrayOffsets[I])}; in allocateByteArrays()
684 return B.CreateICmpNE(ByteAndMask, ConstantInt::get(Int8T in createBitSetTest()
[all...]
H A DDeadArgumentElimination.cpp154 // If we get here, there are no calls to llvm.vastart in the function body, in DeleteDeadVarargs()
162 FunctionType *NFTy = FunctionType::get(FTy->getReturnType(), in DeleteDeadVarargs()
192 PAL = AttributeList::get(Fn.getContext(), PAL.getFnAttributes(), in DeleteDeadVarargs()
296 Arg.replaceAllUsesWith(UndefValue::get(Arg.getType())); in RemoveDeadArgumentsFromCallers()
316 CS.setArgument(ArgNo, UndefValue::get(Arg->getType())); in RemoveDeadArgumentsFromCallers()
818 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked()); in RemoveDeadStuffFromFunction()
821 NRetTy = ArrayType::get(RetTypes[0], RetTypes.size()); in RemoveDeadStuffFromFunction()
847 AttributeSet RetAttrs = AttributeSet::get(F->getContext(), RAttrs); in RemoveDeadStuffFromFunction()
856 AttributeList::get(F->getContext(), FnAttrs, RetAttrs, ArgAttrVec); in RemoveDeadStuffFromFunction()
859 FunctionType *NFTy = FunctionType::get(NRetT in RemoveDeadStuffFromFunction()
[all...]
/third_party/python/Lib/test/
H A Dmapping_tests.py84 #get
87 self.assertEqual(d.get(key, knownvalue), value)
88 self.assertEqual(d.get(knownkey, knownvalue), knownvalue)
272 self.assertTrue(d.get(list(self.other.keys())[0]) is None)
273 self.assertEqual(d.get(list(self.other.keys())[0], 3), 3)
275 self.assertTrue(d.get(list(self.other.keys())[0]) is None)
276 self.assertEqual(d.get(list(self.other.keys())[0], 3), 3)
277 self.assertEqual(d.get(list(self.inmapping.keys())[0]),
279 self.assertEqual(d.get(list(self.inmapping.keys())[0], 3),
281 self.assertRaises(TypeError, d.get)
[all...]
/third_party/skia/tests/
H A DUtilsTest.cpp25 int get() const { return fN; } in get() function in RefClass
38 REPORTER_ASSERT(reporter, &obj == tmp.get()); in test_autounref()
44 REPORTER_ASSERT(reporter, nullptr == tmp.get()); in test_autounref()
365 REPORTER_ASSERT(reporter, std::get<0>(t) == 1); in DEF_TEST()
366 REPORTER_ASSERT(reporter, std::get<1>(t) == 10.f); in DEF_TEST()
367 REPORTER_ASSERT(reporter, std::get<2>(t) == 20); in DEF_TEST()
368 REPORTER_ASSERT(reporter, std::get<3>(t) == 100); in DEF_TEST()
369 REPORTER_ASSERT(reporter, std::get<4>(t) == 20); in DEF_TEST()
375 REPORTER_ASSERT(reporter, std::get<0>(t) == 4); in DEF_TEST()
376 REPORTER_ASSERT(reporter, std::get< in DEF_TEST()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
H A DMips16ISelLowering.cpp202 // TBD: figure out a way to get this or remove the instruction in EmitInstrWithCustomInserter()
210 // TBD: figure out a way to get this or remove the instruction in EmitInstrWithCustomInserter()
543 BuildMI(BB, DL, TII->get(Opc)) in emitSel16()
560 BuildMI(*BB, BB->begin(), DL, TII->get(Mips::PHI), MI.getOperand(0).getReg()) in emitSel16()
606 BuildMI(BB, DL, TII->get(Opc2)) in emitSelT16()
609 BuildMI(BB, DL, TII->get(Opc1)).addMBB(sinkMBB); in emitSelT16()
624 BuildMI(*BB, BB->begin(), DL, TII->get(Mips::PHI), MI.getOperand(0).getReg()) in emitSelT16()
672 BuildMI(BB, DL, TII->get(Opc2)) in emitSeliT16()
675 BuildMI(BB, DL, TII->get(Opc1)).addMBB(sinkMBB); in emitSeliT16()
690 BuildMI(*BB, BB->begin(), DL, TII->get(Mip in emitSeliT16()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp132 const MCInstrDesc &II = TII->get(User->getMachineOpcode()); in EmitCopyFromReg()
177 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), in EmitCopyFromReg()
277 TII->get(TargetOpcode::IMPLICIT_DEF), VReg); in getVR()
324 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg); in AddRegisterOperand()
391 TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg);
468 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
525 TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg);
542 TII->get(TargetOpcode::COPY), VRBase);
579 BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc), VRBase);
617 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcod
[all...]
/third_party/skia/src/utils/mac/
H A DSkCTFont.cpp226 colorspace.get(), kBitmapInfoRGB)); in SkCTFontGetSmoothBehavior()
229 colorspace.get(), kBitmapInfoRGB)); in SkCTFontGetSmoothBehavior()
235 CTFontManagerCreateFontDescriptorFromData(data.get())); in SkCTFontGetSmoothBehavior()
236 SkUniqueCFRef<CTFontRef> ctFont(CTFontCreateWithFontDescriptor(desc.get(), 16, nullptr)); in SkCTFontGetSmoothBehavior()
239 CGContextSetShouldSmoothFonts(noSmoothContext.get(), false); in SkCTFontGetSmoothBehavior()
240 CGContextSetShouldAntialias(noSmoothContext.get(), true); in SkCTFontGetSmoothBehavior()
241 CGContextSetTextDrawingMode(noSmoothContext.get(), kCGTextFill); in SkCTFontGetSmoothBehavior()
242 CGContextSetGrayFillColor(noSmoothContext.get(), 1, 1); in SkCTFontGetSmoothBehavior()
244 CGContextSetShouldSmoothFonts(smoothContext.get(), true); in SkCTFontGetSmoothBehavior()
245 CGContextSetShouldAntialias(smoothContext.get(), tru in SkCTFontGetSmoothBehavior()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DRBBIDataWrapper.java71 static RBBIStateTable get(ByteBuffer bytes, int length) throws IOException { in get() method in RBBIDataWrapper.RBBIStateTable
89 byte b = bytes.get(); in get()
292 public static RBBIDataWrapper get(ByteBuffer bytes) throws IOException { in get() method in RBBIDataWrapper
300 This.fHeader.fFormatVersion[0] = bytes.get(); in get()
301 This.fHeader.fFormatVersion[1] = bytes.get(); in get()
302 This.fHeader.fFormatVersion[2] = bytes.get(); in get()
303 This.fHeader.fFormatVersion[3] = bytes.get(); in get()
339 This.fFTable = RBBIStateTable.get(bytes, This.fHeader.fFTableLen); in get()
351 This.fRTable = RBBIStateTable.get(bytes, This.fHeader.fRTableLen); in get()
358 // The seek to the start of the next item following the TRIE will get u in get()
[all...]
H A DICUService.java33 * id (for example, a locale string) to the service, and get back an
67 * <p>ICUService provides API to get the list of ids publicly
86 * of the objects returned from get, to limit the factories that can
232 * passing itself as the factory to get the object that
346 * Convenience override for get(String, String[]). This uses
349 public Object get(String descriptor) { in get() method in ICUService
354 * Convenience override for get(Key, String[]). This uses
357 public Object get(String descriptor, String[] actualReturn) { in get() method in ICUService
365 * Convenience override for get(Key, String[]).
427 if (factory == factories.get( in getKey()
741 SortedMap<String, String> get(ULocale loc, Comparator<Object> comp) { get() method in ICUService.LocaleRef
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/breakiter/
H A DLSTMBreakEngine.java80 int embeddings = rb.get("embeddings").getInt(); in LSTMData()
81 int hunits = rb.get("hunits").getInt(); in LSTMData()
83 this.fName = rb.get("model").getString(); in LSTMData()
84 String typeString = rb.get("type").getString(); in LSTMData()
90 String[] dict = rb.get("dict").getStringArray(); in LSTMData()
91 int[] data = rb.get("data").getIntVector(); in LSTMData()
156 Integer res = fDict.get(token); in getIndex()
375 this.fData.fEmbedding[indicies.get(i)], in divideUpDictionaryRange()
388 this.fData.fEmbedding[indicies.get(i)], in divideUpDictionaryRange()
408 foundBreaks.push(offsets.get( in divideUpDictionaryRange()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DTimeUnitFormat.java260 Map<String, Object[]> countToPattern = timeUnitToCountToPatterns.get(timeUnit); in parseObject()
401 Map<String, Object[]> countToPatterns = timeUnitToCountToPatterns.get(timeUnit); in put()
416 Object[] pair = countToPatterns.get(pluralCount); in put()
466 // get all the patterns for each plural rule in this locale. in setup()
468 Map<String, Object[]> countToPatterns = timeUnitToCountToPatterns.get(timeUnit); in setup()
474 if (countToPatterns.get(pluralCount) == null || countToPatterns.get(pluralCount)[style] == null) { in setup()
503 Object[] pair = countToPatterns.get(srcPluralCount); in searchInTree()
518 if (countToPatterns.get(srcPluralCount) != null in searchInTree()
519 && countToPatterns.get(srcPluralCoun in searchInTree()
[all...]
/third_party/icu/icu4c/source/test/perf/unisetperf/
H A Dunisetperf.cpp175 static UPerfFunction* get(const UnicodeSetPerformanceTest &testcase) { in get() function in Contains
237 static UPerfFunction* get(const UnicodeSetPerformanceTest &testcase) { in get() function in SpanUTF16
288 static UPerfFunction* get(const UnicodeSetPerformanceTest &testcase) { in get() function in SpanBackUTF16
338 static UPerfFunction* get(const UnicodeSetPerformanceTest &testcase) { in get() function in SpanUTF8
384 static UPerfFunction* get(const UnicodeSetPerformanceTest &testcase) { in get() function in SpanBackUTF8
412 case 0: name = "Contains"; if (exec) return Contains::get(*this); break; in runIndexedTest()
413 case 1: name = "SpanUTF16"; if (exec) return SpanUTF16::get(*this); break; in runIndexedTest()
414 case 2: name = "SpanBackUTF16";if (exec) return SpanBackUTF16::get(*this); break; in runIndexedTest()
415 case 3: name = "SpanUTF8"; if (exec) return SpanUTF8::get(*this); break; in runIndexedTest()
416 case 4: name = "SpanBackUTF8"; if (exec) return SpanBackUTF8::get(*thi in runIndexedTest()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DTestUScript.java103 !scripts.get(UScript.UNKNOWN)) { in TestGetScriptExtensions()
107 !scripts.get(UScript.UNKNOWN)) { in TestGetScriptExtensions()
113 !scripts.get(UScript.ARABIC)) { in TestGetScriptExtensions()
117 !scripts.get(UScript.ARABIC) || !scripts.get(UScript.SYRIAC) || !scripts.get(UScript.MANDAIC) in TestGetScriptExtensions()
122 !scripts.get(UScript.ARABIC) || !scripts.get(UScript.THAANA)) { in TestGetScriptExtensions()
126 !scripts.get(UScript.BOPOMOFO) || !scripts.get(UScrip in TestGetScriptExtensions()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
H A DJapaneseTest.java172 int gotYear = cal.get(Calendar.YEAR); in Test3860()
173 int gotEra = cal.get(Calendar.ERA); in Test3860()
205 gotYear = cal2.get(Calendar.YEAR); in Test3860()
206 gotEra = cal2.get(Calendar.ERA); in Test3860()
346 int actualVal = c.get(fieldNum); in checkExpected()
422 int nowYear = c.get(Calendar.YEAR); in TestJapaneseYear3282()
433 int thenYear = c.get(Calendar.YEAR); in TestJapaneseYear3282()
464 final int sEra = jCal.get(Calendar.ERA); // Don't assume era number for Showa in TestJpnCalAddSetNextEra()
470 int eYear = jCal.get(Calendar.EXTENDED_YEAR); in TestJpnCalAddSetNextEra()
472 errln("ERROR: set " + iEra + ", expected start year " + startYears[iEra] + " but get " in TestJpnCalAddSetNextEra()
[all...]

Completed in 21 milliseconds

1...<<61626364656667686970>>...390