Home
last modified time | relevance | path

Searched refs:isPointer (Results 1 – 12 of 12) sorted by relevance

/aosp12/frameworks/native/opengl/tools/glgen/src/
H A DCType.java21 boolean isPointer; field in CType
33 setIsPointer(isPointer); in CType()
37 return baseType + (isPointer ? " *" : ""); in getDeclaration()
48 public void setIsPointer(boolean isPointer) { in setIsPointer() argument
49 this.isPointer = isPointer; in setIsPointer()
52 public boolean isPointer() { in isPointer() method in CType
53 return isPointer; in isPointer()
75 return isConst && isPointer && in isConstCharPointer()
80 return isPointer() && !isVoid() && !isConstCharPointer(); in isTypedPointer()
98 if (isPointer()) { in toString()
[all …]
H A DCFunc.java61 if (argType.isPointer()) { in addArgument()
H A DJniCodeEmitter.java1496 !cfunc.getArgType(i).isPointer()){ in emitJniCode()
/aosp12/frameworks/native/services/sensorservice/
H A Dtraits.h108 enum { isPointer = PointerTraits<T>::result };
112 typedef typename Select<isStdArith || isPointer, T, const T&>::Result ParameterType;
/aosp12/system/tools/hidl/
H A DPointerType.h28 bool isPointer() const override;
H A DPointerType.cpp26 bool PointerType::isPointer() const { in isPointer() function in android::PointerType
H A DType.h52 virtual bool isPointer() const;
H A DType.cpp93 bool Type::isPointer() const { in isPointer() function in android::Type
/aosp12/system/tools/aidl/
H A Daidl_to_cpp.h34 const bool isPointer; // whether the variable 'name' is a pointer or not member
/aosp12/system/tools/hidl/hidl2aidl/
H A DAidlType.cpp81 } else if (type.isPointer()) { in getAidlType()
/aosp12/frameworks/compile/slang/
H A Dslang_rs_export_type.h180 bool isPointer; member
H A Dslang_rs_export_type.cpp1661 rtd->isPointer = true; in convertToRTD()