Home
last modified time | relevance | path

Searched refs:isConst (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/native/opengl/tools/glgen/src/
H A DCType.java20 boolean isConst; field in CType
30 public CType(String baseType, boolean isConst, boolean isPointer) { in CType() argument
32 setIsConst(isConst); in CType()
40 public void setIsConst(boolean isConst) { in setIsConst() argument
41 this.isConst = isConst; in setIsConst()
44 public boolean isConst() { in isConst() method in CType
45 return isConst; in isConst()
75 return isConst && isPointer && in isConstCharPointer()
94 if (isConst()) { in toString()
107 return baseType.hashCode() ^ (isPointer ? 2 : 0) ^ (isConst ? 1 : 0); in hashCode()
[all …]
H A DJniCodeEmitter.java580 if (!cfunc.getArgType(cIndex).isConst()) { in hasNonConstArg()
584 if (!cfunc.getArgType(cIndex).isConst()) { in hasNonConstArg()
1546 (cfunc.getArgType(cIndex).isConst() ? in emitJniCode()
1564 (cfunc.getArgType(cIndex).isConst() ? in emitJniCode()
1577 (cfunc.getArgType(cIndex).isConst() ? in emitJniCode()
/aosp12/frameworks/rs/
H A Dspec.l31 currType->isConst = 1; in checkPointerType()
101 currType->isConst = 1;
H A Drsg_generator.c44 if (vt->isConst) { in printVarType()
177 if (!vt->isConst && vt->ptrLevel) { in hasInlineDataPointers()
186 if (vt->isConst && vt->ptrLevel) { in hasInlineDataPointers()
281 if (vt->isConst && vt->ptrLevel) { in printApiCpp()
H A Dspec.h14 int isConst; member
/aosp12/frameworks/compile/slang/
H A Dslang_rs_reflection_cpp.cpp228 if (ev->isConst()) { in genFieldsToStoreExportVariableValues()
557 if (!EV->isConst()) { in genGetterAndSetter()
572 if (EV->isConst()) { in genGetterAndSetter()
598 if (!EV->isConst()) { in genPointerTypeExportVariable()
607 if (EV->isConst()) { in genPointerTypeExportVariable()
626 if (!EV->isConst()) { in genGetterAndSetter()
639 if (EV->isConst()) { in genGetterAndSetter()
H A Dslang_rs_export_var.h55 inline bool isConst() const { return mIsConst; } in isConst() function
H A Dslang_rs_reflection_state.cpp960 variable.mIsConst = EV->isConst(); in declareVariable()
1019 if (variable.mIsConst != EV->isConst()) { in declareVariable()
H A Dslang_rs_reflection.cpp1867 if (EV->isConst()) { in genPrimitiveTypeExportVariable()
2019 if (!EV->isConst()) { in genMatrixTypeExportVariable()
2081 if (!EV->isConst()) { in genSetExportVariable()