HomeSort by relevance Sort by last modified time
    Searched refs:variables (Results 1 - 25 of 1005) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/chromium_org/third_party/icu/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...]
  /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...]
  /external/chromium_org/tools/gn/
scope_per_file_provider_unittest.cc 11 #include "tools/gn/variables.h"
25 EXPECT_EQ("//toolchain:default", GPV(variables::kCurrentToolchain));
28 //EXPECT_EQ("//toolchain:default", GPV(variables::kDefaultToolchain));
29 EXPECT_EQ("//out/Debug", GPV(variables::kRootBuildDir));
30 EXPECT_EQ("//out/Debug/gen", GPV(variables::kRootGenDir));
31 EXPECT_EQ("//out/Debug", GPV(variables::kRootOutDir));
32 EXPECT_EQ("//out/Debug/gen/source", GPV(variables::kTargetGenDir));
33 EXPECT_EQ("//out/Debug/obj/source", GPV(variables::kTargetOutDir));
46 EXPECT_EQ("//toolchain:tc", GPV(variables::kCurrentToolchain));
48 //EXPECT_EQ("//toolchain:default", GPV(variables::kDefaultToolchain))
    [all...]
scope_per_file_provider.cc 11 #include "tools/gn/variables.h"
24 if (ident == variables::kCurrentToolchain)
26 if (ident == variables::kDefaultToolchain)
28 if (ident == variables::kPythonPath)
31 if (ident == variables::kRootBuildDir)
33 if (ident == variables::kRootGenDir)
35 if (ident == variables::kRootOutDir)
39 if (ident == variables::kTargetGenDir)
41 if (ident == variables::kTargetOutDir)
command_help.cc 17 #include "tools/gn/variables.h"
75 // Built-in variables.
76 OutputString("\nBuilt-in predefined variables (type \"gn help <variable>\" "
78 const variables::VariableInfoMap& builtin_vars =
79 variables::GetBuiltinVariables();
80 for (variables::VariableInfoMap::const_iterator i = builtin_vars.begin();
84 // Target variables.
87 const variables::VariableInfoMap& target_vars =
88 variables::GetTargetVariables();
89 for (variables::VariableInfoMap::const_iterator i = target_vars.begin()
    [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/dhcpcd/mk/
os-BSD.mk 1 # Setup OS specific variables
os-Darwin.mk 1 # Setup OS specific variables
os-Linux.mk 1 # Setup OS specific variables
  /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/chromium_org/tools/gyp/test/variables/commands/
update_golden 7 python ../../../gyp --debug variables --format gypd --depth . commands.gyp > commands.gyp.stdout
8 python ../../../gyp --ignore-environment --debug variables --format gypd --depth . commands.gyp > commands.gyp.ignore-env.stdout
10 python ../../../gyp --debug variables --format gypd --depth . commands-repeated.gyp > commands-repeated.gyp.stdout
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_field.cc 55 map<string, string>* variables,
57 (*variables)["name"] = FieldName(descriptor);
58 (*variables)["index"] = SimpleItoa(descriptor->index());
59 (*variables)["number"] = SimpleItoa(descriptor->number());
60 (*variables)["classname"] = ClassName(FieldScope(descriptor), false);
61 (*variables)["declared_type"] = DeclaredTypeMethodName(descriptor->type());
63 (*variables)["tag_size"] = SimpleItoa(
65 (*variables)["deprecation"] = descriptor->options().deprecated()
68 (*variables)["cppget"] = "Get";
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_string_field.cc 60 map<string, string>* variables) {
61 (*variables)["name"] =
63 (*variables)["capitalized_name"] =
65 (*variables)["constant_name"] = FieldConstantName(descriptor);
66 (*variables)["number"] = SimpleItoa(descriptor->number());
67 (*variables)["empty_list"] = "com.google.protobuf.LazyStringArrayList.EMPTY";
69 (*variables)["default"] = DefaultValue(descriptor);
70 (*variables)["default_init"] = ("= " + DefaultValue(descriptor));
71 (*variables)["capitalized_type"] = "String";
72 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor))
    [all...]
java_primitive_field.cc 160 map<string, string>* variables) {
161 (*variables)["name"] =
163 (*variables)["capitalized_name"] =
165 (*variables)["constant_name"] = FieldConstantName(descriptor);
166 (*variables)["number"] = SimpleItoa(descriptor->number());
167 (*variables)["type"] = PrimitiveTypeName(GetJavaType(descriptor));
168 (*variables)["boxed_type"] = BoxedPrimitiveTypeName(GetJavaType(descriptor));
169 (*variables)["field_type"] = (*variables)["type"];
170 (*variables)["field_list_type"] = "java.util.List<"
    [all...]
  /device/asus/deb/factory-images/
generate-factory-images-package.sh 28 source ../../../common/clear-factory-images-variables.sh
  /device/asus/flo/factory-images/
generate-factory-images-package.sh 27 source ../../../common/clear-factory-images-variables.sh
  /device/asus/fugu/factory-images/
generate-factory-images-package.sh 17 source ../../../common/clear-factory-images-variables.sh
  /device/asus/grouper/factory-images/
generate-factory-images-package.sh 51 source ../../../common/clear-factory-images-variables.sh
  /device/lge/hammerhead/factory-images/
generate-factory-images-package.sh 21 source ../../../common/clear-factory-images-variables.sh
  /device/lge/mako/factory-images/
generate-factory-images-package.sh 37 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
  /device/samsung/manta/factory-images/
generate-factory-images-package.sh 38 source ../../../common/clear-factory-images-variables.sh
  /external/bison/examples/calc++/
calc++-driver.cc 8 variables["one"] = 1;
9 variables["two"] = 2;

Completed in 1151 milliseconds

1 2 3 4 5 6 7 8 91011>>