Home
last modified time | relevance | path

Searched refs:combined (Results 1 – 25 of 855) sorted by relevance

12345678910>>...35

/third_party/flutter/skia/src/gpu/glsl/
DGrGLSLPrimitiveProcessor.cpp19 SkMatrix combined; in GetTransformMatrix() local
20 combined.setConcat(coordTransform.getMatrix(), localMatrix); in GetTransformMatrix()
22 combined.postIDiv(coordTransform.peekTexture()->width(), in GetTransformMatrix()
30 combined.set(SkMatrix::kMSkewY, in GetTransformMatrix()
31 combined[SkMatrix::kMPersp0] - combined[SkMatrix::kMSkewY]); in GetTransformMatrix()
32 combined.set(SkMatrix::kMScaleY, in GetTransformMatrix()
33 combined[SkMatrix::kMPersp1] - combined[SkMatrix::kMScaleY]); in GetTransformMatrix()
34 combined.set(SkMatrix::kMTransY, in GetTransformMatrix()
35 combined[SkMatrix::kMPersp2] - combined[SkMatrix::kMTransY]); in GetTransformMatrix()
40 combined.set(SkMatrix::kMSkewY, in GetTransformMatrix()
[all …]
/third_party/typescript/tests/baselines/reference/
DindirectTypeParameterReferences.types9 >flowtypes : <A>(b: B) => { combined: (fn: (combined: A & B) => void) => any; literal: (fn: (aPlusB…
10combined = (fn: (combined: Combined) => void) => null const literal = (fn: (aPlusB: A & B) => voi…
16 const combined = (fn: (combined: Combined) => void) => null
17 >combined : (fn: (combined: A & B) => void) => any
18 >(fn: (combined: Combined) => void) => null : (fn: (combined: A & B) => void) => any
19 >fn : (combined: A & B) => void
20 >combined : A & B
30 return {combined, literal}
31 >{combined, literal} : { combined: (fn: (combined: A & B) => void) => any; literal: (fn: (aPlusB: A…
32 >combined : (fn: (combined: A & B) => void) => any
[all …]
DindirectTypeParameterReferences.js9 const combined = (fn: (combined: Combined) => void) => null function
12 return {combined, literal}
15 const {combined, literal} = flowtypes<{a: string}>({b: 'b-value'})
22 combined(comb => {
36 var combined = function (fn) { return null; }; function
38 return { combined: combined, literal: literal };
40 var _a = flowtypes({ b: 'b-value' }), combined = _a.combined, literal = _a.literal;
45 combined(function (comb) {
DindirectTypeParameterReferences.symbols19 const combined = (fn: (combined: Combined) => void) => null
20 >combined : Symbol(combined, Decl(indirectTypeParameterReferences.ts, 7, 7))
22 >combined : Symbol(combined, Decl(indirectTypeParameterReferences.ts, 7, 25))
32 return {combined, literal}
33 >combined : Symbol(combined, Decl(indirectTypeParameterReferences.ts, 10, 10))
37 const {combined, literal} = flowtypes<{a: string}>({b: 'b-value'})
38 >combined : Symbol(combined, Decl(indirectTypeParameterReferences.ts, 13, 7))
60 combined(comb => {
61 >combined : Symbol(combined, Decl(indirectTypeParameterReferences.ts, 13, 7))
DgenericFunctionInference2.types12 type MyState = { combined: { foo: number } };
14 >combined : { foo: number; }
17 declare const foo: Reducer<MyState['combined']['foo']>;
22 >combineReducers({ combined: combineReducers({ foo }),}) : Reducer<{ combined: { foo: any; }; }>
24 >{ combined: combineReducers({ foo }),} : { combined: Reducer<{ foo: number; }>; }
26 combined: combineReducers({ foo }),
27 >combined : Reducer<{ foo: number; }>
36 >myReducer2 : Reducer<{ combined: { foo: any; }; }>
37 >combineReducers({ combined: combineReducers({ foo }),}) : Reducer<{ combined: { foo: any; }; }>
39 >{ combined: combineReducers({ foo }),} : { combined: Reducer<{ foo: number; }>; }
[all …]
DgenericFunctionInference2.js7 type MyState = { combined: { foo: number } }; property
11 combined: combineReducers({ foo }), property
15 combined: combineReducers({ foo }), property
37 combined: combineReducers({ foo: foo }) property
40 combined: combineReducers({ foo: foo }) property
DgenericFunctionInference2.symbols23 type MyState = { combined: { foo: number } };
25 >combined : Symbol(combined, Decl(genericFunctionInference2.ts, 5, 16))
28 declare const foo: Reducer<MyState['combined']['foo']>;
39 combined: combineReducers({ foo }),
40 >combined : Symbol(combined, Decl(genericFunctionInference2.ts, 8, 54))
50 combined: combineReducers({ foo }),
51 >combined : Symbol(combined, Decl(genericFunctionInference2.ts, 12, 36))
/third_party/node/deps/npm/node_modules/combined-stream/
DReadme.md1 # combined-stream
5combined-stream` works with streams version 1 only. There is ongoing effort to switch this library…
7 - [combined-stream2](https://www.npmjs.com/package/combined-stream2): A drop-in streams2-compatible…
14 npm install combined-stream
19 Here is a simple example that shows how you can use combined-stream to combine
23 var CombinedStream = require('combined-stream');
30 combinedStream.pipe(fs.createWriteStream('combined.txt'));
38 var CombinedStream = require('combined-stream');
45 combinedStream.pipe(fs.createWriteStream('combined.txt'));
54 var CombinedStream = require('combined-stream');
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DPipelineGL.cpp135 for (const CombinedSampler& combined : combinedSamplers[stage]) { in InitializeBase() local
136 combinedSamplersSet.insert(combined); in InitializeBase()
144 for (const auto& combined : combinedSamplersSet) { in InitializeBase() local
145 const std::string& name = combined.GetName(); in InitializeBase()
157 layout->GetBindGroupLayout(combined.textureLocation.group); in InitializeBase()
158 BindingIndex bindingIndex = bgl->GetBindingIndex(combined.textureLocation.binding); in InitializeBase()
160 GLuint textureIndex = indices[combined.textureLocation.group][bindingIndex]; in InitializeBase()
167 if (combined.useDummySampler) { in InitializeBase()
171 layout->GetBindGroupLayout(combined.samplerLocation.group); in InitializeBase()
173 bgl->GetBindingIndex(combined.samplerLocation.binding); in InitializeBase()
[all …]
/third_party/typescript/tests/cases/compiler/
DindirectTypeParameterReferences.ts8 const combined = (fn: (combined: Combined) => void) => null constant
11 return {combined, literal}
14 const {combined, literal} = flowtypes<{a: string}>({b: 'b-value'}) constant
21 combined(comb => {
/third_party/flutter/skia/modules/skparagraph/src/
DFontResolver.cpp239 Block combined; in findAllFontsForAllStyledBlocks() local
241 SkASSERT(combined.fRange.empty() || in findAllFontsForAllStyledBlocks()
242 combined.fRange.end == block.fRange.start); in findAllFontsForAllStyledBlocks()
244 if (!combined.fRange.empty() && in findAllFontsForAllStyledBlocks()
245 block.fStyle.matchOneAttribute(StyleType::kFont, combined.fStyle)) { in findAllFontsForAllStyledBlocks()
246 combined.add(block.fRange); in findAllFontsForAllStyledBlocks()
250 if (!combined.fRange.empty()) { in findAllFontsForAllStyledBlocks()
251 this->findAllFontsForStyledBlock(combined.fStyle, combined.fRange); in findAllFontsForAllStyledBlocks()
254 combined = block; in findAllFontsForAllStyledBlocks()
256 this->findAllFontsForStyledBlock(combined.fStyle, combined.fRange); in findAllFontsForAllStyledBlocks()
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dgen-indic-table.py69 combined = {} variable
72 if i == 2 and not u in combined:
74 if not u in combined:
75 combined[u] = list (defaults)
76 combined[u][i] = v
77 combined = {k:v for k,v in combined.items() if k in ALLOWED_SINGLES or v[2] in ALLOWED_BLOCKS} variable
78 data = combined
79 del combined
/third_party/mesa3d/src/gallium/drivers/lima/ir/
Dlima_nir_lower_txp.c121 nir_ssa_def *combined; in lima_nir_lower_txp_instr() local
124 combined = nir_swizzle(b, load_input, xyzw, 4); in lima_nir_lower_txp_instr()
128 combined = nir_swizzle(b, load_input, xyz, 3); in lima_nir_lower_txp_instr()
135 combined = nir_vec3(b, in lima_nir_lower_txp_instr()
142 combined = nir_vec3(b, in lima_nir_lower_txp_instr()
149 combined = nir_vec4(b, in lima_nir_lower_txp_instr()
160 nir_tex_instr_add_src(tex, nir_tex_src_backend1, nir_src_for_ssa(combined)); in lima_nir_lower_txp_instr()
/third_party/harfbuzz/src/
Dgen-indic-table.py74 combined = {} variable
77 if i == 2 and not u in combined:
79 if not u in combined:
80 combined[u] = list (defaults)
81 combined[u][i] = v
82 combined = {k:v for k,v in combined.items() if k in ALLOWED_SINGLES or v[2] in ALLOWED_BLOCKS} variable
83 data = combined
84 del combined
/third_party/skia/third_party/externals/harfbuzz/src/
Dgen-indic-table.py74 combined = {} variable
77 if i == 2 and not u in combined:
79 if not u in combined:
80 combined[u] = list (defaults)
81 combined[u][i] = v
82 combined = {k:v for k,v in combined.items() if k in ALLOWED_SINGLES or v[2] in ALLOWED_BLOCKS} variable
83 data = combined
84 del combined
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/opengl/
DPipelineGL.cpp152 for (const auto& combined : modules[stage]->GetCombinedSamplerInfo()) { in Initialize() local
153 combinedSamplersSet.insert(combined); in Initialize()
161 for (const auto& combined : combinedSamplersSet) { in Initialize() local
162 std::string name = combined.GetName(); in Initialize()
167 indices[combined.samplerLocation.group][combined.samplerLocation.binding]; in Initialize()
171 indices[combined.textureLocation.group][combined.textureLocation.binding]; in Initialize()
DShaderModuleGL.cpp102 for (const auto& combined : compiler.get_combined_image_samplers()) { in ShaderModule() local
107 compiler.get_decoration(combined.sampler_id, spv::DecorationDescriptorSet); in ShaderModule()
109 compiler.get_decoration(combined.sampler_id, spv::DecorationBinding); in ShaderModule()
111 compiler.get_decoration(combined.image_id, spv::DecorationDescriptorSet); in ShaderModule()
113 compiler.get_decoration(combined.image_id, spv::DecorationBinding); in ShaderModule()
114 compiler.set_name(combined.combined_id, info.GetName()); in ShaderModule()
/third_party/flutter/skia/src/gpu/gl/
DGrGLPathRendering.h102 SkMatrix combined; in getRTAdjustedGLMatrix() local
104 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1, in getRTAdjustedGLMatrix()
108 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1, in getRTAdjustedGLMatrix()
112 combined.preConcat(fViewMatrix); in getRTAdjustedGLMatrix()
113 GrGLSLGetMatrix<Size>(destMatrix, combined); in getRTAdjustedGLMatrix()
/third_party/vk-gl-cts/android/cts/master/vk-master-2019-03-01/
Dpipeline.txt21040 dEQP-VK.pipeline.image.suballocation.sampling_type.combined.view_type.1d.format.r4g4_unorm_pack8.co…
21041 dEQP-VK.pipeline.image.suballocation.sampling_type.combined.view_type.1d.format.r4g4_unorm_pack8.co…
21042 dEQP-VK.pipeline.image.suballocation.sampling_type.combined.view_type.1d.format.r4g4_unorm_pack8.co…
21043 dEQP-VK.pipeline.image.suballocation.sampling_type.combined.view_type.1d.format.r4g4_unorm_pack8.co…
21044 dEQP-VK.pipeline.image.suballocation.sampling_type.combined.view_type.1d.format.r4g4_unorm_pack8.co…
21045 dEQP-VK.pipeline.image.suballocation.sampling_type.combined.view_type.1d.format.r4g4_unorm_pack8.co…
21046 dEQP-VK.pipeline.image.suballocation.sampling_type.combined.view_type.1d.format.r4g4_unorm_pack8.co…
21047 dEQP-VK.pipeline.image.suballocation.sampling_type.combined.view_type.1d.format.r4g4_unorm_pack8.co…
21048 dEQP-VK.pipeline.image.suballocation.sampling_type.combined.view_type.1d.format.r4g4_unorm_pack8.co…
21049 dEQP-VK.pipeline.image.suballocation.sampling_type.combined.view_type.1d.format.r4g4_unorm_pack8.co…
[all …]
/third_party/glslang/Test/baseResults/
Dhlsl.samplegrad.basic.dx10.vert.out11 0:30 Construct combined texture-sampler ( temp sampler1D)
24 0:31 Construct combined texture-sampler ( temp isampler1D)
37 0:32 Construct combined texture-sampler ( temp usampler1D)
50 0:34 Construct combined texture-sampler ( temp sampler2D)
66 0:35 Construct combined texture-sampler ( temp isampler2D)
82 0:36 Construct combined texture-sampler ( temp usampler2D)
98 0:38 Construct combined texture-sampler ( temp sampler3D)
117 0:39 Construct combined texture-sampler ( temp isampler3D)
136 0:40 Construct combined texture-sampler ( temp usampler3D)
155 0:42 Construct combined texture-sampler ( temp samplerCube)
[all …]
Dhlsl.samplelevel.basic.dx10.vert.out11 0:30 Construct combined texture-sampler ( temp sampler1D)
22 0:31 Construct combined texture-sampler ( temp isampler1D)
33 0:32 Construct combined texture-sampler ( temp usampler1D)
44 0:34 Construct combined texture-sampler ( temp sampler2D)
56 0:35 Construct combined texture-sampler ( temp isampler2D)
68 0:36 Construct combined texture-sampler ( temp usampler2D)
80 0:38 Construct combined texture-sampler ( temp sampler3D)
93 0:39 Construct combined texture-sampler ( temp isampler3D)
106 0:40 Construct combined texture-sampler ( temp usampler3D)
119 0:42 Construct combined texture-sampler ( temp samplerCube)
[all …]
Dhlsl.samplebias.basic.dx10.frag.out13 0:31 Construct combined texture-sampler ( temp sampler1D)
24 0:32 Construct combined texture-sampler ( temp isampler1D)
35 0:33 Construct combined texture-sampler ( temp usampler1D)
46 0:35 Construct combined texture-sampler ( temp sampler2D)
58 0:36 Construct combined texture-sampler ( temp isampler2D)
70 0:37 Construct combined texture-sampler ( temp usampler2D)
82 0:39 Construct combined texture-sampler ( temp sampler3D)
95 0:40 Construct combined texture-sampler ( temp isampler3D)
108 0:41 Construct combined texture-sampler ( temp usampler3D)
121 0:43 Construct combined texture-sampler ( temp samplerCube)
[all …]
Dhlsl.samplelevel.basic.dx10.frag.out13 0:32 Construct combined texture-sampler ( temp sampler1D)
24 0:33 Construct combined texture-sampler ( temp isampler1D)
35 0:34 Construct combined texture-sampler ( temp usampler1D)
46 0:36 Construct combined texture-sampler ( temp sampler2D)
58 0:37 Construct combined texture-sampler ( temp isampler2D)
70 0:38 Construct combined texture-sampler ( temp usampler2D)
82 0:40 Construct combined texture-sampler ( temp sampler3D)
95 0:41 Construct combined texture-sampler ( temp isampler3D)
108 0:42 Construct combined texture-sampler ( temp usampler3D)
121 0:44 Construct combined texture-sampler ( temp samplerCube)
[all …]
Dhlsl.samplegrad.basic.dx10.frag.out13 0:31 Construct combined texture-sampler ( temp sampler1D)
26 0:32 Construct combined texture-sampler ( temp isampler1D)
39 0:33 Construct combined texture-sampler ( temp usampler1D)
52 0:35 Construct combined texture-sampler ( temp sampler2D)
68 0:36 Construct combined texture-sampler ( temp isampler2D)
84 0:37 Construct combined texture-sampler ( temp usampler2D)
100 0:39 Construct combined texture-sampler ( temp sampler3D)
119 0:40 Construct combined texture-sampler ( temp isampler3D)
138 0:41 Construct combined texture-sampler ( temp usampler3D)
157 0:43 Construct combined texture-sampler ( temp samplerCube)
[all …]
/third_party/gstreamer/gstplugins_base/ext/gl/
Dgstglstereosplit.c336 GstCaps *tmp, *combined; in stereosplit_set_output_caps() local
375 combined = gst_caps_intersect (tridcaps, tmp); in stereosplit_set_output_caps()
378 tridcaps = combined; in stereosplit_set_output_caps()
384 combined = gst_caps_intersect (tridcaps, tmp); in stereosplit_set_output_caps()
387 tridcaps = combined; in stereosplit_set_output_caps()
810 GstCaps *filter, *left, *right, *combined, *ret, *templ_caps; in stereosplit_sink_query() local
830 combined = gst_caps_intersect (left, right); in stereosplit_sink_query()
837 gst_caps_intersect_full (combined, templ_caps, in stereosplit_sink_query()
841 gst_caps_unref (combined); in stereosplit_sink_query()
842 combined = ret; in stereosplit_sink_query()
[all …]

12345678910>>...35