Home
last modified time | relevance | path

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

/aosp12/frameworks/native/opengl/tools/glgen/src/
H A DJniCodeEmitter.java164 boolean isVoid = jfunc.getType().isVoid(); in emitFunctionCall()
167 if (!isVoid) { in emitFunctionCall()
347 boolean isVoid = returnType.isVoid(); in getErrorReturnValue()
348 if (isVoid) { in getErrorReturnValue()
737 boolean isVoid = jfunc.getType().isVoid(); in emitFunction()
979 boolean isVoid = returnType.isVoid(); in emitJniCode()
987 if (isVoid) { in emitJniCode()
1011 if (isVoid) { in emitJniCode()
1072 if (!isVoid) { in emitJniCode()
1452 if (!isVoid) { in emitJniCode()
[all …]
H A DCType.java68 boolean isVoid() { in isVoid() method in CType
80 return isPointer() && !isVoid() && !isConstCharPointer(); in isTypedPointer()
H A DJType.java191 public boolean isVoid() { in isVoid() method in JType
/aosp12/system/tools/hidl/c2hal/
H A DFunctionDeclaration.cpp60 if (!getType()->isVoid()) { in generateSource()
80 if (var->getType()->isVoid()) { in processContents()
H A DType.h90 bool isVoid() const;
H A DType.cpp223 bool Type::isVoid() const { in isVoid() function in android::Type