Searched refs:argSpec (Results 1 – 2 of 2) sorted by relevance
47 GLDataTypeSpec argSpec = argSpecs.get(0); in testParser() local48 assertEquals(argSpec.getArgName(), "target"); in testParser()49 assertEquals(argSpec.getDataType(), Type.ENUM); in testParser()50 assertEquals(argSpec.isPointer(), false); in testParser()52 argSpec = argSpecs.get(2); in testParser()53 assertEquals(argSpec.getArgName(), "attachments"); in testParser()54 assertEquals(argSpec.getDataType(), Type.ENUM); in testParser()55 assertEquals(argSpec.isPointer(), true); in testParser()
72 GLDataTypeSpec argSpec = argSpecs.get(i); in formatArgs() local74 if (argSpec.getDataType() == Type.VOID && !argSpec.isPointer()) { in formatArgs()77 sb.append(argSpec.getArgName()); in formatArgs()80 argSpec, in formatArgs() local