| /third_party/typescript/tests/baselines/reference/ |
| D | functionType.symbols | 1 === tests/cases/compiler/functionType.ts === 3 >salt : Symbol(salt, Decl(functionType.ts, 0, 0)) 7 >salt : Symbol(salt, Decl(functionType.ts, 0, 0))
|
| D | functionType.types | 1 === tests/cases/compiler/functionType.ts ===
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
| D | vktApiVersionCheck.cpp | 420 const deUint32 functionType = testsArr[ndx].second; in mixupAddressProcCheck() local 421 if (functionType == FUNCTIONORIGIN_INSTANCE) in mixupAddressProcCheck() 426 else if (functionType == FUNCTIONORIGIN_DEVICE) in mixupAddressProcCheck() 437 const deUint32 functionType = testsArr[ndx].second; in specialCasesCheck() local 438 if (functionType == FUNCTIONORIGIN_PLATFORM) in specialCasesCheck() 440 else if (functionType == FUNCTIONORIGIN_INSTANCE) in specialCasesCheck() 442 else if (functionType == FUNCTIONORIGIN_DEVICE) in specialCasesCheck() 456 const deUint32 functionType = testsArr[ndx].second; in regularCheck() local 457 if (functionType == FUNCTIONORIGIN_PLATFORM) in regularCheck() 459 else if (functionType == FUNCTIONORIGIN_INSTANCE) in regularCheck() [all …]
|
| /third_party/glslang/SPIRV/ |
| D | spvIR.h | 327 Function(Id id, Id resultType, Id functionType, Id firstParam, Module& parent); 462 __inline Function::Function(Id id, Id resultType, Id functionType, Id firstParamId, Module& parent) in Function() argument 468 functionInstruction.addIdOperand(functionType); in Function() 473 Instruction* typeInst = parent.getInstruction(functionType); in Function()
|
| /third_party/flutter/skia/third_party/externals/spirv-tools/source/ |
| D | validate_id.cpp | 1495 auto functionType = module_.FindDef(inst->words[functionTypeIndex]); in isValid() local 1496 if (!functionType || SpvOpTypeFunction != functionType->opcode()) { in isValid() 1502 auto returnType = module_.FindDef(functionType->words()[2]); in isValid() 1530 auto functionType = module_.FindDef(inst->words[4]); in isValid() local 1531 assert(functionType); in isValid() 1532 if (paramIndex >= functionType->words().size() - 3) { in isValid() 1534 << ": expected " << functionType->words().size() - 3 in isValid() 1538 auto paramType = module_.FindDef(functionType->words()[paramIndex + 3]); in isValid() 1572 auto functionType = module_.FindDef(function->words()[4]); in isValid() local 1573 assert(functionType); in isValid() [all …]
|
| /third_party/typescript/src/services/ |
| D | suggestionDiagnostics.ts | 122 const functionType = checker.getTypeAtLocation(node); constant 123 const callSignatures = checker.getSignaturesOfType(functionType, SignatureKind.Call);
|
| /third_party/vk-gl-cts/external/vulkancts/scripts/ |
| D | ohos_gen_framework.py | 1643 def writeExtensionFunctions (functionType): argument 1646 if functionType == Function.TYPE_INSTANCE: 1649 elif functionType == Function.TYPE_DEVICE: 1656 if func.getType() == functionType:
|
| D | gen_framework.py | 1642 def writeExtensionFunctions (functionType): argument 1645 if functionType == Function.TYPE_INSTANCE: 1648 elif functionType == Function.TYPE_DEVICE: 1655 if func.getType() == functionType:
|
| /third_party/typescript/src/services/refactors/ |
| D | extractSymbol.ts | 1237 const functionType = checker.getTypeAtLocation(node); constant 1238 …const functionSignature = singleOrUndefined(checker.getSignaturesOfType(functionType, SignatureKin…
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
| D | glslang_wrapper_utils.cpp | 3030 spirv::IdRef functionType; in transformInstruction() local 3032 &functionType); in transformInstruction() 3944 spirv::IdRef functionType; in transformInstruction() local 3945 spirv::ParseFunction(instruction, &id, &functionId, &functionControl, &functionType); in transformInstruction()
|
| /third_party/skia/third_party/externals/angle2/src/common/spirv/ |
| D | spirv_instruction_parser_autogen.h | 138 IdRef *functionType);
|
| D | spirv_instruction_builder_autogen.h | 112 IdRef functionType);
|
| D | spirv_instruction_builder_autogen.cpp | 509 IdRef functionType) in WriteFunction() argument 516 blob->push_back(functionType); in WriteFunction()
|
| D | spirv_instruction_parser_autogen.cpp | 570 IdRef *functionType) in ParseFunction() argument 580 *functionType = IdRef(_instruction[_o++]); in ParseFunction()
|
| /third_party/typescript/src/compiler/ |
| D | binder.ts | 397 const functionType = <JSDocFunctionType>node.parent; constant 398 const index = functionType.parameters.indexOf(node as ParameterDeclaration);
|
| D | checker.ts | 11696 const functionType = resolved === anyFunctionType ? globalFunctionType : 11700 if (functionType) { 11701 const symbol = getPropertyOfObjectType(functionType, name); 38938 …const functionType = getSignaturesOfType(type, SignatureKind.Call).length ? globalCallableFunction… 38941 if (functionType) { 38942 forEach(getPropertiesOfType(functionType), p => {
|
| /third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
| D | LLVMReactor.cpp | 515 llvm::FunctionType *functionType = llvm::FunctionType::get(retTy, params, false); in createFunction() local 516 …auto func = llvm::Function::Create(functionType, llvm::GlobalValue::InternalLinkage, name, jit->mo… in createFunction()
|
| /third_party/typescript/lib/ |
| D | typescript.js | 40970 var functionType = node.parent; 40971 var index = functionType.parameters.indexOf(node); 54620 var functionType = resolved === anyFunctionType ? globalFunctionType : 54624 if (functionType) { 54625 var symbol_1 = getPropertyOfObjectType(functionType, name); 79285 … var functionType = getSignaturesOfType(type, 0 /* Call */).length ? globalCallableFunctionType : 79288 if (functionType) { 79289 ts.forEach(getPropertiesOfType(functionType), function (p) { 131361 var functionType = checker.getTypeAtLocation(node); 131362 var callSignatures = checker.getSignaturesOfType(functionType, 0 /* Call */); [all …]
|
| D | typescriptServices.js | 40970 var functionType = node.parent; 40971 var index = functionType.parameters.indexOf(node); 54620 var functionType = resolved === anyFunctionType ? globalFunctionType : 54624 if (functionType) { 54625 var symbol_1 = getPropertyOfObjectType(functionType, name); 79285 … var functionType = getSignaturesOfType(type, 0 /* Call */).length ? globalCallableFunctionType : 79288 if (functionType) { 79289 ts.forEach(getPropertiesOfType(functionType), function (p) { 131361 var functionType = checker.getTypeAtLocation(node); 131362 var callSignatures = checker.getSignaturesOfType(functionType, 0 /* Call */); [all …]
|
| D | tsserverlibrary.js | 40970 var functionType = node.parent; 40971 var index = functionType.parameters.indexOf(node); 54620 var functionType = resolved === anyFunctionType ? globalFunctionType : 54624 if (functionType) { 54625 var symbol_1 = getPropertyOfObjectType(functionType, name); 79285 … var functionType = getSignaturesOfType(type, 0 /* Call */).length ? globalCallableFunctionType : 79288 if (functionType) { 79289 ts.forEach(getPropertiesOfType(functionType), function (p) { 131361 var functionType = checker.getTypeAtLocation(node); 131362 var callSignatures = checker.getSignaturesOfType(functionType, 0 /* Call */); [all …]
|
| D | tsserver.js | 40776 var functionType = node.parent; 40777 var index = functionType.parameters.indexOf(node); 54426 var functionType = resolved === anyFunctionType ? globalFunctionType : 54430 if (functionType) { 54431 var symbol_1 = getPropertyOfObjectType(functionType, name); 79091 … var functionType = getSignaturesOfType(type, 0 /* Call */).length ? globalCallableFunctionType : 79094 if (functionType) { 79095 ts.forEach(getPropertiesOfType(functionType), function (p) { 130792 var functionType = checker.getTypeAtLocation(node); 130793 var callSignatures = checker.getSignaturesOfType(functionType, 0 /* Call */); [all …]
|
| D | tsc.js | 33272 var functionType = node.parent; 33273 var index = functionType.parameters.indexOf(node); 44925 var functionType = resolved === anyFunctionType ? globalFunctionType : 44929 if (functionType) { 44930 var symbol_1 = getPropertyOfObjectType(functionType, name); 66261 var functionType = getSignaturesOfType(type, 0).length ? globalCallableFunctionType : 66264 if (functionType) { 66265 ts.forEach(getPropertiesOfType(functionType), function (p) {
|
| D | typingsInstaller.js | 40765 var functionType = node.parent; 40766 var index = functionType.parameters.indexOf(node); 54415 var functionType = resolved === anyFunctionType ? globalFunctionType : 54419 if (functionType) { 54420 var symbol_1 = getPropertyOfObjectType(functionType, name); 79080 … var functionType = getSignaturesOfType(type, 0 /* Call */).length ? globalCallableFunctionType : 79083 if (functionType) { 79084 ts.forEach(getPropertiesOfType(functionType), function (p) {
|