Searched defs:variable (Results 1 - 25 of 85) sorted by relevance

1234

/external/clang/test/PCH/
H A Dtentative-defs.h2 int variable; variable
/external/bluetooth/glib/tests/
H A Denv-test.c51 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/doclava/src/com/google/doclava/
H A DResolution.java31 * <p>Values are the value to which the variable contained within this {@link Resolution} refers.
34 * contains "superclass" as its variable and "Dialog" as its value.
42 * Creates a new resolution with variable and value.
43 * @param variable The piece of data within a Java type that needs to be updated
45 * @param value The value to which the variable contained within this {@link Resolution} refers.
48 public Resolution(String variable, String value, InfoBuilder builder) { argument
49 mVariable = variable;
63 * @return The value to which the variable contained within this {@link Resolution} refers.
/external/libvpx/vp8/encoder/
H A Dparms.cpp74 string variable; local
84 config_file >> variable; local
92 x[variable] = value;
/external/webkit/Source/WebCore/plugins/
H A DPluginDebug.cpp84 CString prettyNameForNPNVariable(NPNVariable variable) argument
86 switch (variable) {
119 default: return "Unknown variable";
123 CString prettyNameForNPPVariable(NPPVariable variable, void* value) argument
125 switch (variable) {
162 default: return "Unknown variable";
166 CString prettyNameForNPNURLVariable(NPNURLVariable variable) argument
168 switch (variable) {
171 default: return "Unknown variable";
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DNPRuntimeObjectFromDestroyedPlugin.cpp60 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
62 if (variable != NPPVpluginScriptableNPObject)
H A DNPRuntimeRemoveProperty.cpp77 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
79 if (variable != NPPVpluginScriptableNPObject)
H A DPluginScriptableNPObjectInvokeDefault.cpp50 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
52 if (variable != NPPVpluginScriptableNPObject)
H A DNPPSetWindowCalledDuringDestruction.cpp65 NPError NPPSetWindowCalledDuringDestruction::NPP_GetValue(NPPVariable variable, void* value) argument
67 if (variable != NPPVpluginScriptableNPObject)
H A DNPDeallocateCalledBeforeNPShutdown.cpp76 virtual NPError NPP_GetValue(NPPVariable variable, void *value) argument
78 if (variable != NPPVpluginScriptableNPObject)
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DVariableLocator.java47 * @param variable the variable node to evaluate.
48 * @return a String representing the Variable name, or {@code null} if it is a compound variable
51 private String quickEval(PVariable variable) { argument
52 if (variable instanceof ANameVariable) {
53 return ((ANameVariable) variable).getWord().getText();
54 } else if (variable instanceof ADecNumberVariable) {
55 return ((ADecNumberVariable) variable).getDecNumber().getText();
56 } else if (variable instanceof AHexNumberVariable) {
57 return ((AHexNumberVariable) variable)
69 getVariableName(PVariable variable) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/stdlib/
H A DSDL_getenv.c38 /* Put a variable of the form "name=value" into the environment */
39 int SDL_putenv(const char *variable) argument
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) argument
102 if ( ! variable ) {
[all...]
/external/quake/quake/src/QW/client/
H A Dcvar.c20 // 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) argument
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
[all...]
/external/quake/quake/src/WinQuake/
H A Dcvar.cpp20 // 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) argument
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
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DSymbolTable.cpp185 TVariable *variable = new TVariable(*this, remapper); local
187 return variable;
H A DVariableInfo.cpp138 // We are only interested in attribute and uniform variable declaration.
169 // We need to visit sequence children to get to variable declarations.
182 const TIntermSymbol* variable = (*i)->getAsSymbolNode(); local
188 ASSERT(variable != NULL);
189 getVariableInfo(variable->getType(), variable->getSymbol(),
/external/webkit/Source/WebCore/plugins/qt/
H A DPluginPackageQt.cpp91 static NPError staticPluginQuirkRequiresGtkToolKit_NPN_GetValue(NPP instance, NPNVariable variable, void* value) argument
93 if (variable == NPNVToolkit) {
98 return NPN_GetValue(instance, variable, value);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dflags.cc45 Type type, void* variable, FlagValue default__)
50 variable_(reinterpret_cast<FlagValue*>(variable)),
60 // of a flag variable for convenient access. Since union members
44 Flag(const char* file, const char* name, const char* comment, Type type, void* variable, FlagValue default__) argument
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dcodegen.ml19 | Not_found -> raise (Error "unknown variable name"))
100 (* Emit the start code first, without 'variable' in scope. *)
117 let variable = build_phi [(start_val, preheader_bb)] var_name builder in var
119 (* Within the loop, the variable is defined equal to the PHI node. If it
120 * shadows an existing variable, we have to restore it, so save it
125 Hashtbl.add named_values var_name variable;
140 let next_var = build_add variable step_val "nextvar" builder in
160 add_incoming (next_var, loop_end_bb) variable;
162 (* Restore the unshadowed variable. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dcodegen.ml19 | Not_found -> raise (Error "unknown variable name"))
118 (* Emit the start code first, without 'variable' in scope. *)
135 let variable = build_phi [(start_val, preheader_bb)] var_name builder in var
137 (* Within the loop, the variable is defined equal to the PHI node. If it
138 * shadows an existing variable, we have to restore it, so save it
143 Hashtbl.add named_values var_name variable;
158 let next_var = build_add variable step_val "nextvar" builder in
178 add_incoming (next_var, loop_end_bb) variable;
180 (* Restore the unshadowed variable. *)
/external/protobuf/src/google/protobuf/io/
H A Dprinter.cc76 // Saw the start of a variable name.
85 GOOGLE_LOG(DFATAL) << " Unclosed variable name.";
95 // Replace with the variable's value.
98 GOOGLE_LOG(DFATAL) << " Undefined variable: " << varname;
104 // Advance past this variable.
120 const char* variable, const string& value) {
122 vars[variable] = value;
119 Print(const char* text, const char* variable, const string& value) argument
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocOverflowSecurityChecker.cpp34 const Expr *variable; member in struct:__anon3058::MallocOverflowCheck
37 : mulop(m), variable (v)
62 /* Look for a linear combination with a single variable, and at least
64 Reject anything that applies to the variable: an explicit cast,
139 if (const DeclRefExpr *DR_i = dyn_cast<DeclRefExpr>(i->variable)) {
150 if (isa<MemberExpr>(i->variable)) {
151 if (dyn_cast<MemberExpr>(i->variable)->getMemberDecl() == EmeMD)
/external/e2fsprogs/ext2ed/
H A Ddir_com.c13 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 ();
627 if (strcasecmp ("name_len",variable)
[all...]
H A Dgeneral_com.c364 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);
421 wprintw (command_win,"Error - Variable %s not found\n",variable);
/external/mesa3d/src/glsl/
H A Dlower_variable_index_to_cond_assign.cpp54 * underlying variable.
60 ir_rvalue *variable = new(mem_ctx) ir_dereference_variable(this->var); local
63 ? new(mem_ctx) ir_assignment(element, variable, condition)
64 : new(mem_ctx) ir_assignment(variable, element, condition);

Completed in 3030 milliseconds

1234