Home
last modified time | relevance | path

Searched refs:functionName (Results 1 – 4 of 4) sorted by relevance

/frameworks/native/opengl/tools/glgen/src/
DParameterChecker.java45 public String[] getChecks(String functionName) { in getChecks() argument
46 String[] checks = map.get(functionName); in getChecks()
48 (functionName.endsWith("fv") || in getChecks()
49 functionName.endsWith("xv") || in getChecks()
50 functionName.endsWith("iv"))) { in getChecks()
51 functionName = functionName.substring(0, functionName.length() - 2); in getChecks()
52 checks = map.get(functionName); in getChecks()
/frameworks/compile/libbcc/lib/Renderscript/
DRSScriptGroupFusion.cpp43 const char* functionName = metadata.getExportFuncNameList()[slot]; in getInvokeFunction() local
44 Function* func = newModule->getFunction(functionName); in getInvokeFunction()
56 const char* functionName = metadata.getExportForEachNameList()[slot]; in getFunction() local
57 if (functionName == nullptr || !functionName[0]) { in getFunction()
65 source->getName().c_str(), functionName); in getFunction()
73 const Function* function = mergedModule->getFunction(functionName); in getFunction()
/frameworks/rs/api/
DGenerateStubsWhiteList.cpp328 const string& functionName = permutation.getName(); in addFunctionManglingToSet() local
332 stream << "_Z" << mangleLongName(functionName); in addFunctionManglingToSet()
334 cerr << "Error mangling " << functionName << ". See above message.\n"; in addFunctionManglingToSet()
339 mangling = functionName; in addFunctionManglingToSet()
/frameworks/base/core/java/android/app/admin/
DDevicePolicyManager.java6419 private void throwIfParentInstance(String functionName) { in throwIfParentInstance() argument
6421 throw new SecurityException(functionName + " cannot be called on the parent instance"); in throwIfParentInstance()