Home
last modified time | relevance | path

Searched refs:variable (Results 1 – 25 of 846) sorted by relevance

12345678910>>...34

/external/quake/quake/src/WinQuake/
Dcvar.cpp151 void Cvar_RegisterVariable (cvar_t *variable) in Cvar_RegisterVariable() argument
156 if (Cvar_FindVar (variable->name)) in Cvar_RegisterVariable()
158 Con_Printf ("Can't register variable %s, allready defined\n", variable->name); in Cvar_RegisterVariable()
163 if (Cmd_Exists (variable->name)) in Cvar_RegisterVariable()
165 Con_Printf ("Cvar_RegisterVariable: %s is a command\n", variable->name); in Cvar_RegisterVariable()
170 oldstr = variable->string; in Cvar_RegisterVariable()
171 variable->string = (char*) Z_Malloc (Q_strlen(variable->string)+1); in Cvar_RegisterVariable()
172 Q_strcpy (variable->string, oldstr); in Cvar_RegisterVariable()
173 variable->value = Q_atof (variable->string); in Cvar_RegisterVariable()
176 variable->next = cvar_vars; in Cvar_RegisterVariable()
[all …]
/external/bluetooth/glib/tests/
Denv-test.c51 gchar *variable = "TEST_G_SETENV"; in main() local
55 data = g_getenv (variable); in main()
58 result = g_setenv (variable, value1, TRUE); in main()
61 data = g_getenv (variable); in main()
65 result = g_setenv (variable, value2, FALSE); in main()
68 data = g_getenv (variable); in main()
73 result = g_setenv (variable, value2, TRUE); in main()
76 data = g_getenv (variable); in main()
81 g_unsetenv (variable); in main()
82 data = g_getenv (variable); in main()
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
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,
263 | {loop_to} cs_open loop command_delimiter variable assignment expression cs_close
269 variable.variable,
273 | {loop} cs_open loop command_delimiter variable assignment
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DVariableLocator.java51 private String quickEval(PVariable variable) { in quickEval() argument
52 if (variable instanceof ANameVariable) { in quickEval()
53 return ((ANameVariable) variable).getWord().getText(); in quickEval()
54 } else if (variable instanceof ADecNumberVariable) { in quickEval()
55 return ((ADecNumberVariable) variable).getDecNumber().getText(); in quickEval()
56 } else if (variable instanceof AHexNumberVariable) { in quickEval()
57 return ((AHexNumberVariable) variable).getHexNumber().getText(); in quickEval()
69 public String getVariableName(PVariable variable) { in getVariableName() argument
70 String result = quickEval(variable); in getVariableName()
76 variable.apply(this); in getVariableName()
/external/quake/quake/src/QW/client/
Dcvar.c175 void Cvar_RegisterVariable (cvar_t *variable) in Cvar_RegisterVariable() argument
180 if (Cvar_FindVar (variable->name)) in Cvar_RegisterVariable()
182 Con_Printf ("Can't register variable %s, allready defined\n", variable->name); in Cvar_RegisterVariable()
187 if (Cmd_Exists (variable->name)) in Cvar_RegisterVariable()
189 Con_Printf ("Cvar_RegisterVariable: %s is a command\n", variable->name); in Cvar_RegisterVariable()
194 variable->next = cvar_vars; in Cvar_RegisterVariable()
195 cvar_vars = variable; in Cvar_RegisterVariable()
198 strcpy (value, variable->string); in Cvar_RegisterVariable()
199 variable->string = Z_Malloc (1); in Cvar_RegisterVariable()
202 Cvar_Set (variable->name, value); in Cvar_RegisterVariable()
/external/qemu/distrib/sdl-1.2.12/src/stdlib/
DSDL_getenv.c39 int SDL_putenv(const char *variable) in SDL_putenv() argument
45 sep = SDL_strchr(variable, '='); in SDL_putenv()
49 bufferlen = SDL_strlen(variable)+1; in SDL_putenv()
58 SDL_strlcpy(SDL_envmem, variable, bufferlen); in SDL_putenv()
59 value = SDL_envmem + (sep - variable); in SDL_putenv()
93 int SDL_putenv(const char *variable) in SDL_putenv() argument
102 if ( ! variable ) { in SDL_putenv()
105 name = variable; in SDL_putenv()
106 for ( value=variable; *value && (*value != '='); ++value ) { in SDL_putenv()
116 new_variable = SDL_strdup(variable); in SDL_putenv()
/external/clang/test/SemaObjC/
Divar-access-tests.m33 access = s->private; // expected-error {{instance variable 'private' is private}}
36 access = m->private; // expected-error {{instance variable 'private' is private}}
49 access = s->private; // expected-error {{instance variable 'private' is private}}
52 access = m->private; // expected-error {{instance variable 'private' is private}}
64 access = s->private; // expected-error {{instance variable 'private' is private}}
65 access = s->protected; // expected-error {{instance variable 'protected' is protected}}
67 access = m->private; // expected-error {{instance variable 'private' is private}}
68 access = m->protected; // expected-error {{instance variable 'protected' is protected}}
76 access = s->private; // expected-error {{instance variable 'private' is private}}
77 access = s->protected; // expected-error {{instance variable 'protected' is protected}}
Dinterface-tu-variable.m4 int x; // expected-error {{cannot declare variable inside @interface or @protocol}}
5 int one=1; // expected-error {{cannot declare variable inside @interface or @protocol}}
9 int ddd; // expected-error {{cannot declare variable inside @interface or @protocol}}
13 char * III; // expected-error {{cannot declare variable inside @interface or @protocol}}
18 char * III2; // expected-error {{cannot declare variable inside @interface or @protocol}}
Dsynthesized-ivar.m16 int f0(I *a) { return a->IP; } // expected-error {{instance variable 'IP' is private}}
48 PROP_INMAIN = 1; // expected-error {{instance variable 'PROP_INMAIN' is private}}
49 PROP_INCLASSEXT = 2; // expected-error {{instance variable 'PROP_INCLASSEXT' is private}}
50 return private_ivar; // expected-error {{instance variable 'private_ivar' is private}}
/external/webkit/Source/WebCore/plugins/
DPluginDebug.cpp84 CString prettyNameForNPNVariable(NPNVariable variable) in prettyNameForNPNVariable() argument
86 switch (variable) { in prettyNameForNPNVariable()
123 CString prettyNameForNPPVariable(NPPVariable variable, void* value) in prettyNameForNPPVariable() argument
125 switch (variable) { in prettyNameForNPPVariable()
166 CString prettyNameForNPNURLVariable(NPNURLVariable variable) in prettyNameForNPNURLVariable() argument
168 switch (variable) { in prettyNameForNPNURLVariable()
Dnpapi.cpp137 NPError NPN_GetValue(NPP instance, NPNVariable variable, void* value) in NPN_GetValue() argument
142 return PluginView::getValueStatic(variable, value); in NPN_GetValue()
144 return pluginViewForInstance(instance)->getValue(variable, value); in NPN_GetValue()
147 NPError NPN_SetValue(NPP instance, NPPVariable variable, void* value) in NPN_SetValue() argument
149 return pluginViewForInstance(instance)->setValue(variable, value); in NPN_SetValue()
181 NPError NPN_GetValueForURL(NPP instance, NPNURLVariable variable, const char* url, char** value, ui… in NPN_GetValueForURL() argument
183 return pluginViewForInstance(instance)->getValueForURL(variable, url, value, len); in NPN_GetValueForURL()
186 NPError NPN_SetValueForURL(NPP instance, NPNURLVariable variable, const char* url, const char* valu… in NPN_SetValueForURL() argument
188 return pluginViewForInstance(instance)->setValueForURL(variable, url, value, len); in NPN_SetValueForURL()
DPluginDebug.h42 CString prettyNameForNPNVariable(NPNVariable variable);
43 CString prettyNameForNPPVariable(NPPVariable variable, void* value);
44 CString prettyNameForNPNURLVariable(NPNURLVariable variable);
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
DParseHelper.cpp746 …arseContext::arrayErrorCheck(int line, TString& identifier, TPublicType type, TVariable*& variable) in arrayErrorCheck() argument
760 variable = new TVariable(&identifier, TType(type)); in arrayErrorCheck()
763 variable->getType().setArraySize(type.arraySize); in arrayErrorCheck()
765 if (! symbolTable.insert(*variable)) { in arrayErrorCheck()
766 delete variable; in arrayErrorCheck()
776 variable = static_cast<TVariable*>(symbol); in arrayErrorCheck()
777 if (! variable->getType().isArray()) { in arrayErrorCheck()
781 if (variable->getType().getArraySize() > 0) { in arrayErrorCheck()
786 if (! variable->getType().sameElementType(TType(type))) { in arrayErrorCheck()
791 TType* t = variable->getArrayInformationType(); in arrayErrorCheck()
[all …]
/external/webkit/Source/JavaScriptCore/wtf/
DUnusedParam.h32 #define UNUSED_PARAM(variable) unusedParam(variable) argument
34 #define UNUSED_PARAM(variable) (void)variable argument
DAlignment.h28 …#define WTF_ALIGNED(variable_type, variable, n) variable_type variable __attribute__((__aligned__(… argument
31 #define WTF_ALIGNED(variable_type, variable, n) __declspec(align(n)) variable_type variable argument
/external/llvm/test/DebugInfo/
D2009-01-15-dbg_declare.ll3 %llvm.dbg.variable.type = type { i32, { }*, i8*, { }*, i32, { }*, i8*, i8* }
4 @llvm.dbg.variable24 = external constant %llvm.dbg.variable.type ; <%llvm.dbg.variab…
12 …call void @llvm.dbg.declare({ }* %0, { }* bitcast (%llvm.dbg.variable.type* @llvm.dbg.variable24 t…
Dprintdbginfo2.ll2 ; grep {%b is variable b of type x declared at x.c:7} %t1
3 ; grep {%2 is variable b of type x declared at x.c:7} %t1
4 ; grep {@c.1442 is variable c of type int declared at x.c:4} %t1
14 ; CHECK:; %b is variable b of type foo declared at x.c:7
16 ; CHECK:; %a is variable a of type declared at x.c:8
23 ; CHECK:; %0 is variable b of type foo declared at x.c:7
27 ; CHECK:; %1 is variable a of type declared at x.c:8
30 ; CHECK:; %tmp is variable b of type foo declared at x.c:7
34 ; CHECK:; @main.c is variable c of type int declared at x.c:6
/external/wpa_supplicant_8/src/common/
Dieee802_11_defs.h341 u8 variable[0]; member
345 u8 variable[0]; member
351 u8 variable[0]; member
358 u8 variable[0]; member
365 u8 variable[0]; member
369 u8 variable[0]; member
377 u8 variable[0]; member
381 u8 variable[0]; member
389 u8 variable[0]; member
398 u8 variable[0]; member
[all …]
/external/e2fsprogs/ext2ed/
Ddir_com.c595 unsigned char *ptr,buffer [80],variable [80],value [80],temp [80]; in type_dir___set() local
610 strncpy (variable,buffer,ptr-buffer);variable [ptr-buffer]=0; in type_dir___set()
613 if (strcasecmp ("inode",variable)==0) { in type_dir___set()
616 …wprintw (command_win,"Variable %s set to %lu\n",variable,dir_entry_ptr->inode);refresh_command_win… in type_dir___set()
620 if (strcasecmp ("rec_len",variable)==0) { in type_dir___set()
623 …wprintw (command_win,"Variable %s set to %lu\n",variable,dir_entry_ptr->rec_len);refresh_command_w… in type_dir___set()
627 if (strcasecmp ("name_len",variable)==0) { in type_dir___set()
630 …wprintw (command_win,"Variable %s set to %lu\n",variable,dir_entry_ptr->name_len);refresh_command_… in type_dir___set()
634 if (strcasecmp ("name",variable)==0) { in type_dir___set()
641 wprintw (command_win,"Variable %s set to %s\n",variable,value);refresh_command_win (); in type_dir___set()
[all …]
/external/oprofile/doc/xsl/
Dxhtml-common.xsl18 <xsl:variable name="vendor" select="system-property('xsl:vendor')"/>
19 <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable>
30 <xsl:variable name="rtf">
32 </xsl:variable>
/external/clang/lib/CodeGen/
DCGBlocks.cpp322 const VarDecl *variable = ci->getVariable(); in computeBlockInfo() local
343 if (llvm::Constant *constant = tryCaptureAsConstant(CGM, variable)) { in computeBlockInfo()
344 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant); in computeBlockInfo()
351 = variable->getType().getObjCLifetime()) { in computeBlockInfo()
364 } else if (variable->getType()->isObjCRetainableType()) { in computeBlockInfo()
375 variable->getType()->getAsCXXRecordDecl()) { in computeBlockInfo()
383 CharUnits size = C.getTypeSizeInChars(variable->getType()); in computeBlockInfo()
384 CharUnits align = C.getDeclAlign(variable); in computeBlockInfo()
388 CGM.getTypes().ConvertTypeForMem(variable->getType()); in computeBlockInfo()
547 const VarDecl *variable = ci->getVariable(); in EmitBlockLiteral() local
[all …]
/external/bluetooth/glib/glib/
Dgutils.c1079 g_getenv (const gchar *variable) in g_getenv() argument
1083 g_return_val_if_fail (variable != NULL, NULL); in g_getenv()
1085 return getenv (variable); in g_getenv()
1094 g_return_val_if_fail (variable != NULL, NULL); in g_getenv()
1095 g_return_val_if_fail (g_utf8_validate (variable, -1, NULL), NULL); in g_getenv()
1107 wname = g_utf8_to_utf16 (variable, -1, NULL, NULL, NULL); in g_getenv()
1168 _g_getenv_nomalloc (const gchar *variable, in _g_getenv_nomalloc() argument
1171 const gchar *retval = getenv (variable); in _g_getenv_nomalloc()
1204 g_setenv (const gchar *variable, in g_setenv() argument
1215 g_return_val_if_fail (variable != NULL, FALSE); in g_setenv()
[all …]
/external/clang/test/SemaCXX/
Dexpression-traits.cpp168 extern int variable;
183 static int variable; member
189 static int& NestedFuncTemplate() { return variable; } // expected-note{{candidate function}} in NestedFuncTemplate()
192 int& NestedMemfunTemplate() { return variable; } in NestedMemfunTemplate()
221 ASSERT_LVALUE(::variable); // identifier: variable in expr_prim_4()
228 ASSERT_LVALUE(::Class::variable); // qualified-id: variable in expr_prim_4()
257 ASSERT_LVALUE(variable); // identifier: variable in expr_prim_7()
/external/wpa_supplicant_6/wpa_supplicant/src/common/
Dieee802_11_defs.h249 u8 variable[0]; member
258 u8 variable[0]; member
265 u8 variable[0]; member
272 u8 variable[0]; member
283 u8 variable[0]; member
287 u8 variable[0]; member
295 u8 variable[0]; member
304 u8 variable[0]; member
318 u8 variable[0]; /* FT Request */ member
325 u8 variable[0]; /* FT Request */ member
/external/wpa_supplicant/
Deap.h147 Boolean (*get_bool)(void *ctx, enum eapol_bool_var variable);
155 void (*set_bool)(void *ctx, enum eapol_bool_var variable,
164 unsigned int (*get_int)(void *ctx, enum eapol_int_var variable);
172 void (*set_int)(void *ctx, enum eapol_int_var variable,

12345678910>>...34