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

1 2 3 4 5 6 7

  /development/tools/monkeyrunner/src/com/android/monkeyrunner/
ScriptRunner.java 22 private final String variable; field in class:ScriptRunner
25 private ScriptRunner(Object scope, String variable) {
27 this.variable = variable;
31 public static ScriptRunner newInstance(Object scope, String variable) {
32 return new ScriptRunner(scope, variable);
68 initInterpreter(python, scope, variable);
91 public static void initInterpreter(PythonInterpreter python, Object scope, String variable)
93 // Store the current test case as the this variable
94 python.set(variable, scope)
    [all...]
  /external/bluetooth/glib/tests/
env-test.c 51 gchar *variable = "TEST_G_SETENV"; local
55 data = g_getenv (variable);
58 result = g_setenv (variable, value1, TRUE);
61 data = g_getenv (variable);
65 result = g_setenv (variable, value2, FALSE);
68 data = g_getenv (variable);
73 result = g_setenv (variable, value2, TRUE);
76 data = g_getenv (variable);
81 g_unsetenv (variable);
82 data = g_getenv (variable);
    [all...]
  /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...]
cvar.h 71 void Cvar_RegisterVariable (cvar_t *variable);
76 // equivelant to "<name> <variable>" typed at the console
88 // attempts to match a partial variable name for command line completion
93 // command. Returns true if the command was a variable reference that
97 // Writes lines containing "set variable value" for all variables
  /external/webkit/WebCore/plugins/
PluginDebug.h 42 CString prettyNameForNPNVariable(NPNVariable variable);
43 CString prettyNameForNPPVariable(NPPVariable variable, void* value);
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";
npapi.cpp 137 NPError NPN_GetValue(NPP instance, NPNVariable variable, void* value)
142 return PluginView::getValueStatic(variable, value);
144 return pluginViewForInstance(instance)->getValue(variable, value);
147 NPError NPN_SetValue(NPP instance, NPPVariable variable, void* value)
149 return pluginViewForInstance(instance)->setValue(variable, value);
  /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...]
cvar.h 71 void Cvar_RegisterVariable (cvar_t *variable);
76 // equivelant to "<name> <variable>" typed at the console
88 // attempts to match a partial variable name for command line completion
93 // command. Returns true if the command was a variable reference that
97 // Writes lines containing "set variable value" for all variables
  /external/qemu/distrib/sdl-1.2.12/
Makefile 31 $(error "The BUILD_SYSTEM variable was not defined by your configuration sub-makefile. Aborting")
  /prebuilt/windows/sdl/host/include/SDL/
SDL_getenv.h 16 /* Put a variable of the form "name=value" into the environment */
17 extern DECLSPEC int SDLCALL SDL_putenv(const char *variable);
20 /* Retrieve a variable named "name" from the environment */
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_getenv.c 38 /* Put a variable of the form "name=value" into the environment */
39 int SDL_putenv(const char *variable)
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)
102 if ( ! variable ) {
    [all...]
  /external/webkit/WebCore/plugins/qt/
PluginPackageQt.cpp 83 static NPError staticPluginQuirkRequiresGtkToolKit_NPN_GetValue(NPP instance, NPNVariable variable, void* value)
85 if (variable == NPNVToolkit) {
90 return NPN_GetValue(instance, variable, value);
  /external/wpa_supplicant/
eap.h 118 * This integer variable is used to provide an outside timer that the
143 * get_bool - Get a boolean EAPOL state variable
144 * @variable: EAPOL boolean variable to get
145 * Returns: Value of the EAPOL variable
147 Boolean (*get_bool)(void *ctx, enum eapol_bool_var variable);
150 * set_bool - Set a boolean EAPOL state variable
152 * @variable: EAPOL boolean variable to set
153 * @value: Value for the EAPOL variable
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap.h 118 * 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...]
  /frameworks/base/tests/BrowserTestPlugin/jni/
main.cpp 52 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
53 NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value);
57 EXPORT NPError NP_GetValue(NPP instance, NPPVariable variable, void *value);
238 EXPORT NPError NP_GetValue(NPP instance, NPPVariable variable, void *value) {
240 if (variable == NPPVpluginNameString) {
246 if (variable == NPPVpluginDescriptionString) {
255 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value)
257 if (variable == NPPVpluginScriptableNPObject) {
271 NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value)
  /external/icu4c/extra/uconv/
resfiles.mk 5 # The variable FILESEPCHAR is defined by the caller to be
  /external/icu4c/samples/legacy/
Makefile 11 # - set the variable ICU_PREFIX to point at $(prefix)
14 # - set the variable ICU_LEGACY (read the README)
70 @echo ICU_PREFIX variable is not set correctly
77 @echo ICU_LEGACY variable is not set correctly.
  /external/e2fsprogs/ext2ed/
dir_com.c 13 Most of the functions use the global variable file_info (along with the special directory fields there) to save
589 because it is of variable length.
595 unsigned char *ptr,buffer [80],variable [80],value [80],temp [80]; local
610 strncpy (variable,buffer,ptr-buffer);variable [ptr-buffer]=0;
613 if (strcasecmp ("inode",variable)==0) {
616 wprintw (command_win,"Variable %s set to %lu\n",variable,dir_entry_ptr->inode);refresh_command_win ();
620 if (strcasecmp ("rec_len",variable)==0) {
623 wprintw (command_win,"Variable %s set to %lu\n",variable,dir_entry_ptr->rec_len);refresh_command_win ()
    [all...]
  /external/webkit/WebKit/mac/Plugins/
npapi.mm 142 NPError NPN_GetValue(NPP instance, NPNVariable variable, void *value)
144 return [pluginViewForInstance(instance) getVariable:variable value:value];
147 NPError NPN_SetValue(NPP instance, NPPVariable variable, void *value)
149 return [pluginViewForInstance(instance) setVariable:variable value:value];
194 NPError NPN_GetValueForURL(NPP instance, NPNURLVariable variable, const char* url, char** value, uint32* len)
196 return [pluginViewForInstance(instance) getVariable:variable forURL:url value:value length:len];
199 NPError NPN_SetValueForURL(NPP instance, NPNURLVariable variable, const char* url, const char* value, uint32 len)
201 return [pluginViewForInstance(instance) setVariable:variable forURL:url value:value length:len];
  /development/samples/BrowserPlugin/jni/
main.cpp 59 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
60 NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value);
64 EXPORT NPError NP_GetValue(NPP instance, NPPVariable variable, void *value);
402 EXPORT NPError NP_GetValue(NPP instance, NPPVariable variable, void *value) {
404 if (variable == NPPVpluginNameString) {
410 if (variable == NPPVpluginDescriptionString) {
419 NPError NPP_GetValue(NPP instance, NPPVariable variable, void* value)
421 if (variable == NPPVpluginScriptableNPObject) {
432 if (variable == kJavaSurface_ANPGetValue) {
453 NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value
    [all...]
  /external/v8/test/mjsunit/
global-load-from-eval.js 36 // Shadow with local variable.
63 // code that loads the global variable accounts for the fact that the
64 // global variable becomes shadowed by an eval-introduced variable.
84 // time in a context where the 'x' variable has been shadowed.
  /external/webkit/WebKitExamplePlugins/NetscapeCoreAnimationPlugin/
main.m 67 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
68 NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value);
220 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value)
224 switch (variable) {
243 NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value)
  /external/wpa_supplicant_6/wpa_supplicant/src/common/
ieee802_11_defs.h 249 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6803::__anon6804
258 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6803::__anon6806
265 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6803::__anon6807
272 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6803::__anon6808
283 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6803::__anon6810
286 /* only variable items: SSID, Supported rates */
287 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6803::__anon6811
295 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6803::__anon6812
304 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6803::__anon6813::__anon6814::__anon6815
318 u8 variable[0]; /* FT Request * member in struct:ieee80211_mgmt::__anon6803::__anon6813::__anon6814::__anon6817
325 u8 variable[0]; \/* FT Request *\/ member in struct:ieee80211_mgmt::__anon6803::__anon6813::__anon6814::__anon6818
    [all...]
  /external/bluetooth/glib/glib/
gutils.c 430 * the <envar>PATHEXT</envar> environment variable.
437 * variable. If the program is found, the return value contains the
1064 * @variable: the environment variable to get, in the GLib file name encoding.
1066 * Returns the value of an environment variable. The name and value
1070 * environment variable's value contains references to other
1073 * Return value: the value of the environment variable, or %NULL if
1074 * the environment variable is not found. The returned string may be
1079 g_getenv (const gchar *variable)
1083 g_return_val_if_fail (variable != NULL, NULL)
    [all...]

Completed in 906 milliseconds

1 2 3 4 5 6 7