/build/tools/ |
product_debug.py | 42 def render_variables(variables): 43 variables = dict(variables) 44 del variables["FILE"] 45 variables = list(variables.iteritems()) 46 variables.sort(lambda a, b: cmp(a[0], b[0])) 47 return ("<table id='variables'>" 49 for key,val in variables]) 52 def linkify_inherit(variables, text, func_name) [all...] |
/external/icu/icu4c/source/i18n/ |
rbt_data.cpp | 26 variables(0), variablesAreOwned(TRUE) 32 variables = 0; 57 variables = 0; 58 if (other.variables != 0) { 59 variables = (UnicodeFunctor **)uprv_malloc(variablesLength * sizeof(UnicodeFunctor *)); 61 if (variables == 0) { 66 variables[i] = other.variables[i]->clone(); 67 if (variables[i] == NULL) { 76 delete variables[n] [all...] |
/art/tools/checker/match/ |
line.py | 34 def getVariable(name, variables, pos): 35 if name in variables: 36 return variables[name] 38 Logger.testFailed("Missing definition of variable \"{}\"".format(name), pos, variables) 40 def setVariable(name, value, variables, pos): 41 if name not in variables: 42 return variables.copyWith(name, value) 44 Logger.testFailed("Multiple definitions of variable \"{}\"".format(name), pos, variables) 46 def matchWords(checkerWord, stringWord, variables, pos): 53 pattern = re.escape(getVariable(expression.name, variables, pos) [all...] |
file.py | 23 MatchInfo = namedtuple("MatchInfo", ["scope", "variables"]) 26 def __init__(self, assertion, lineNo, variables): 29 self.variables = variables 46 def findMatchingLine(assertion, c1Pass, scope, variables, excludeLines=[]): 52 Returns the index of the `c1Pass` line matching the assertion and variables 59 newVariables = MatchLines(assertion, c1Pass.body[i], variables) 62 raise MatchFailedException(assertion, scope.start, variables) 64 def matchDagGroup(assertions, c1Pass, scope, variables): 78 match = findMatchingLine(assertion, c1Pass, scope, variables, matchedLines [all...] |
/external/curl/src/ |
tool_writeenv.c | 44 } variables[14] = variable in typeref:struct:__anon10101 80 for(i=0; variables[i].name; i++) { 81 switch (variables[i].type) { 83 if(curl_easy_getinfo(curl, variables[i].id, &string) == CURLE_OK) 84 internalSetEnv(variables[i].name, string); 86 internalSetEnv(variables[i].name, NULL); 90 if(curl_easy_getinfo(curl, variables[i].id, &longinfo) == CURLE_OK) { 92 internalSetEnv(variables[i].name, numtext); 95 internalSetEnv(variables[i].name, NULL); 98 if(curl_easy_getinfo(curl, variables[i].id, &doubleinfo) == CURLE_OK) [all...] |
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_extension.cc | 81 map<string, string>* variables) { 82 (*variables)["extends"] = ClassName(params, descriptor->containing_type()); 83 (*variables)["name"] = RenameJavaKeywords(UnderscoresToCamelCase(descriptor)); 85 (*variables)["repeated"] = repeated ? "Repeated" : ""; 86 (*variables)["type"] = GetTypeConstantName(descriptor->type()); 90 (*variables)["ext_type"] = "MessageTyped"; 95 (*variables)["class"] = message_type; 98 (*variables)["tag_params"] = tag; 100 (*variables)["ext_type"] = "PrimitiveTyped"; 102 (*variables)["class"] = BoxedPrimitiveTypeName(java_type) [all...] |
/external/protobuf/src/google/protobuf/compiler/java/ |
java_field.cc | 174 map<string, string>* variables) { 175 (*variables)["field_name"] = descriptor->name(); 176 (*variables)["name"] = info->name; 177 (*variables)["capitalized_name"] = info->capitalized_name; 178 (*variables)["disambiguated_reason"] = info->disambiguated_reason; 179 (*variables)["constant_name"] = FieldConstantName(descriptor); 180 (*variables)["number"] = SimpleItoa(descriptor->number()); 185 map<string, string>* variables) { 186 (*variables)["oneof_name"] = info->name; 187 (*variables)["oneof_capitalized_name"] = info->capitalized_name [all...] |
java_primitive_field.cc | 83 map<string, string>* variables) { 84 SetCommonFieldVariables(descriptor, info, variables); 86 (*variables)["type"] = PrimitiveTypeName(GetJavaType(descriptor)); 87 (*variables)["boxed_type"] = BoxedPrimitiveTypeName(GetJavaType(descriptor)); 88 (*variables)["field_type"] = (*variables)["type"]; 89 (*variables)["field_list_type"] = "java.util.List<" + 90 (*variables)["boxed_type"] + ">"; 91 (*variables)["empty_list"] = "java.util.Collections.emptyList()"; 92 (*variables)["default"] = ImmutableDefaultValue(descriptor, name_resolver) [all...] |
/external/proguard/src/proguard/classfile/attribute/preverification/ |
FullFrame.java | 35 public VerificationType[] variables; field in class:FullFrame 49 * Creates a FullFrame with the given variables and stack. 52 VerificationType[] variables, 56 variables.length, 57 variables, 64 * Creates a FullFrame with the given variables and stack. 68 VerificationType[] variables, 74 this.variables = variables; 81 * Applies the given verification type visitor to all variables [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.variables_3.2.400.v20100505.jar | |
/external/deqp/modules/gles31/functional/ |
es31fProgramInterfaceDefinition.cpp | 220 // Default block variables 222 for (int varNdx = 0; varNdx < (int)m_defaultBlock.variables.size(); ++varNdx) 225 if (m_defaultBlock.variables[varNdx].layout.binding == -1 && 226 containsMatchingSubtype(m_defaultBlock.variables[varNdx].varType, glu::isDataTypeAtomicCounter)) 230 if (m_defaultBlock.variables[varNdx].varType.isStructType() && 231 containsMatchingSubtype(m_defaultBlock.variables[varNdx].varType, glu::isDataTypeAtomicCounter)) 236 if (m_defaultBlock.variables[varNdx].layout.matrixOrder != glu::MATRIXORDER_LAST) 239 if (containsMatchingSubtype(m_defaultBlock.variables[varNdx].varType, glu::isDataTypeSampler)) 241 const glu::Layout layoutWithLocationAndBinding(m_defaultBlock.variables[varNdx].layout.location, m_defaultBlock.variables[varNdx].layout.binding) [all...] |
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_field.cc | 57 map<string, string>* variables, 59 (*variables)["name"] = FieldName(descriptor); 60 (*variables)["index"] = SimpleItoa(descriptor->index()); 61 (*variables)["number"] = SimpleItoa(descriptor->number()); 62 (*variables)["classname"] = ClassName(FieldScope(descriptor), false); 63 (*variables)["declared_type"] = DeclaredTypeMethodName(descriptor->type()); 65 (*variables)["tag_size"] = SimpleItoa( 67 (*variables)["deprecation"] = descriptor->options().deprecated() 70 (*variables)["cppget"] = "Get"; 74 map<string, string>* variables) { [all...] |
/build/kati/testcase/ |
semicolon.mk | 1 # When a line only has semicolons after variables are expanded, they
|
/device/asus/fugu/factory-images/ |
generate-factory-images-package.sh | 17 source ../../../common/clear-factory-images-variables.sh
|
/device/google/dragon/factory-images/ |
generate-factory-images-package.sh | 17 source ../../../common/clear-factory-images-variables.sh
|
/device/google/marlin/factory-images_marlin/ |
generate-factory-images-package.sh | 17 source ../../../common/clear-factory-images-variables.sh
|
/device/google/marlin/factory-images_sailfish/ |
generate-factory-images-package.sh | 17 source ../../../common/clear-factory-images-variables.sh
|
/device/htc/flounder/factory-images/ |
generate-factory-images-package.sh | 17 source ../../../common/clear-factory-images-variables.sh
|
/device/huawei/angler/factory-images/ |
generate-factory-images-package.sh | 17 source ../../../common/clear-factory-images-variables.sh
|
/device/lge/bullhead/factory-images/ |
generate-factory-images-package.sh | 17 source ../../../common/clear-factory-images-variables.sh
|
/device/moto/shamu/factory-images/ |
generate-factory-images-package.sh | 17 source ../../../common/clear-factory-images-variables.sh
|
/external/bison/examples/calc++/ |
calc++-driver.cc | 8 variables["one"] = 1; 9 variables["two"] = 2;
|
/external/libdrm/freedreno/ |
Android.mk | 4 # Import variables LIBDRM_FREEDRENO_FILES, LIBDRM_FREEDRENO_H_FILES
|
/external/libdrm/nouveau/ |
Android.mk | 4 # Import variables LIBDRM_NOUVEAU_FILES, LIBDRM_NOUVEAU_H_FILES
|
/external/libdrm/radeon/ |
Android.mk | 4 # Import variables LIBDRM_RADEON_FILES, LIBDRM_RADEON_H_FILES
|