Searched defs:variable (Results 1 - 25 of 143) sorted by relevance

123456

/external/clang/test/PCH/
H A Dtentative-defs.h2 int variable; variable
/external/chromium_org/v8/test/webkit/
H A Ddfg-arguments-osr-exit-multiple-blocks.js29 return [variable];
50 var variable = 32; variable
55 variable = "32";
H A Ddfg-arguments-osr-exit.js29 return [variable];
46 var variable = 32; variable
51 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);
H A Ddfg-arguments-osr-exit-multiple-blocks-before-exit.js29 return [variable];
52 var variable = 32; variable
57 variable = "32";
/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)
H A DNPPSetWindowCalledDuringDestruction.cpp65 NPError NPPSetWindowCalledDuringDestruction::NPP_GetValue(NPPVariable variable, void* value) argument
67 if (variable != NPPVpluginScriptableNPObject)
H A DNPRuntimeObjectFromDestroyedPlugin.cpp76 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
78 if (variable != NPPVpluginScriptableNPObject)
H A DPluginScriptableObjectOverridesAllProperties.cpp71 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
73 if (variable != NPPVpluginScriptableNPObject)
H A DNPDeallocateCalledBeforeNPShutdown.cpp76 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
78 if (variable != NPPVpluginScriptableNPObject)
H A DNPRuntimeRemoveProperty.cpp158 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
160 if (variable != NPPVpluginScriptableNPObject)
H A DSlowNPPNew.cpp70 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
72 if (variable != NPPVpluginScriptableNPObject)
/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/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/chromium_org/content/test/plugin/
H A Dnpapi_test.cc87 EXPORT NPError API_CALL NP_GetValue(NPP instance, NPPVariable variable, argument
91 switch (variable) {
/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/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/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...]
/external/bison/src/
H A Dparse-gram.y210 %type <uniqstr> BRACKETED_ID ID ID_COLON TYPE variable
256 | "%define" variable content.opt
597 | variable and content.opt. |
600 /* The STRING form of variable is deprecated and is not M4-friendly.
602 variable: label
/external/ceres-solver/internal/ceres/
H A Dc_api_test.cc168 ScopedSetValue(T* variable, T new_value) argument
169 : variable_(variable), old_value_(*variable) {
170 *variable = new_value;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dflags.cc45 Type type, void* variable, FlagValue default__)
50 variable_(reinterpret_cast<FlagValue*>(variable)),
60 // of a flag variable for convenient access. Since union members
44 Flag(const char* file, const char* name, const char* comment, Type type, void* variable, FlagValue default__) argument
/external/chromium_org/third_party/angle/src/compiler/
H A DVariableInfo.cpp281 const TIntermSymbol* variable = (*i)->getAsSymbolNode(); local
287 ASSERT(variable != NULL);
290 processedSymbol = variable->getSymbol();
292 processedSymbol = TIntermTraverser::hash(variable->getOriginalSymbol(), mHashFunction);
293 getVariableInfo(variable->getType(),
294 variable->getOriginalSymbol(),
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dflags.cc45 Type type, void* variable, FlagValue default__)
50 variable_(reinterpret_cast<FlagValue*>(variable)),
60 // of a flag variable for convenient access. Since union members
44 Flag(const char* file, const char* name, const char* comment, Type type, void* variable, FlagValue default__) argument
/external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
H A Dformat.py48 def variable(self, name): member in class:Formatter
81 def variable(self, name): member in class:AnsiFormatter
83 Formatter.variable(self, name)
150 def variable(self, name): member in class:WindowsConsoleFormatter
152 Formatter.variable(self, name)

Completed in 549 milliseconds

123456