Home
last modified time | relevance | path

Searched refs:get (Results 3351 - 3375 of 10762) sorted by relevance

1...<<131132133134135136137138139140>>...431

/third_party/skia/src/sksl/ir/
H A DSkSLChildCall.cpp46 const Type* half4 = context.fTypes.fHalf4.get(); in call_signature_is_valid()
47 const Type* float2 = context.fTypes.fFloat2.get(); in call_signature_is_valid()
/third_party/skia/src/utils/
H A DSkTextUtils.cpp31 font.getPos(ag.glyphs(), ag.count(), pos.get(), {x, y}); in GetPath()
36 } rec = { path, pos.get() }; in GetPath()
/third_party/skia/tests/
H A DPDFTaggedLinkTest.cpp52 metadata.fStructureElementTreeRoot = root.get(); in DEF_TEST()
71 SkAnnotateRectWithURL(canvas, linkRect, url.get()); in DEF_TEST()
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/dec/
H A DBrotliInputStream.java68 return decoder.buffer.get() & 0xFF; in read()
87 decoder.buffer.get(b, off, limit); in read()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DEscapeEnumerator.cpp26 FunctionType::get(Type::getInt32Ty(C), true)); in getDefaultPersonalityFn()
69 Type *ExnTy = StructType::get(Type::getInt8PtrTy(C), Type::getInt32Ty(C)); in Next()
H A DNameAnonGlobals.cpp34 std::string &get() { in get() function in __anon25229::ModuleHasher
72 GV.setName(Twine("anon.") + ModuleHash.get() + "." + Twine(count++)); in nameUnamedGlobals()
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/
H A Dblockingcall.h36 auto scheduler = Scheduler::get(); in call()
61 auto scheduler = Scheduler::get(); in call()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/
H A DARCExpandPseudos.cpp65 BuildMI(*SI.getParent(), SI, SI.getDebugLoc(), TII->get(AddOpc), AddrReg) in ExpandStore()
69 TII->get(getMappedOp(SI.getOpcode()))) in ExpandStore()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
H A DNVPTXFrameLowering.cpp56 MF.getSubtarget().getInstrInfo()->get(CvtaLocalOpcode), in emitPrologue()
60 BuildMI(MBB, MI, dl, MF.getSubtarget().getInstrInfo()->get(MovDepotOpcode), in emitPrologue()
H A DNVPTXLowerAlloca.cpp74 auto LocalAddrTy = PointerType::get(ETy, ADDRESS_SPACE_LOCAL); in runOnFunction()
76 auto GenericAddrTy = PointerType::get(ETy, ADDRESS_SPACE_GENERIC); in runOnFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86FixupSetCC.cpp109 BuildMI(MBB, FlagsDefMI, MI.getDebugLoc(), TII->get(X86::MOV32r0), in runOnMachineFunction()
115 TII->get(X86::INSERT_SUBREG), InsertReg) in runOnMachineFunction()
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dresbund.h93 * @param locale This is the locale this resource bundle is for. To get resources
376 get(int32_t index,
401 get(const char* key,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DIteratedDominanceFrontier.h31 ChildrenTy get(const NodeRef &N);
66 ChildrenGetterTy<BasicBlock, IsPostDom>::get(const NodeRef &N) { in get() function in llvm::IDFCalculatorDetail::ChildrenGetterTy
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/
H A DGISelKnownBits.h89 /// KnownBitsInfo &Info = getAnalysis<GISelKnownBitsInfoAnalysis>().get(MF);
104 GISelKnownBits &get(MachineFunction &MF) { in get() function in llvm::GISelKnownBitsAnalysis
107 return *Info.get(); in get()
/third_party/typescript/tests/baselines/reference/
H A DsuperElementAccess.js8 get value() {return 0 }
63 get: function () { return 0; },
H A DclassWithStaticMembers.js4 static get x() { return 1; }
45 get: function () { return 1; },
H A DconstDeclarations-validContexts.js104 get v() {
209 get v() {
H A DdecoratorOnClassProperty13.js18 return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
31 get prop() { return __classPrivateFieldGet(this, _C_prop_accessor_storage, "f"); }
H A DmetadataReferencedWithinFilteredUnion.js14 get prop(): Class1 | undefined {
49 get: function () {
H A DmoduleSameValueDuplicateExportedBindings2.js31 if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
32 desc = { enumerable: true, get: function() { return m[k]; } };
48 if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
49 desc = { enumerable: true, get: function() { return m[k]; } };
H A DprivateNameNestedMethodAccess.js5 get #baz() { return 42; }
31 return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
H A DprivateNamesUseBeforeDef.js14 get #bar() { return 3 };
27 return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
H A DexportsAndImports4.js59 Object.defineProperty(exports, "d", { enumerable: true, get: function () { return t1_2.default; } });
68 Object.defineProperty(exports, "f2", { enumerable: true, get: function () { return t1_4.default; } });
H A DletDeclarations-validContexts.js104 get v() {
229 get v() {
H A DaliasUsageInAccessorsOfClass.js22 get A() {
76 get: function () {

Completed in 16 milliseconds

1...<<131132133134135136137138139140>>...431