Home
last modified time | relevance | path

Searched refs:parameterIndex (Results 1 – 25 of 58) sorted by relevance

123

/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DPipelineLayoutD3D12.cpp44 uint32_t parameterIndex = 0; in PipelineLayout() local
59 auto& rootParameter = rootParameters[parameterIndex]; in PipelineLayout()
61 rootParameter.DescriptorTable = rootParameterValues[parameterIndex].DescriptorTable; in PipelineLayout()
77 mCbvUavSrvRootParameterInfo[group] = parameterIndex++; in PipelineLayout()
82 mSamplerRootParameterInfo[group] = parameterIndex++; in PipelineLayout()
87 rootSignatureDescriptor.NumParameters = parameterIndex; in PipelineLayout()
/third_party/typescript/tests/baselines/reference/
DdecoratorOnClassConstructor3.types5 export function foo(target: Object, propertyKey: string | symbol, parameterIndex: number) { }
6 >foo : (target: Object, propertyKey: string | symbol, parameterIndex: number) => void
9 >parameterIndex : number
16 >foo : (target: Object, propertyKey: string | symbol, parameterIndex: number) => void
24 >foo : (target: Object, propertyKey: string | symbol, parameterIndex: number) => void
DdecoratorOnClassConstructorParameter1.types2 declare function dec(target: Function, propertyKey: string | symbol, parameterIndex: number): void;
3 >dec : (target: Function, propertyKey: string | symbol, parameterIndex: number) => void
6 >parameterIndex : number
12 >dec : (target: Function, propertyKey: string | symbol, parameterIndex: number) => void
DdecoratorOnClassConstructorParameter4.types2 declare function dec(target: Function, propertyKey: string | symbol, parameterIndex: number): void;
3 >dec : (target: Function, propertyKey: string | symbol, parameterIndex: number) => void
6 >parameterIndex : number
13 >dec : (target: Function, propertyKey: string | symbol, parameterIndex: number) => void
DdecoratorOnClassMethodParameter1.types2 declare function dec(target: Object, propertyKey: string | symbol, parameterIndex: number): void;
3 >dec : (target: Object, propertyKey: string | symbol, parameterIndex: number) => void
6 >parameterIndex : number
13 >dec : (target: Object, propertyKey: string | symbol, parameterIndex: number) => void
DdecoratorOnClassMethodParameter1.es6.types2 declare function dec(target: Object, propertyKey: string | symbol, parameterIndex: number): void;
3 >dec : (target: Object, propertyKey: string | symbol, parameterIndex: number) => void
6 >parameterIndex : number
11 >dec : (target: Object, propertyKey: string | symbol, parameterIndex: number) => void
DdecoratorOnClassMethodThisParameter.types2 declare function dec(target: Object, propertyKey: string | symbol, parameterIndex: number): void;
3 >dec : (target: Object, propertyKey: string | symbol, parameterIndex: number) => void
6 >parameterIndex : number
13 >dec : (target: Object, propertyKey: string | symbol, parameterIndex: number) => void
DdecoratorOnClassMethodParameter2.types2 declare function dec(target: Object, propertyKey: string | symbol, parameterIndex: number): void;
3 >dec : (target: Object, propertyKey: string | symbol, parameterIndex: number) => void
6 >parameterIndex : number
14 >dec : (target: Object, propertyKey: string | symbol, parameterIndex: number) => void
DdecoratorOnClassConstructor2.types5 export function foo(target: Object, propertyKey: string | symbol, parameterIndex: number) { }
6 >foo : (target: Object, propertyKey: string | symbol, parameterIndex: number) => void
9 >parameterIndex : number
DdecoratorOnClassConstructorParameter1.symbols2 declare function dec(target: Function, propertyKey: string | symbol, parameterIndex: number): void;
7 >parameterIndex : Symbol(parameterIndex, Decl(decoratorOnClassConstructorParameter1.ts, 0, 68))
DdecoratorOnClassMethodParameter1.symbols2 declare function dec(target: Object, propertyKey: string | symbol, parameterIndex: number): void;
7 >parameterIndex : Symbol(parameterIndex, Decl(decoratorOnClassMethodParameter1.ts, 0, 66))
DdecoratorOnClassConstructorParameter4.symbols2 declare function dec(target: Function, propertyKey: string | symbol, parameterIndex: number): void;
7 >parameterIndex : Symbol(parameterIndex, Decl(decoratorOnClassConstructorParameter4.ts, 0, 68))
DdecoratorOnClassMethodParameter1.es6.symbols2 declare function dec(target: Object, propertyKey: string | symbol, parameterIndex: number): void;
7 >parameterIndex : Symbol(parameterIndex, Decl(decoratorOnClassMethodParameter1.es6.ts, 0, 66))
DdecoratorOnClassMethodThisParameter.symbols2 declare function dec(target: Object, propertyKey: string | symbol, parameterIndex: number): void;
7 >parameterIndex : Symbol(parameterIndex, Decl(decoratorOnClassMethodThisParameter.ts, 0, 66))
DdecoratorOnClassMethodParameter2.symbols2 declare function dec(target: Object, propertyKey: string | symbol, parameterIndex: number): void;
7 >parameterIndex : Symbol(parameterIndex, Decl(decoratorOnClassMethodParameter2.ts, 0, 66))
DdecoratorOnClassConstructor2.symbols5 export function foo(target: Object, propertyKey: string | symbol, parameterIndex: number) { }
10 >parameterIndex : Symbol(parameterIndex, Decl(0.ts, 1, 65))
DdecoratorOnClassConstructor3.symbols5 export function foo(target: Object, propertyKey: string | symbol, parameterIndex: number) { }
10 >parameterIndex : Symbol(parameterIndex, Decl(0.ts, 1, 65))
DdecoratorOnClassConstructor2.js5 export function foo(target: Object, propertyKey: string | symbol, parameterIndex: number) { }
26 function foo(target, propertyKey, parameterIndex) { }
DdecoratorOnClassConstructor3.js5 export function foo(target: Object, propertyKey: string | symbol, parameterIndex: number) { }
28 function foo(target, propertyKey, parameterIndex) { }
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DStructureHLSL.cpp342 for (size_t parameterIndex = 0u; parameterIndex < ctorParameters.size(); ++parameterIndex) in addStructConstructor() local
344 *constructor += "x" + str(parameterIndex); in addStructConstructor()
345 if (parameterIndex < ctorParameters.size() - 1u) in addStructConstructor()
441 size_t parameterIndex = 0; in addBuiltInConstructor() local
445 const TType &parameter = ctorParameters[parameterIndex]; in addBuiltInConstructor()
447 bool moreParameters = parameterIndex + 1 < ctorParameters.size(); in addBuiltInConstructor()
449 constructor += "x" + str(parameterIndex); in addBuiltInConstructor()
519 constructor += ", x" + str(parameterIndex); in addBuiltInConstructor()
533 parameterIndex++; in addBuiltInConstructor()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DStructureHLSL.cpp418 for (size_t parameterIndex = 0u; parameterIndex < ctorParameters.size(); ++parameterIndex) in addStructConstructor() local
420 *constructor += "x" + str(parameterIndex); in addStructConstructor()
421 if (parameterIndex < ctorParameters.size() - 1u) in addStructConstructor()
517 size_t parameterIndex = 0; in addBuiltInConstructor() local
521 const TType &parameter = ctorParameters[parameterIndex]; in addBuiltInConstructor()
523 bool moreParameters = parameterIndex + 1 < ctorParameters.size(); in addBuiltInConstructor()
525 constructor += "x" + str(parameterIndex); in addBuiltInConstructor()
595 constructor += ", x" + str(parameterIndex); in addBuiltInConstructor()
609 parameterIndex++; in addBuiltInConstructor()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmNonSemanticInfoTests.cpp172 for (deUint32 parameterIndex = 0; parameterIndex < 100; parameterIndex++) in initPrograms() local
174 std::string iStr = std::to_string(parameterIndex); in initPrograms()
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DCommandBufferD3D12.cpp434 uint32_t parameterIndex = in ApplyBindGroup() local
449 commandList->SetComputeRootConstantBufferView(parameterIndex, in ApplyBindGroup()
452 commandList->SetGraphicsRootConstantBufferView(parameterIndex, in ApplyBindGroup()
459 commandList->SetComputeRootUnorderedAccessView(parameterIndex, in ApplyBindGroup()
462 commandList->SetGraphicsRootUnorderedAccessView(parameterIndex, in ApplyBindGroup()
468 commandList->SetComputeRootShaderResourceView(parameterIndex, in ApplyBindGroup()
471 commandList->SetGraphicsRootShaderResourceView(parameterIndex, in ApplyBindGroup()
492 uint32_t parameterIndex = pipelineLayout->GetCbvUavSrvRootParameterIndex(index); in ApplyBindGroup() local
495 commandList->SetComputeRootDescriptorTable(parameterIndex, baseDescriptor); in ApplyBindGroup()
497 commandList->SetGraphicsRootDescriptorTable(parameterIndex, baseDescriptor); in ApplyBindGroup()
[all …]
/third_party/typescript/tests/cases/conformance/es6/decorators/class/method/parameter/
DdecoratorOnClassMethodParameter1.es6.ts4 declare function dec(target: Object, propertyKey: string | symbol, parameterIndex: number): void;
/third_party/typescript/tests/cases/conformance/decorators/class/constructor/parameter/
DdecoratorOnClassConstructorParameter4.ts3 declare function dec(target: Function, propertyKey: string | symbol, parameterIndex: number): void;

123