Home
last modified time | relevance | path

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

/frameworks/native/opengl/tools/glgen/src/
DCType.java68 boolean isVoid() { in isVoid() method in CType
80 return isPointer() && !isVoid() && !isConstCharPointer(); in isTypedPointer()
DJniCodeEmitter.java164 boolean isVoid = jfunc.getType().isVoid(); in emitFunctionCall()
167 if (!isVoid) { in emitFunctionCall()
172 (isVoid ? "" : "_returnValue = ") + in emitFunctionCall()
347 boolean isVoid = returnType.isVoid(); in getErrorReturnValue()
348 if (isVoid) { in getErrorReturnValue()
737 boolean isVoid = jfunc.getType().isVoid(); in emitFunction()
739 if (!isVoid) { in emitFunction()
788 if (jType.isVoid()) { in getJniType()
979 boolean isVoid = returnType.isVoid(); in emitJniCode()
987 if (isVoid) { in emitJniCode()
[all …]
DJType.java191 public boolean isVoid() { in isVoid() method in JType
/frameworks/base/tools/hoststubgen/hoststubgen/src/com/android/hoststubgen/visitors/
DBodyReplacingMethodVisitor.kt39 val isVoid: Boolean constant
43 isVoid = descriptor.endsWith(")V")