Searched refs:VarType (Results 1 – 12 of 12) sorted by relevance
/aosp12/build/make/tools/product_config/src/com/android/build/config/ |
H A D | FlattenConfig.java | 220 forEachInheritAlpha(filename, VarType.LIST, seen, in flattenListVars() 228 forEachStatement(filename, VarType.LIST, null, in flattenListVars() 260 forEachStatement(filename, VarType.SINGLE, seen1, in flattenSingleVars() 281 new Value(VarType.SINGLE, in flattenSingleVars() 286 forEachInheritAlpha(filename, VarType.SINGLE, seen2, in flattenSingleVars() 305 forEachStatement(filename, VarType.UNKNOWN, null, in flattenUnknownVars() 309 new Value(VarType.UNKNOWN, in flattenUnknownVars() 313 forEachInheritAlpha(filename, VarType.UNKNOWN, seen, in flattenUnknownVars() 335 forEachStatement(filename, VarType.LIST, null, null, in flattenInheritsFrom() 368 && prevValue.getVarType() != VarType.UNKNOWN) { in assertVarType() [all …]
|
H A D | ConfigBase.java | 47 protected final TreeMap<String, VarType> mProductVars = new TreeMap(); 65 public void addProductVar(String name, VarType type) { in addProductVar() 69 public TreeMap<String, VarType> getProductVars() { in getProductVars() 73 public VarType getVarType(String name) { in getVarType() 74 final VarType t = mProductVars.get(name); in getVarType() 78 return VarType.UNKNOWN; in getVarType() 106 for (Map.Entry<String, VarType> entry: that.getProductVars().entrySet()) { in copyFrom()
|
H A D | Value.java | 30 private final VarType mVarType; 37 public Value(VarType varType) { in Value() 39 if (varType == VarType.LIST) { in Value() 49 public Value(VarType varType, Str str) { in Value() 56 mVarType = VarType.LIST; in Value() 61 public VarType getVarType() { in getVarType() 138 if (s.length() > 0 && (val.mVarType == VarType.LIST || m.find())) { in oneLinePerWord()
|
H A D | MakeConfig.java | 128 for (Map.Entry<String,VarType> entry: mProductVars.entrySet()) { in printToStream() 129 if (entry.getValue() == VarType.SINGLE) { in printToStream() 136 for (Map.Entry<String,VarType> entry: mProductVars.entrySet()) { in printToStream() 137 if (entry.getValue() == VarType.LIST) { in printToStream()
|
H A D | OutputChecker.java | 55 public final VarType type; 59 public Variable(String name, VarType type, Str original) { in Variable() 63 public Variable(String name, VarType type, Str original, Value updated) { in Variable()
|
H A D | DumpConfigParser.java | 152 final VarType type = "list".equals(fields.get(1)) ? VarType.LIST : VarType.SINGLE; in parseImpl()
|
H A D | VarType.java | 22 public enum VarType { enum
|
H A D | ConvertMakeToGenericConfig.java | 139 VarType varType, String varName, Str varVal, Str prevVal) { in convertAssignment() 152 if (varType == VarType.UNKNOWN) { in convertAssignment()
|
H A D | MakeWriter.java | 146 if (value.getVarType() == VarType.LIST) { in writeFlat()
|
/aosp12/frameworks/rs/ |
H A D | spec.h | 20 } VarType; typedef 22 extern VarType *currType; 31 VarType ret; 32 VarType params[16];
|
H A D | rsg_generator.c | 42 void printVarType(FILE *f, const VarType *vt) { in printVarType() 77 void printVarTypeAndName(FILE *f, const VarType *vt) { in printVarTypeAndName() 175 const VarType *vt = &api->params[ct]; in hasInlineDataPointers() 229 const VarType *vt = &api->params[ct2]; in printApiCpp() 243 const VarType *vt = &api->params[ct2]; in printApiCpp() 263 const VarType *vt = &api->params[ct2]; in printApiCpp() 280 const VarType *vt = &api->params[ct2]; in printApiCpp() 301 const VarType *vt = &api->params[ct2]; in printApiCpp() 362 const VarType *vt = &api->params[ct2]; in printApiCpp() 417 const VarType *vt = &api->params[ct2]; in printPlaybackCpp()
|
H A D | spec.l | 16 VarType *currType = 0; 24 VarType *baseType = currType; in checkPointerType()
|