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

1 2 3 4 5 6 7 8

  /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
  /bionic/libc/private/
__dso_handle.S 29 # The __dso_handle global variable is used by static
  /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/libvpx/vp8/encoder/
parms.cpp 74 string variable; local
84 config_file >> variable; local
92 x[variable] = value;
  /external/protobuf/src/google/protobuf/io/
printer.h 52 // text with variable substitutions. Example usage:
71 // Print some text after applying variable substitutions. If a particular
72 // variable in the text is not defined, this will crash. Variables to be
74 // characters (as given to the constructor). The variable bindings are
81 void Print(const char* text, const char* variable, const string& value);
  /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];
  /external/chromium/net/proxy/
proxy_config_service_linux.h 146 // Obtains an environment variable's value. Parses a proxy server
148 // requested variable is defined and the value valid.
149 bool GetProxyFromEnvVarForScheme(const char* variable,
153 bool GetProxyFromEnvVar(const char* variable, ProxyServer* result_server);
160 // requested variable is defined and the value valid.
  /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...]

Completed in 301 milliseconds

1 2 3 4 5 6 7 8