Home
last modified time | relevance | path

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

12345678910>>...40

/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/clang/test/Index/
Dindex-subscripting-literals.m44 // CHECK: [indexEntityReference]: kind: variable | name: idx | USR: c:@idx | lang: C | cursor:…
45 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: p | USR: c:@p | lang: C | cursor: Dec…
49 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: p | USR: c:@p | lang: C | cursor: Dec…
50 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: p | USR: c:@p | lang: C | cursor: Dec…
51 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: idx | USR: c:@idx | lang: C | cursor:…
53 // CHECK-NEXT: [indexDeclaration]: kind: variable | name: key
55 // CHECK: [indexEntityReference]: kind: variable | name: oldObject
56 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: key | USR: c:@key | lang: C | cursor:…
58 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: key | USR: c:@key | lang: C | cursor:…
59 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: newObject | USR: c:@newObject | lang:…
[all …]
/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}}
Divar-lookup.m46 return a + b; // expected-error{{instance variable 'a' accessed in class method}} \
47 // expected-error{{instance variable 'b' accessed in class method}}
60 int IVAR; // expected-error {{instance variable is already declared}}
67 int IVAR; // expected-error {{instance variable is already declared}}
73 int IVAR; // expected-error {{instance variable is already declared}}
74 int PIVAR; // expected-error {{instance variable is already declared}}
80 int IVAR; // expected-error {{instance variable is already declared}}
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}}
/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/clang/test/SemaObjCXX/
Darc-nsconsumed-errors.mm6 …attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of type '__strong…
10 …attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of type '__strong…
12 blk d = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk'}}
14 …ibute((ns_consumed)) id, id){}; // expected-error {{cannot initialize a variable of type '__strong…
16 …attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of type '__strong…
20 blk1 d4 = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk…
Darc-0x.mm38 (void) [p] {}; // expected-error {{cannot capture __autoreleasing variable in a lambda by copy}}
39 …(void) [=] { (void) p; }; // expected-error {{cannot capture __autoreleasing variable in a lambda …
45 (void) [p] {}; // expected-error {{cannot capture __autoreleasing variable in a lambda by copy}}
46 …(void) [=] { (void) p; }; // expected-error {{cannot capture __autoreleasing variable in a lambda …
52 (void) ^{ (void) v; }; // expected-error {{cannot capture __autoreleasing variable in a block}}
/external/llvm/test/DebugInfo/
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/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
DSimpleCTP.g18 : variable
23 variable
47 : ^(BLOCK variable* stat*)
62 | ^(K_EQ K_ID e=expr) { NSLog(@"assigning \%@ to variable \%@", $e.text, $K_ID.text); }
/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/wpa_supplicant_8/src/common/
Dieee802_11_defs.h400 u8 variable[0]; member
404 u8 variable[0]; member
410 u8 variable[0]; member
417 u8 variable[0]; member
424 u8 variable[0]; member
428 u8 variable[0]; member
436 u8 variable[0]; member
440 u8 variable[0]; member
448 u8 variable[0]; member
457 u8 variable[0]; member
[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/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt047treeparser.g21 : variable
26 variable
52 variable*
55 -> ^(BLOCK[$lc,"BLOCK"] variable* stat*)
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt047treeparser.g21 : variable
26 variable
52 variable*
55 -> ^(BLOCK[$lc,"BLOCK"] variable* stat*)

12345678910>>...40