Searched refs:variable (Results 1 - 25 of 445) sorted by relevance

1234567891011>>

/external/clang/test/PCH/
H A Dtentative-defs.h2 int variable; variable
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DUnusedParam.h26 #define UNUSED_PARAM(variable) (void)variable
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Delfreloc-ext.asm1 EXTERN variable
2 mov eax, variable
3 mov ax, variable
4 mov al, variable
/external/chromium_org/v8/test/webkit/
H A Ddfg-arguments-osr-exit.js29 return [variable];
46 var variable = 32; variable
51 variable = "32";
H A Ddfg-arguments-osr-exit-multiple-blocks-before-exit.js29 return [variable];
52 var variable = 32; variable
57 variable = "32";
H A Ddfg-arguments-osr-exit-multiple-blocks.js29 return [variable];
50 var variable = 32; variable
55 variable = "32";
H A Ddfg-dead-speculation.js34 var variable = 84; variable
39 thingy = {f:{valueOf:function(){ variable = 24; return 5; }}};
43 shouldBe("variable", "" + expected);
/external/chromium_org/third_party/ocmock/OCMock/
H A DOCMArg.h33 #define OCMOCK_VALUE(variable) [NSValue value:&variable withObjCType:@encode(__typeof__(variable))]
/external/chromium_org/third_party/libjingle/source/talk/
H A Dlibjingle_examples.gyp279 'ensure_single_key': '<!(python -c "assert len(\'\'\'<(key_id)\'\'\') > 0 and \'\\n\' not in \'\'\'<(key_id)\'\'\', \'key_id gyp variable needs to be set explicitly because there are multiple codesigning keys, or none!\'")',
/external/doclava/src/com/google/doclava/
H A DResolution.java31 * <p>Values are the value to which the variable contained within this {@link Resolution} refers.
34 * contains "superclass" as its variable and "Dialog" as its value.
42 * Creates a new resolution with variable and value.
43 * @param variable The piece of data within a Java type that needs to be updated
45 * @param value The value to which the variable contained within this {@link Resolution} refers.
48 public Resolution(String variable, String value, InfoBuilder builder) { argument
49 mVariable = variable;
63 * @return The value to which the variable contained within this {@link Resolution} refers.
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DVariableLocator.java47 * @param variable the variable node to evaluate.
48 * @return a String representing the Variable name, or {@code null} if it is a compound variable
51 private String quickEval(PVariable variable) { argument
52 if (variable instanceof ANameVariable) {
53 return ((ANameVariable) variable).getWord().getText();
54 } else if (variable instanceof ADecNumberVariable) {
55 return ((ADecNumberVariable) variable).getDecNumber().getText();
56 } else if (variable instanceof AHexNumberVariable) {
57 return ((AHexNumberVariable) variable)
69 getVariableName(PVariable variable) argument
[all...]
/external/bison/src/
H A Dmuscle-tab.h106 /* Indicates whether a variable's value was specified with -D/--define, with
113 /* Define the muscles for %define variable VARIABLE with VALUE specified
122 void muscle_percent_define_insert (char const *variable, location variable_loc,
127 %define variable VARIABLE is defined, return its value. Otherwise, return
131 char *muscle_percent_define_get (char const *variable);
134 if the %define variable VARIABLE is undefined, complain fatally since that's
139 location muscle_percent_define_get_loc (char const *variable);
142 is, if the %define variable VARIABLE is undefined, complain fatally since
147 char const *muscle_percent_define_get_syncline (char const *variable);
150 %define variable VARIABL
[all...]
H A Dmuscle-tab.c399 /** If the \a variable name is obsolete, return the name to use,
400 * otherwise \a variable. */
403 muscle_percent_variable_update (char const *variable) argument
416 char const *res = variable;
419 if (STREQ (conversion[i].obsolete, variable))
433 char const *variable = muscle_percent_variable_update (var); local
434 char const *name = UNIQSTR_CONCAT ("percent_define(", variable, ")");
435 char const *loc_name = UNIQSTR_CONCAT ("percent_define_loc(", variable, ")");
437 UNIQSTR_CONCAT ("percent_define_syncline(", variable, ")");
438 char const *how_name = UNIQSTR_CONCAT ("percent_define_how(", variable, ")");
467 muscle_percent_define_get(char const *variable) argument
485 muscle_percent_define_get_loc(char const *variable) argument
496 muscle_percent_define_get_syncline(char const *variable) argument
510 muscle_percent_define_ifdef(char const *variable) argument
531 muscle_percent_define_flag_if(char const *variable) argument
563 muscle_percent_define_default(char const *variable, char const *value) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A Djsilver.sablecc64 args, // Args to command: "some.variable=3 ?>"
222 | {set} cs_open set command_delimiter variable assignment expression cs_close
226 variable.variable,
229 | {name} cs_open name command_delimiter variable cs_close
233 variable.variable)}
253 | {with} cs_open with command_delimiter variable assignment expression cs_close
259 variable.variable,
[all...]
/external/compiler-rt/make/
H A Dutil.mk31 # Function: Set variable value
33 # Set the given make variable to the given value.
36 # Function: Append variable value
38 # Append the given value to the given make variable.
41 # Function: IsDefined variable
43 # Check whether the given variable is defined.
46 # Function: IsUndefined variable
48 # Check whether the given variable is undefined.
51 # Function: VarOrDefault variable default-value
53 # Get the value of the given make variable, o
[all...]
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dninja_syntax.py30 def variable(self, key, value, indent=0): member in class:Writer
39 self.variable('depth', depth, indent=1)
45 self.variable('command', command, indent=1)
47 self.variable('description', description, indent=1)
49 self.variable('depfile', depfile, indent=1)
51 self.variable('generator', '1', indent=1)
53 self.variable('pool', pool, indent=1)
55 self.variable('restat', '1', indent=1)
57 self.variable('rspfile', rspfile, indent=1)
59 self.variable('rspfile_conten
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
H A DNameFunction.java27 * Returns the Data variable name for a local variable alias.
32 * @param args A local variable
39 Data variable = variableValue.getReference();
40 if (variable != null) {
41 return literalValue(variable.getSymlink().getName(), variableValue.getEscapeMode(),
/external/smack/src/org/jivesoftware/smackx/
H A DReportedData.java157 private String variable; field in class:ReportedData.Column
164 * @param variable the variable name of the column.
167 public Column(String label, String variable, String type) { argument
169 this.variable = variable;
210 * Returns the variable name that the column is showing.
212 * @return the variable name of the column.
215 return variable;
229 * Returns the values of the field whose variable matche
234 getValues(String variable) argument
255 private String variable; field in class:ReportedData.Field
258 Field(String variable, List<String> values) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
H A DFormValue.cpp40 NPError FormValue::NPP_GetValue(NPPVariable variable, void *value) argument
42 if (variable == NPPVformValue) {
H A DPluginScriptableNPObjectInvokeDefault.cpp50 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
52 if (variable != NPPVpluginScriptableNPObject)
/external/chromium_org/third_party/libjingle/source/talk/build/
H A Dcommon.gypi45 'java_home%': '<!(python -c "import os; dir=os.getenv(\'JAVA_HOME\', \'/usr/lib/jvm/java-6-sun\'); assert os.path.exists(os.path.join(dir, \'include/jni.h\')), \'Point \\$JAVA_HOME or the java_home gyp variable to a directory containing include/jni.h!\'; print dir")',
/external/chromium_org/third_party/angle_dx11/src/compiler/
H A DVariablePacker.cpp209 const TVariableInfo& variable = variables[ii];
210 if (GetNumComponentsPerRow(variable.type) != 4) {
213 topNonFullRow_ += GetNumRows(variable.type) * variable.size;
223 const TVariableInfo& variable = variables[ii];
224 if (GetNumComponentsPerRow(variable.type) != 3) {
227 num3ColumnRows += GetNumRows(variable.type) * variable.size;
242 const TVariableInfo& variable = variables[ii];
243 if (GetNumComponentsPerRow(variable
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp10.cpp19 int variable; // expected-note {{declared here}} local
20 (void)[&Overload] () {}; // expected-error {{does not name a variable}}
23 (void)[&Variable] () {}; // expected-error {{use of undeclared identifier 'Variable'; did you mean 'variable'}}
33 (void)[local, // expected-error{{reference to local variable 'local' declared in enclosing function 'test_reaching_scope'}}
/external/qemu/distrib/sdl-1.2.15/
H A DMakefile31 $(error "The BUILD_SYSTEM variable was not defined by your configuration sub-makefile. Aborting")
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_getenv.c38 /* Put a variable of the form "name=value" into the environment */
39 int SDL_putenv(const char *variable) argument
45 sep = SDL_strchr(variable, '=');
49 bufferlen = SDL_strlen(variable)+1;
58 SDL_strlcpy(SDL_envmem, variable, bufferlen);
59 value = SDL_envmem + (sep - variable);
67 /* Retrieve a variable named "name" from the environment */
92 /* Put a variable of the form "name=value" into the environment */
93 int SDL_putenv(const char *variable) argument
102 if ( ! variable ) {
[all...]

Completed in 1510 milliseconds

1234567891011>>