HomeSort by relevance Sort by last modified time
    Searched defs:variable (Results 1 - 23 of 23) sorted by null

  /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...]
  /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/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...]
general_com.c 304 wprintw (command_win, "Variable %s set to %s\n",
339 wprintw (command_win, "Variable %s set to %s\n",
352 wprintw (command_win, "Variable %s set to %s\n",
364 char *ptr,buffer [80],variable [80],value [80]; local
386 strncpy (variable,buffer,ptr-buffer);variable [ptr-buffer]=0;
394 if (strcmp (current_type->field_names [i],variable)==0) {
400 set_int(len, ptr, variable, value);
403 set_uint(len, ptr, variable, value);
406 set_char(len, ptr, variable, value)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11modes.c 517 const char *variable = SDL_getenv("SDL_VIDEO_FULLSCREEN_HEAD"); local
518 if ( variable ) {
519 desired = SDL_atoi(variable);
    [all...]
  /frameworks/base/tools/aidl/
AST.h 57 struct Variable : public Expression
63 Variable();
64 Variable(Type* type, const string& name);
65 Variable(Type* type, const string& name, int dimension);
66 virtual ~Variable();
90 Variable *variable; member in struct:Field
94 Field(int modifiers, Variable* variable);
130 Variable* lvalue
    [all...]
  /cts/tools/signature-tools/test/signature/converter/
ConvertClassTest.java 155 //test type variable
157 ITypeVariableDefinition variable = sigClass.getTypeParameters().get(0); local
158 assertEquals("T", variable.getName());
159 //test type variable bound
160 assertEquals(1, variable.getUpperBounds().size());
161 IClassReference bound = (IClassReference) variable.getUpperBounds().get(0);
174 //test type variable
176 ITypeVariableDefinition variable = sigClass.getTypeParameters().get(0); local
177 assertEquals("T", variable.getName());
178 //test type variable bound
586 ITypeVariableReference variable = (ITypeVariableReference) parametrizedType.getTypeArguments().get(0); local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 59 import org.apache.xpath.operations.Variable;
166 expr = variable(opPos); break;
529 * Compile a variable reference.
533 * @return reference to {@link org.apache.xpath.operations.Variable} instance.
537 protected Expression variable(int opPos) throws TransformerException method in class:Compiler
540 Variable var = new Variable();
    [all...]
  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.h 608 const Identifier& variable(unsigned index) { return m_variables[index]; } function in class:JSC::EvalCodeBlock
  /external/wpa_supplicant/
mlme.c 98 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6738::__anon6739
107 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6738::__anon6741
114 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6738::__anon6742
121 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6738::__anon6743
132 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6738::__anon6745
135 /* only variable items: SSID, Supported rates */
136 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6738::__anon6746
144 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6738::__anon6747
153 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6738::__anon6748::__anon6749::__anon6750
1041 pos = mgmt->u.auth.variable;
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
TransformerImpl.java 145 // * Use member variable to store param variables as they're
146 // * being created, use member variable so we don't
1392 ElemVariable variable = (ElemVariable)vars.elementAt(i); local
    [all...]
  /external/elfutils/src/
ld.h 522 const char *variable; member in struct:assignment
748 /* From the environment variable LD_LIBRARY_PATH. */
  /external/v8/src/arm/
codegen-arm.cc 225 Variable* par = scope()->parameter(i);
247 Variable* arguments = scope()->arguments()->var();
248 Variable* shadow = scope()->arguments_shadow()->var();
401 // a constant variable that is constant because it is read-only
402 // (such as the variable referring to a named function expression).
599 Variable* variable = expr->AsVariableProxy()->AsVariable(); local
600 if (variable != NULL && !variable->is_this() && variable->is_global())
3729 Variable* variable = node->expression()->AsVariableProxy()->AsVariable(); local
    [all...]
  /external/v8/src/
ast.h 306 Declaration(VariableProxy* proxy, Variable::Mode mode, FunctionLiteral* fun)
310 ASSERT(mode == Variable::VAR || mode == Variable::CONST);
312 ASSERT(fun == NULL || mode == Variable::VAR);
318 Variable::Mode mode() const { return mode_; }
323 Variable::Mode mode_;
893 // variable, which should be DontDelete.
921 Variable* AsVariable() {
930 ASSERT(var_ != NULL); // Variable must be resolved.
934 // Reading from a mutable variable is a side effect, but 'this' i
943 Variable* variable = AsVariable(); local
    [all...]
  /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/v8/src/ia32/
codegen-ia32.cc 213 Variable* par = scope()->parameter(i);
360 // a constant variable that is constant because it is read-only
361 // (such as the variable referring to a named function expression).
570 Variable* variable = expr->AsVariableProxy()->AsVariable(); local
571 if (variable != NULL && !variable->is_this() && variable->is_global()) {
572 // For a global variable we build the property reference
573 // <global>.<variable> and perform a (regular non-contextual) propert
5909 Variable* variable = node->expression()->AsVariableProxy()->AsVariable(); local
    [all...]
  /external/v8/src/x64/
codegen-x64.cc 365 Variable* par = scope()->parameter(i);
710 // from the stack. This also deals with cases where a local variable
3003 Variable* variable = node->expression()->AsVariableProxy()->AsVariable(); local
4919 Variable* variable = expr->AsVariableProxy()->AsVariable(); local
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 963 milliseconds