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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
tentative-defs.h 2 int variable; variable
  /external/webkit/Source/JavaScriptCore/wtf/
UnusedParam.h 32 #define UNUSED_PARAM(variable) unusedParam(variable)
34 #define UNUSED_PARAM(variable) (void)variable
Alignment.h 28 #define WTF_ALIGNED(variable_type, variable, n) variable_type variable __attribute__((__aligned__(n)))
31 #define WTF_ALIGNED(variable_type, variable, n) __declspec(align(n)) variable_type variable
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/source/model/
Assignment.java 19 * Represents a variable assignment in the code being verified.
23 Variable variable; field in class:Assignment
  /external/quake/quake/src/WinQuake/
cvar.cpp 20 // cvar.c -- dynamic variable tracking
112 Con_Printf ("Cvar_Set: variable %s not found\n", var_name);
148 Adds a freestanding variable to the variable list.
151 void Cvar_RegisterVariable (cvar_t *variable)
156 if (Cvar_FindVar (variable->name))
158 Con_Printf ("Can't register variable %s, allready defined\n", variable->name);
163 if (Cmd_Exists (variable->name))
165 Con_Printf ("Cvar_RegisterVariable: %s is a command\n", variable->name)
    [all...]
  /external/webkit/Source/WebCore/plugins/
PluginDebug.h 42 CString prettyNameForNPNVariable(NPNVariable variable);
43 CString prettyNameForNPPVariable(NPPVariable variable, void* value);
44 CString prettyNameForNPNURLVariable(NPNURLVariable variable);
PluginDebug.cpp 84 CString prettyNameForNPNVariable(NPNVariable variable)
86 switch (variable) {
119 default: return "Unknown variable";
123 CString prettyNameForNPPVariable(NPPVariable variable, void* value)
125 switch (variable) {
162 default: return "Unknown variable";
166 CString prettyNameForNPNURLVariable(NPNURLVariable variable)
168 switch (variable) {
171 default: return "Unknown variable";
  /frameworks/compile/mclinker/
mcld.mk 2 $(error Must set variable MCLD_ROOT_PATH before including this! $(LOCAL_PATH))
9 $(error Must set variable LLVM_ROOT_PATH before including this! $(LOCAL_PATH))
  /external/doclava/src/com/google/doclava/
Resolution.java 24 * <p>Resolutions contain a Variable and a Value, both of which are set in the Resolution constructor.
31 * <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) {
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/
VariableLocator.java 47 * @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) {
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)
    [all...]
  /external/quake/quake/src/QW/client/
cvar.c 20 // cvar.c -- dynamic variable tracking
124 Con_Printf ("Cvar_Set: variable %s not found\n", var_name);
172 Adds a freestanding variable to the variable list.
175 void Cvar_RegisterVariable (cvar_t *variable)
180 if (Cvar_FindVar (variable->name))
182 Con_Printf ("Can't register variable %s, allready defined\n", variable->name);
187 if (Cmd_Exists (variable->name))
189 Con_Printf ("Cvar_RegisterVariable: %s is a command\n", variable->name)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 64 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...]
  /ndk/sources/host-tools/make-3.81/
variable.c 27 #include "variable.h"
42 /* Create a new pattern-specific variable struct. */
64 /* Look up a target in the pattern-specific variable list. */
104 /* Hash table of all global variable definitions. */
109 struct variable const *key = (struct variable const *) keyv;
116 struct variable const *key = (struct variable const *) keyv;
123 struct variable const *x = (struct variable const *) xv
    [all...]
variable.h 21 /* Codes in a variable definition saying where the definition came from.
25 o_default, /* Variable from the default set. */
26 o_env, /* Variable from environment. */
27 o_file, /* Variable given in a makefile. */
28 o_env_override, /* Variable from environment, if -e. */
29 o_command, /* Variable given by user. */
30 o_override, /* Variable from an `override' directive. */
31 o_automatic, /* Automatic variable -- cannot be set. */
44 /* Structure that represents one variable definition.
51 struct variable struct
105 struct variable variable; member in struct:pattern_var
    [all...]
  /external/compiler-rt/make/
util.mk 31 # 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, or the default-value if the variabl
    [all...]
  /frameworks/compile/libbcc/runtime/make/
util.mk 31 # 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, or the default-value if the variabl
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
NameFunction.java 27 * Returns the Data variable name for a local variable alias.
32 * @param args A local variable
39 Data variable = variableValue.getReference(); local
40 if (variable != null) {
41 return literalValue(variable.getSymlink().getName(), variableValue.getEscapeMode(),
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
NPRuntimeObjectFromDestroyedPlugin.cpp 60 virtual NPError NPP_GetValue(NPPVariable variable, void *value)
62 if (variable != NPPVpluginScriptableNPObject)
PluginScriptableNPObjectInvokeDefault.cpp 50 virtual NPError NPP_GetValue(NPPVariable variable, void *value)
52 if (variable != NPPVpluginScriptableNPObject)
  /bionic/libc/arch-mips/bionic/
__dso_handle.S 29 # The __dso_handle global variable is used by static
__dso_handle_so.S 29 # The __dso_handle global variable is used by static
  /bionic/libc/arch-x86/bionic/
__dso_handle.S 29 # The __dso_handle global variable is used by static
__dso_handle_so.S 29 # The __dso_handle global variable is used by static
  /development/ndk/platforms/android-9/arch-mips/src/
__dso_handle.S 29 # The __dso_handle global variable is used by static
  /development/ndk/platforms/android-9/arch-x86/src/
__dso_handle.S 29 # The __dso_handle global variable is used by static

Completed in 6981 milliseconds

1 2 3 4 5 6 7 8 91011>>