| /external/chromium_org/tools/gyp/test/variables/filelist/ |
| update_golden | 7 python ../../../gyp --debug variables --debug general --format gypd --depth . src/filelist.gyp > filelist.gyp.stdout
|
| /external/protobuf/src/google/protobuf/compiler/cpp/ |
| cpp_field.cc | 55 map<string, string>* variables) { 56 (*variables)["name"] = FieldName(descriptor); 57 (*variables)["index"] = SimpleItoa(descriptor->index()); 58 (*variables)["number"] = SimpleItoa(descriptor->number()); 59 (*variables)["classname"] = ClassName(FieldScope(descriptor), false); 60 (*variables)["declared_type"] = DeclaredTypeMethodName(descriptor->type()); 62 (*variables)["tag_size"] = SimpleItoa( 64 (*variables)["deprecation"] = descriptor->options().deprecated()
|
| /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/ |
| java_enum_field.cc | 58 map<string, string>* variables) { 59 (*variables)["name"] = 61 (*variables)["capitalized_name"] = 63 (*variables)["constant_name"] = FieldConstantName(descriptor); 64 (*variables)["number"] = SimpleItoa(descriptor->number()); 65 (*variables)["type"] = ClassName(descriptor->enum_type()); 66 (*variables)["default"] = DefaultValue(descriptor); 67 (*variables)["tag"] = SimpleItoa(internal::WireFormat::MakeTag(descriptor)); 68 (*variables)["tag_size"] = SimpleItoa( 72 (*variables)["deprecation"] = descriptor->options().deprecated( [all...] |
| java_message_field.cc | 57 map<string, string>* variables) { 58 (*variables)["name"] = 60 (*variables)["capitalized_name"] = 62 (*variables)["constant_name"] = FieldConstantName(descriptor); 63 (*variables)["number"] = SimpleItoa(descriptor->number()); 64 (*variables)["type"] = ClassName(descriptor->message_type()); 65 (*variables)["group_or_message"] = 70 (*variables)["deprecation"] = descriptor->options().deprecated() 72 (*variables)["on_changed"] = 76 (*variables)["get_has_field_bit_message"] = GenerateGetBit(messageBitIndex) [all...] |
| /external/deqp/modules/gles31/functional/ |
| es31fProgramInterfaceDefinition.cpp | 218 // Default block variables 220 for (int varNdx = 0; varNdx < (int)m_defaultBlock.variables.size(); ++varNdx) 223 if (m_defaultBlock.variables[varNdx].layout.binding == -1 && 224 containsMatchingSubtype(m_defaultBlock.variables[varNdx].varType, glu::isDataTypeAtomicCounter)) 228 if (m_defaultBlock.variables[varNdx].varType.isStructType() && 229 containsMatchingSubtype(m_defaultBlock.variables[varNdx].varType, glu::isDataTypeAtomicCounter)) 234 if (m_defaultBlock.variables[varNdx].layout.matrixOrder != glu::MATRIXORDER_LAST) 237 if (containsMatchingSubtype(m_defaultBlock.variables[varNdx].varType, glu::isDataTypeSampler)) 239 const glu::Layout layoutWithLocationAndBinding(m_defaultBlock.variables[varNdx].layout.location, m_defaultBlock.variables[varNdx].layout.binding) [all...] |
| es31fProgramInterfaceDefinitionUtil.cpp | 199 for (int ndx = 0; ndx < (int)defaultBlock.variables.size(); ++ndx) 200 collectNamedStructureDefinitions(namedStructs, defaultBlock.variables[ndx].varType); 203 for (int ndx = 0; ndx < (int)defaultBlock.interfaceBlocks[blockNdx].variables.size(); ++ndx) 204 collectNamedStructureDefinitions(namedStructs, defaultBlock.interfaceBlocks[blockNdx].variables[ndx].varType); 233 for (int ndx = 0; ndx < (int)interfaceBlock.variables.size(); ++ndx) 234 buf << glu::indent(1) << interfaceBlock.variables[ndx] << ";\n"; 295 for (int ndx = 0; ndx < (int)block.variables.size(); ++ndx) 296 writeVariableReadAccumulateExpression(buf, accumulatorName, prefix + block.variables[ndx].name, block.variables[ndx].varType); 312 for (int ndx = 0; ndx < (int)block.variables.size(); ++ndx [all...] |
| /external/wpa_supplicant_8/ |
| Android.mk | 5 # TODO: Clean up the Android.mks, reset all the temporary variables at the 6 # end of each Android.mk, so that one Android.mk doesn't depend on variables
|
| /external/protobuf/src/google/protobuf/compiler/javamicro/ |
| javamicro_enum_field.cc | 55 const FieldDescriptor* descriptor, map<string, string>* variables) { 56 (*variables)["name"] = 58 (*variables)["capitalized_name"] = 60 (*variables)["number"] = SimpleItoa(descriptor->number()); 61 (*variables)["type"] = "int"; 62 (*variables)["default"] = DefaultValue(params, descriptor); 63 (*variables)["tag"] = SimpleItoa(internal::WireFormat::MakeTag(descriptor)); 64 (*variables)["tag_size"] = SimpleItoa( 66 (*variables)["message_name"] = descriptor->containing_type()->name();
|
| /external/chromium_org/third_party/angle/src/compiler/translator/ |
| VariablePacker.cpp | 216 TVariableInfoList variables(in_variables); 219 for (size_t i = 0; i < variables.size(); i++) { 220 const TVariableInfo& variable = variables[i]; 226 // As per GLSL 1.017 Appendix A, Section 7 variables are packed in specific 228 std::sort(variables.begin(), variables.end(), TVariableInfoComparer()); 232 // Packs the 4 column variables. 234 for (; ii < variables.size(); ++ii) { 235 const TVariableInfo& variable = variables[ii]; 246 // Packs the 3 column variables [all...] |
| /external/protobuf/src/google/protobuf/compiler/java/ |
| java_primitive_field.cc | 157 map<string, string>* variables) { 158 (*variables)["name"] = 160 (*variables)["capitalized_name"] = 162 (*variables)["number"] = SimpleItoa(descriptor->number()); 163 (*variables)["type"] = PrimitiveTypeName(GetJavaType(descriptor)); 164 (*variables)["boxed_type"] = BoxedPrimitiveTypeName(GetJavaType(descriptor)); 165 (*variables)["default"] = DefaultValue(descriptor); 166 (*variables)["capitalized_type"] = GetCapitalizedType(descriptor); 167 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor)); 168 (*variables)["tag_size"] = SimpleItoa [all...] |
| java_enum_field.cc | 55 map<string, string>* variables) { 56 (*variables)["name"] = 58 (*variables)["capitalized_name"] = 60 (*variables)["number"] = SimpleItoa(descriptor->number()); 61 (*variables)["type"] = ClassName(descriptor->enum_type()); 62 (*variables)["default"] = DefaultValue(descriptor); 63 (*variables)["tag"] = SimpleItoa(internal::WireFormat::MakeTag(descriptor)); 64 (*variables)["tag_size"] = SimpleItoa(
|
| /device/asus/tilapia/factory-images/ |
| generate-factory-images-package.sh | 37 source ../../../common/clear-factory-images-variables.sh
|
| /external/chromium_org/third_party/libyuv/ |
| public.mk | 1 # This file contains all the common make variables which are useful for
|
| /external/dhcpcd/mk/ |
| os.mk | 1 # Setup OS specific variables
|
| /external/libvpx/ |
| config.arm64.mk | 1 # Output variables:
|
| config.mips64.mk | 1 # Output variables:
|
| config.x86.mk | 1 # Output variables:
|
| config.x86_64.mk | 1 # Output variables:
|
| /external/libyuv/ |
| public.mk | 1 # This file contains all the common make variables which are useful for
|
| /external/protobuf/src/google/protobuf/compiler/javanano/ |
| javanano_message_field.cc | 57 const FieldDescriptor* descriptor, map<string, string>* variables) { 58 (*variables)["name"] = 60 (*variables)["capitalized_name"] = 62 (*variables)["number"] = SimpleItoa(descriptor->number()); 63 (*variables)["type"] = ClassName(params, descriptor->message_type()); 64 (*variables)["group_or_message"] = 67 (*variables)["message_name"] = descriptor->containing_type()->name(); 68 //(*variables)["message_type"] = descriptor->message_type()->name(); 69 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor));
|
| javanano_primitive_field.cc | 190 map<string, string>* variables) { 191 (*variables)["name"] = 193 (*variables)["capitalized_name"] = 195 (*variables)["number"] = SimpleItoa(descriptor->number()); 198 (*variables)["type"] = BoxedPrimitiveTypeName(GetJavaType(descriptor)); 200 (*variables)["type"] = PrimitiveTypeName(GetJavaType(descriptor)); 211 (*variables)["default"] = DefaultValue(params, descriptor); 212 (*variables)["default_constant"] = FieldDefaultConstantName(descriptor); 213 (*variables)["default_constant_value"] = strings::Substitute( 216 (*variables)["default_copy_if_needed"] [all...] |
| /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
| radeon_rename_regs.c | 52 struct rc_list * variables; local 68 variables = rc_get_variables(c); 70 for (var_ptr = variables; var_ptr; var_ptr = var_ptr->Next) {
|
| /external/mesa3d/src/gallium/drivers/r300/compiler/ |
| radeon_rename_regs.c | 52 struct rc_list * variables; local 68 variables = rc_get_variables(c); 70 for (var_ptr = variables; var_ptr; var_ptr = var_ptr->Next) {
|
| /external/chromium_org/tools/gn/ |
| target_generator.cc | 22 #include "tools/gn/variables.h" 137 const Value* value = scope_->GetValue(variables::kSources, true); 149 const Value* value = scope_->GetValue(variables::kPublic, true); 164 const Value* value = scope_->GetValue(variables::kInputs, true); 183 FillGenericConfigs(variables::kConfigs, &target_->configs()); 187 FillGenericConfigs(variables::kAllDependentConfigs, 189 FillGenericConfigs(variables::kDirectDependentConfigs, 194 const Value* value = scope_->GetValue(variables::kData, true); 206 FillGenericDeps(variables::kDeps, &target_->deps()); 209 FillGenericDeps(variables::kDatadeps, &target_->datadeps()) [all...] |
| /external/chromium_org/v8/tools/testrunner/local/ |
| statusfile.py | 54 VARIABLES = {ALWAYS: True} 58 VARIABLES[var] = var 99 def _ParseOutcomeList(rule, outcomes, target_dict, variables): 107 if not eval(item[0], variables): continue 120 def ReadStatusFile(path, variables): 127 variables.update(VARIABLES) 131 if not eval(section[0], variables): continue 137 _ParseOutcomeList(rule, section[rule], wildcards, variables) 139 _ParseOutcomeList(rule, section[rule], rules, variables) [all...] |