Home
last modified time | relevance | path

Searched refs:paramTypes (Results 1 – 11 of 11) sorted by relevance

/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetICU.java207 Class<?>[] paramTypes = new Class<?>[]{ String.class, String.class, String[].class}; in getCharset() local
208 final Constructor<? extends CharsetICU> c = cs.getConstructor(paramTypes); in getCharset()
/third_party/skia/third_party/externals/angle2/third_party/bazel/desugar/
Dstateful-lambdas.patch60 private boolean attemptAllocationBeforeArgumentLoads(String internalName, Type[] paramTypes) {
61 - checkArgument(paramTypes.length > 0, "Expected at least one param for %s", internalName);
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
DSymbolEnv.cpp338 const TType **paramTypes, in getFunctionOverload() argument
347 mReusableSigBuffer.push_back(*paramTypes[i]); in getFunctionOverload()
DSymbolEnv.h165 const TType **paramTypes,
/third_party/glslang/SPIRV/
DSpvBuilder.cpp469 Id Builder::makeFunctionType(Id returnType, const std::vector<Id>& paramTypes) in makeFunctionType() argument
475 … if (type->getIdOperand(0) != returnType || (int)paramTypes.size() != type->getNumOperands() - 1) in makeFunctionType()
478 for (int p = 0; p < (int)paramTypes.size(); ++p) { in makeFunctionType()
479 if (paramTypes[p] != type->getIdOperand(p + 1)) { in makeFunctionType()
491 for (int p = 0; p < (int)paramTypes.size(); ++p) in makeFunctionType()
492 type->addIdOperand(paramTypes[p]); in makeFunctionType()
1385 const std::vector<Id>& paramTypes, in makeFunctionEntry() argument
1389 Id typeId = makeFunctionType(returnType, paramTypes); in makeFunctionEntry()
1390 Id firstParamId = paramTypes.size() == 0 ? 0 : getUniqueIds((int)paramTypes.size()); in makeFunctionEntry()
DSpvBuilder.h179 Id makeFunctionType(Id returnType, const std::vector<Id>& paramTypes);
351 …const std::vector<Id>& paramTypes, const std::vector<std::vector<Decoration>>& precisions, Block *…
DGlslangToSpv.cpp4493 std::vector<spv::Id> paramTypes; in makeFunctions() local
4515 paramTypes.push_back(typeId); in makeFunctions()
4521 … glslFunction->getName().c_str(), paramTypes, in makeFunctions()
/third_party/vk-gl-cts/modules/gles2/performance/
Des2pShaderOperatorTests.cpp1363 const glu::DataType paramTypes[MAX_PARAMS],
1424 const glu::DataType paramTypes[MAX_PARAMS], in FunctionCase()
1441 m_paramTypes[i] = paramTypes[i]; in FunctionCase()
2229 DataType paramTypes[FunctionCase::MAX_PARAMS]; in init() local
2231 paramTypes[i] = types[i+1]; in init()
2262 types[0], paramTypes, in init()
/third_party/vk-gl-cts/modules/gles3/performance/
Des3pShaderOperatorTests.cpp1367 const glu::DataType paramTypes[MAX_PARAMS],
1428 const glu::DataType paramTypes[MAX_PARAMS], in FunctionCase()
1445 m_paramTypes[i] = paramTypes[i]; in FunctionCase()
2274 DataType paramTypes[FunctionCase::MAX_PARAMS]; in init() local
2276 paramTypes[i] = types[i+1]; in init()
2307 types[0], paramTypes, in init()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DNucleus.hpp174 static void createFunction(Type *returnType, const std::vector<Type *> &paramTypes);
DSubzeroReactor.cpp64 …nction(Ice::GlobalContext *context, Ice::Type returnType, const std::vector<Ice::Type> &paramTypes) in createFunction() argument
73 for(auto type : paramTypes) in createFunction()
1129 void Nucleus::createFunction(Type *returnType, const std::vector<Type *> &paramTypes) in createFunction() argument
1137 ::function = sz::createFunction(::context, T(returnType), T(paramTypes)); in createFunction()