Home
last modified time | relevance | path

Searched refs:Instance (Results 1 – 25 of 269) sorted by relevance

1234567891011

/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dderive-debug-opaque-template-instantiation.rs9 pub struct Instance { struct
14 const UNINIT: ::std::mem::MaybeUninit<Instance> = in bindgen_test_layout_Instance() argument
18 ::std::mem::size_of::<Instance>(), in bindgen_test_layout_Instance()
20 concat!("Size of: ", stringify!(Instance)) in bindgen_test_layout_Instance()
23 ::std::mem::align_of::<Instance>(), in bindgen_test_layout_Instance()
25 concat!("Alignment of ", stringify!(Instance)) in bindgen_test_layout_Instance()
32 stringify!(Instance), in bindgen_test_layout_Instance()
38 impl Default for Instance { implementation
47 impl ::std::fmt::Debug for Instance { implementation
/third_party/skia/src/sksl/
DSkSLThreadContext.h56 static SkSL::Compiler& Compiler() { return *Instance().fCompiler; } in Compiler()
71 static SkSL::Program::Inputs& Inputs() { return Instance().fInputs; } in Inputs()
77 return Instance().fProgramElements; in ProgramElements()
81 return Instance().fSharedElements; in SharedElements()
92 static std::unique_ptr<Pool>& MemoryPool() { return Instance().fPool; } in MemoryPool()
97 static std::unique_ptr<ModifiersPool>& GetModifiersPool() { return Instance().fModifiersPool; } in GetModifiersPool()
102 static std::unique_ptr<ProgramConfig>& GetProgramConfig() { return Instance().fConfig; } in GetProgramConfig()
132 SkASSERTF(!Instance().fStack.empty(), "This feature requires a FragmentProcessor"); in CurrentProcessor()
133 return Instance().fStack.top().fProcessor; in CurrentProcessor()
140 SkASSERTF(!Instance().fStack.empty(), "This feature requires a FragmentProcessor"); in CurrentEmitArgs()
[all …]
/third_party/typescript/tests/baselines/reference/
DconstructorFunctions3.types2 function Instance() {
3 >Instance : typeof Instance
12 var i = new Instance();
13 >i : Instance
14 >new Instance() : Instance
15 >Instance : typeof Instance
17 Instance;
18 >Instance : typeof Instance
21 >i : Instance
DvueLikeDataAndPropsInference.types2 interface Instance {
7 type DataDef<Data, Props> = (this: Readonly<Props> & Instance) => Data
9 >this : Readonly<Props> & Instance
18 Data = ((this: Instance) => object),
19 >this : Instance
42 ThisType<Data & Readonly<Props> & Instance>
45 >test : { <Data, Props>(fn: ThisTypedOptions<Data, Props>): void; (fn: Options<(this: Instance) => …
50 >fn : Options<(this: Instance) => object, {}>
54 >test : { <Data, Props>(fn: ThisTypedOptions<Data, Props>): void; (fn: Options<(this: Instance) => …
55 …}} : { props: { foo: string; }; data(this: Readonly<{ foo: string; }> & Instance): { bar: boole…
[all …]
DvueLikeDataAndPropsInference2.types2 interface Instance {
7 type DataDef<Data, Props> = (this: Readonly<Props> & Instance) => Data
9 >this : Readonly<Props> & Instance
18 Data = object | ((this: Instance) => object),
19 >this : Instance
43 ThisType<Data & Readonly<Props> & Instance>
46 …fn: ThisTypedOptions<Data, Props>): void; (fn: Options<object | ((this: Instance) => object), Prop…
51 >fn : Options<object | ((this: Instance) => object), PropsDefinition<Record<string, any>>>
55 …fn: ThisTypedOptions<Data, Props>): void; (fn: Options<object | ((this: Instance) => object), Prop…
56 …}} : { props: { foo: string; }; data(this: Readonly<{ foo: string; }> & Instance): { bar: boole…
[all …]
DvueLikeDataAndPropsInference.symbols2 interface Instance {
3 >Instance : Symbol(Instance, Decl(vueLikeDataAndPropsInference.ts, 0, 0))
6 >_instanceBrand : Symbol(Instance._instanceBrand, Decl(vueLikeDataAndPropsInference.ts, 0, 20))
9 type DataDef<Data, Props> = (this: Readonly<Props> & Instance) => Data
16 >Instance : Symbol(Instance, Decl(vueLikeDataAndPropsInference.ts, 0, 0))
33 Data = ((this: Instance) => object),
36 >Instance : Symbol(Instance, Decl(vueLikeDataAndPropsInference.ts, 0, 0))
77 ThisType<Data & Readonly<Props> & Instance>
82 >Instance : Symbol(Instance, Decl(vueLikeDataAndPropsInference.ts, 0, 0))
DconstructorFunctions3.symbols2 function Instance() {
3 >Instance : Symbol(Instance, Decl(a.js, 0, 0))
6 >this.i : Symbol(Instance.i, Decl(a.js, 0, 21))
7 >this : Symbol(Instance, Decl(a.js, 0, 0))
8 >i : Symbol(Instance.i, Decl(a.js, 0, 21))
10 var i = new Instance();
12 >Instance : Symbol(Instance, Decl(a.js, 0, 0))
14 Instance;
15 >Instance : Symbol(Instance, Decl(a.js, 0, 0))
DvueLikeDataAndPropsInference2.symbols2 interface Instance {
3 >Instance : Symbol(Instance, Decl(vueLikeDataAndPropsInference2.ts, 0, 0))
6 >_instanceBrand : Symbol(Instance._instanceBrand, Decl(vueLikeDataAndPropsInference2.ts, 0, 20))
9 type DataDef<Data, Props> = (this: Readonly<Props> & Instance) => Data
16 >Instance : Symbol(Instance, Decl(vueLikeDataAndPropsInference2.ts, 0, 0))
33 Data = object | ((this: Instance) => object),
36 >Instance : Symbol(Instance, Decl(vueLikeDataAndPropsInference2.ts, 0, 0))
80 ThisType<Data & Readonly<Props> & Instance>
85 >Instance : Symbol(Instance, Decl(vueLikeDataAndPropsInference2.ts, 0, 0))
DvueLikeDataAndPropsInference.js2 interface Instance {
6 type DataDef<Data, Props> = (this: Readonly<Props> & Instance) => Data argument
13 Data = ((this: Instance) => object),
25 ThisType<Data & Readonly<Props> & Instance>
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DDawnNative.cpp148 Instance::Instance() : mImpl(InstanceBase::Create()) { in Instance() function in dawn_native::Instance
151 Instance::~Instance() { in ~Instance()
158 void Instance::DiscoverDefaultAdapters() { in DiscoverDefaultAdapters()
162 bool Instance::DiscoverAdapters(const AdapterDiscoveryOptionsBase* options) { in DiscoverAdapters()
166 std::vector<Adapter> Instance::GetAdapters() const { in GetAdapters()
175 const ToggleInfo* Instance::GetToggleInfo(const char* toggleName) { in GetToggleInfo()
179 void Instance::EnableBackendValidation(bool enableBackendValidation) { in EnableBackendValidation()
185 void Instance::SetBackendValidationLevel(BackendValidationLevel level) { in SetBackendValidationLevel()
189 void Instance::EnableBeginCaptureOnStartup(bool beginCaptureOnStartup) { in EnableBeginCaptureOnStartup()
193 void Instance::SetPlatform(dawn_platform::Platform* platform) { in SetPlatform()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
Dinlined_vector_test.cc869 using Instance = TypeParam; in TYPED_TEST_P() typedef
870 using InstanceVec = absl::InlinedVector<Instance, 8>; in TYPED_TEST_P()
880 for (int i = 0; i < l1; i++) a.push_back(Instance(i)); in TYPED_TEST_P()
881 for (int i = 0; i < l2; i++) b.push_back(Instance(100 + i)); in TYPED_TEST_P()
977 using Instance = TypeParam; in TYPED_TEST_P() typedef
978 using InstanceVec = absl::InlinedVector<Instance, 8>; in TYPED_TEST_P()
987 v.push_back(Instance(i)); in TYPED_TEST_P()
996 v.resize(len + 10, Instance(100)); in TYPED_TEST_P()
1009 v.resize(len, Instance(100)); in TYPED_TEST_P()
1045 using Instance = TypeParam; in TYPED_TEST_P() typedef
[all …]
/third_party/node/test/fixtures/wpt/wasm/jsapi/instance/
Dexports.any.js18 WebAssembly.Instance,
19 WebAssembly.Instance.prototype,
22 const desc = Object.getOwnPropertyDescriptor(WebAssembly.Instance.prototype, "exports");
37 const instance = new WebAssembly.Instance(module);
40 const desc = Object.getOwnPropertyDescriptor(WebAssembly.Instance.prototype, "exports");
51 const instance = new WebAssembly.Instance(module);
59 const instance = new WebAssembly.Instance(module);
Dconstructor.any.js12 assert_function_name(WebAssembly.Instance, "Instance", "WebAssembly.Instance");
16 assert_function_length(WebAssembly.Instance, 1, "WebAssembly.Instance");
20 assert_throws_js(TypeError, () => new WebAssembly.Instance());
36 assert_throws_js(TypeError, () => new WebAssembly.Instance(argument),
43 assert_throws_js(TypeError, () => WebAssembly.Instance(module));
50 const instance = new WebAssembly.Instance(module, ...args);
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkInstance.cpp21 Instance::Instance(const VkInstanceCreateInfo *pCreateInfo, void *mem, VkPhysicalDevice physicalDev… in Instance() function in vk::Instance
27 void Instance::destroy(const VkAllocationCallbacks *pAllocator) in destroy()
32 VkResult Instance::getPhysicalDevices(uint32_t *pPhysicalDeviceCount, VkPhysicalDevice *pPhysicalDe… in getPhysicalDevices()
51 VkResult Instance::getPhysicalDeviceGroups(uint32_t *pPhysicalDeviceGroupCount, in getPhysicalDeviceGroups()
73 void Instance::submitDebugUtilsMessage(VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, VkDe… in submitDebugUtilsMessage()
DVkInstance.hpp24 class Instance class
29Instance(const VkInstanceCreateInfo *pCreateInfo, void *mem, VkPhysicalDevice physicalDevice, Debu…
45 using DispatchableInstance = DispatchableObject<Instance, VkInstance>;
47 static inline Instance *Cast(VkInstance object) in Cast()
/third_party/alsa-lib/src/pcm/
Dladspa.h466 void (*connect_port)(LADSPA_Handle Instance,
489 void (*activate)(LADSPA_Handle Instance);
505 void (*run)(LADSPA_Handle Instance,
521 void (*run_adding)(LADSPA_Handle Instance,
533 void (*set_run_adding_gain)(LADSPA_Handle Instance,
549 void (*deactivate)(LADSPA_Handle Instance);
558 void (*cleanup)(LADSPA_Handle Instance);
/third_party/pulseaudio/src/modules/
Dladspa.h465 void (*connect_port)(LADSPA_Handle Instance,
488 void (*activate)(LADSPA_Handle Instance);
504 void (*run)(LADSPA_Handle Instance,
520 void (*run_adding)(LADSPA_Handle Instance,
532 void (*set_run_adding_gain)(LADSPA_Handle Instance,
548 void (*deactivate)(LADSPA_Handle Instance);
557 void (*cleanup)(LADSPA_Handle Instance);
/third_party/skia/src/gpu/ops/
DDrawAtlasPathOp.h26 , fHeadInstance(arena->make<Instance>(fillBounds, localToDevice, paint.getColor4f(), in DrawAtlasPathOp()
57 struct Instance { struct
58 Instance(const SkIRect& fillIBounds, const SkMatrix& m, in Instance() argument
71 AtlasInstancedHelper::Instance fAtlasInstance; argument
72 Instance* fNext = nullptr; argument
75 Instance* fHeadInstance;
76 Instance** fTailInstance;
/third_party/skia/third_party/externals/dawn/src/include/dawn_native/
DDawnNative.h160 class DAWN_NATIVE_EXPORT Instance {
162 Instance();
163 ~Instance();
165 Instance(const Instance& other) = delete;
166 Instance& operator=(const Instance& other) = delete;
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
DvktDrawTestCaseUtil.hpp54 template<typename Instance, typename Support = NoSupport0>
58 …xt& testCtx, const std::string& name, const std::string& desc, typename Instance::TestSpec testSpe… in InstanceFactory()
65 …xt& testCtx, const std::string& name, const std::string& desc, typename Instance::TestSpec testSpe… in InstanceFactory()
74 return new Instance(context, m_testSpec); in createInstance()
92 const typename Instance::TestSpec m_testSpec;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCLabel.h25 unsigned Instance; variable
30 MCLabel(unsigned instance) : Instance(instance) {} in MCLabel()
37 unsigned getInstance() const { return Instance; } in getInstance()
40 unsigned incInstance() { return ++Instance; } in incInstance()
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/
DWindow.hpp29 Window(vk::Instance instance, vk::Extent2D windowSize);
35 const vk::Instance instance;
44 Window(vk::Instance instance, vk::Extent2D windowSize);
53 const vk::Instance instance;
/third_party/typescript/tests/cases/compiler/
DvueLikeDataAndPropsInference.ts1 interface Instance { interface
5 type DataDef<Data, Props> = (this: Readonly<Props> & Instance) => Data
12 Data = ((this: Instance) => object),
24 ThisType<Data & Readonly<Props> & Instance>
DvueLikeDataAndPropsInference2.ts1 interface Instance { interface
5 type DataDef<Data, Props> = (this: Readonly<Props> & Instance) => Data
12 Data = object | ((this: Instance) => object),
25 ThisType<Data & Readonly<Props> & Instance>
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DAdapterDiscoveryTests.cpp51 dawn_native::Instance instance; in TEST()
71 dawn_native::Instance instance; in TEST()
89 dawn_native::Instance instance; in TEST()
117 dawn_native::Instance instance; in TEST()
137 dawn_native::Instance instance; in TEST()
169 dawn_native::Instance instance; in TEST()
210 dawn_native::Instance instance; in TEST()
233 dawn_native::Instance instance; in TEST()

1234567891011