Searched refs:argType (Results 1 - 3 of 3) sorted by last modified time

/frameworks/native/opengl/tools/glgen/src/
H A DCFunc.java57 public void addArgument(String argName, CType argType) { argument
59 argTypes.add(argType);
61 if (argType.isPointer()) {
64 if (argType.isTypedPointer()) {
67 if (argType.isEGLHandle()) {
150 CType argType = new CType();
156 argType.setIsConst(true);
159 argType.setBaseType(argTypeName);
167 argType.setIsPointer(true);
174 cfunc.addArgument(argName, argType);
[all...]
H A DJFunc.java80 public void addArgument(String argName, JType argType, int cindex) { argument
82 argTypes.add(argType);
85 if (argType.isBuffer()) {
89 if (argType.isTypedBuffer()) {
H A DJniCodeEmitter.java173 JType argType = jfunc.getArgType(i);
175 if (grabArray && argType.isTypedBuffer()) {
176 String typeName = argType.getBaseType();
552 JType argType = jfunc.getArgType(i);
554 out.print(indent + indent + argType + " " + argName);
779 JType argType = jfunc.getArgType(i);
780 signature += getJniName(argType);
825 JType argType = jfunc.getArgType(i);
827 if (!argType.isPrimitive()) {
828 if (argType
[all...]

Completed in 60 milliseconds