Home | History | Annotate | Download | only in src

Lines Matching refs:getArgType

173             JType argType = jfunc.getArgType(i);
497 if (jfunc.getArgType(idx).isArray()) {
498 if (!cfunc.getArgType(cIndex).isConst()) {
501 } else if (jfunc.getArgType(idx).isBuffer()) {
502 if (!cfunc.getArgType(cIndex).isConst()) {
552 JType argType = jfunc.getArgType(i);
779 JType argType = jfunc.getArgType(i);
825 JType argType = jfunc.getArgType(i);
834 if (jfunc.getArgType(i).isBuffer()) {
858 JType argType = jfunc.getArgType(idx);
987 if (jfunc.getArgType(idx).isBuffer()
988 || jfunc.getArgType(idx).isArray()
989 || !jfunc.getArgType(idx).isEGLHandle())
992 CType type = cfunc.getArgType(jfunc.getArgCIndex(idx));
1026 if (!jfunc.getArgType(idx).isBuffer() && !jfunc.getArgType(idx).isArray())
1029 CType type = cfunc.getArgType(jfunc.getArgCIndex(idx));
1031 if (jfunc.getArgType(idx).isArray() && !jfunc.getArgType(idx).isClass()) {
1072 CType type = cfunc.getArgType(jfunc.getArgCIndex(idx));
1102 if (jfunc.getArgType(idx).isArray()
1103 && !jfunc.getArgType(idx).isEGLHandle()) {
1135 cfunc.getArgType(cIndex).getDeclaration() +
1150 } else if (jfunc.getArgType(idx).isArray()
1151 && jfunc.getArgType(idx).isEGLHandle()) {
1178 cfunc.getArgType(cIndex).getBaseType() +
1181 } else if (jfunc.getArgType(idx).isBuffer()) {
1197 cfunc.getArgType(cIndex).getDeclaration() +
1208 cfunc.getArgType(cIndex).getDeclaration() +
1232 if(!jfunc.getArgType(idx).isBuffer() || isPointerFunc) continue;
1247 out.println(indent + indent + cname + " = (" +cfunc.getArgType(cIndex).getDeclaration() +") (_" + cname + "Base + " + bufferOffset + ");");
1287 typecast = "(" + cfunc.getArgType(i).getDeclaration() + ")";
1292 if (cfunc.getArgType(i).isConstCharPointer()) {
1296 if (cfunc.getArgType(i).isEGLHandle() &&
1297 !cfunc.getArgType(i).isPointer()){
1329 if (jfunc.getArgType(idx).isArray() && !jfunc.getArgType(idx).isClass()) {
1344 (cfunc.getArgType(cIndex).isConst() ?
1348 } else if (jfunc.getArgType(idx).isBuffer()) {
1357 (cfunc.getArgType(cIndex).isConst() ?
1387 String baseType = cfunc.getArgType(cIndex).getBaseType().toLowerCase();
1388 if (jfunc.getArgType(idx).isArray() && jfunc.getArgType(idx).isClass()) {