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

1234567891011>>

/external/clang/test/PCH/
H A Dtentative-defs.h2 int variable; variable
/external/webkit/Source/JavaScriptCore/wtf/
H A DUnusedParam.h32 #define UNUSED_PARAM(variable) unusedParam(variable)
34 #define UNUSED_PARAM(variable) (void)variable
H A DAlignment.h28 #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
/external/quake/quake/src/WinQuake/
H A Dcvar.cpp20 // 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) argument
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
[all...]
/external/webkit/Source/WebCore/plugins/
H A DPluginDebug.h42 CString prettyNameForNPNVariable(NPNVariable variable);
43 CString prettyNameForNPPVariable(NPPVariable variable, void* value);
44 CString prettyNameForNPNURLVariable(NPNURLVariable variable);
H A DPluginDebug.cpp84 CString prettyNameForNPNVariable(NPNVariable variable) argument
86 switch (variable) {
119 default: return "Unknown variable";
123 CString prettyNameForNPPVariable(NPPVariable variable, void* value) argument
125 switch (variable) {
162 default: return "Unknown variable";
166 CString prettyNameForNPNURLVariable(NPNURLVariable variable) argument
168 switch (variable) {
171 default: return "Unknown variable";
/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/quake/quake/src/QW/client/
H A Dcvar.c20 // 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) argument
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
[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/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/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DNPRuntimeObjectFromDestroyedPlugin.cpp60 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
62 if (variable != NPPVpluginScriptableNPObject)
H A DPluginScriptableNPObjectInvokeDefault.cpp50 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
52 if (variable != NPPVpluginScriptableNPObject)
H A DNPDeallocateCalledBeforeNPShutdown.cpp76 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
78 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/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...]
/external/chromium/build/linux/
H A Dpkg-config-wrapper34 # pkg-config's |prefix| variable.
35 prefix=`PKG_CONFIG_PATH=$config_path pkg-config --variable=prefix "$package" | sed -e 's|/usr$||'`
/external/clang/
H A Dclang.mk2 $(error Must set variable CLANG_ROOT_PATH before including this! $(LOCAL_PATH))
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DParseHelper.cpp578 // This function checks to see if a void variable has been declared and raise an error message for such a case
746 bool TParseContext::arrayErrorCheck(int line, TString& identifier, TPublicType type, TVariable*& variable) argument
760 variable = new TVariable(&identifier, TType(type));
763 variable->getType().setArraySize(type.arraySize);
765 if (! symbolTable.insert(*variable)) {
766 delete variable;
772 error(line, "variable expected", identifier.c_str(), "");
776 variable = static_cast<TVariable*>(symbol);
777 if (! variable->getType().isArray()) {
781 if (variable
819 TVariable* variable = static_cast<TVariable*>(symbol); local
888 TVariable* variable = new TVariable(&identifier, TType(type)); local
978 executeInitializer(TSourceLoc line, TString& identifier, TPublicType& pType, TIntermTyped* initializer, TIntermNode*& intermNode, TVariable* variable) argument
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
H A Deap.h118 * This integer variable is used to provide an outside timer that the
144 * get_bool - Get a boolean EAPOL state variable
145 * @variable: EAPOL boolean variable to get
146 * Returns: Value of the EAPOL variable
148 Boolean (*get_bool)(void *ctx, enum eapol_bool_var variable);
151 * set_bool - Set a boolean EAPOL state variable
153 * @variable: EAPOL boolean variable to set
154 * @value: Value for the EAPOL variable
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap.h112 * This integer variable is used to provide an outside timer that the
138 * get_bool - Get a boolean EAPOL state variable
139 * @variable: EAPOL boolean variable to get
140 * Returns: Value of the EAPOL variable
142 Boolean (*get_bool)(void *ctx, enum eapol_bool_var variable);
145 * set_bool - Set a boolean EAPOL state variable
147 * @variable: EAPOL boolean variable to set
148 * @value: Value for the EAPOL variable
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap.h112 * This integer variable is used to provide an outside timer that the
138 * get_bool - Get a boolean EAPOL state variable
139 * @variable: EAPOL boolean variable to get
140 * Returns: Value of the EAPOL variable
142 Boolean (*get_bool)(void *ctx, enum eapol_bool_var variable);
145 * set_bool - Set a boolean EAPOL state variable
147 * @variable: EAPOL boolean variable to set
148 * @value: Value for the EAPOL variable
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap.h112 * This integer variable is used to provide an outside timer that the
138 * get_bool - Get a boolean EAPOL state variable
139 * @variable: EAPOL boolean variable to get
140 * Returns: Value of the EAPOL variable
142 Boolean (*get_bool)(void *ctx, enum eapol_bool_var variable);
145 * set_bool - Set a boolean EAPOL state variable
147 * @variable: EAPOL boolean variable to set
148 * @value: Value for the EAPOL variable
[all...]

Completed in 856 milliseconds

1234567891011>>