HomeSort by relevance Sort by last modified time
    Searched refs:variable (Results 76 - 100 of 431) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/v8/src/
preparser.h 109 Scope(Scope** variable, ScopeType type)
110 : variable_(variable),
111 prev_(*variable),
116 *variable = this;
  /external/v8/test/mjsunit/regress/
regress-74.js 28 // Test that the variable introduced by catch blocks is DontDelete.
35 assertFalse(delete e, "deleting catch variable");
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginView.h 173 - (NPError)getVariable:(NPNVariable)variable value:(void *)value;
174 - (NPError)setVariable:(NPPVariable)variable value:(void *)value;
178 - (NPError)getVariable:(NPNURLVariable)variable forURL:(const char*)url value:(char**)value length:(uint32_t*)length;
179 - (NPError)setVariable:(NPNURLVariable)variable forURL:(const char*)url value:(const char*)value length:(uint32_t)length;
  /frameworks/compile/libbcc/runtime/make/
lib_util.mk 5 # Function: GetCNAVar variable-name platform-key config arch
7 # Get a per-config-and-arch variable value.
  /hardware/ti/omap4xxx/domx/make/
start.mk 24 $(error Error: variable PROJROOT not defined)
29 #$(error Error: variable BRIDGEROOT not defined)
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jsevalcontext.js 35 * The name of the global variable which holds the value to be returned if
77 * The context for variable definitions in which the jstemplate
79 * which replaces the parent context, variable definitions of the
80 * parent are inherited. The special variable $this points to data_.
103 * The current context object is assigned to the special variable
110 * The entire context structure is exposed as a variable so it can be
131 // If this is a top-level context, create a variable reference to the data
148 * Sets a global symbol. It will be available like a variable in every
239 * context as its parent context. It also sets the $index variable to
262 * Binds a local variable to the given value. If set from jstemplate
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
jsevalcontext.js 35 * The name of the global variable which holds the value to be returned if
77 * The context for variable definitions in which the jstemplate
79 * which replaces the parent context, variable definitions of the
80 * parent are inherited. The special variable $this points to data_.
103 * The current context object is assigned to the special variable
110 * The entire context structure is exposed as a variable so it can be
131 // If this is a top-level context, create a variable reference to the data
148 * Sets a global symbol. It will be available like a variable in every
239 * context as its parent context. It also sets the $index variable to
262 * Binds a local variable to the given value. If set from jstemplat
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLSelectElement.cpp 178 // FIXME: There must be a better place to update the page variable state. Investigate.
277 String variable;
279 // Spec: If the 'iname' attribute is specified and names a variable that is set,
280 // then the default option index is the validated value of that variable.
283 variable = pageState->getVariable(iname);
284 if (!variable.isEmpty())
285 m_defaultOptionIndices = parseIndexValueString(variable);
295 // and the 'name' ttribute names a variable that is set, then for each value in the 'name'
296 // variable that is present as a value in the select's option elements, the index of the
301 variable = pageState->getVariable(name)
    [all...]
  /external/libxslt/libxslt/
variables.c 2 * variables.c: Implementation of the variable storage and lookup
127 * insinde an xsl:variable and xsl:param to the lifetime of the
163 * When evaluating "select" expressions of xsl:variable
165 * to the variable itself; otherwise the tragment will be
298 * global variable or a doc acquired via the
558 * Example: The fragment of the variable must not be freed
561 * <xsl:variable name="bar">
563 * </xsl:variable>
576 * Cache or free the variable structure.
638 * First lookup expects the variable name and URI t
1780 xsltStackElemPtr variable; local
2223 xsltStackElemPtr variable = NULL, cur; local
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 17 | Ast.Variable name ->
19 | 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. *
    [all...]
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/webkit/Source/WebCore/plugins/
npfunctions.h 57 typedef NPError (*NPN_GetValueProcPtr)(NPP instance, NPNVariable variable, void *ret_value);
58 typedef NPError (*NPN_SetValueProcPtr)(NPP instance, NPPVariable variable, void *value);
69 typedef NPError (*NPN_GetValueForURLProcPtr)(NPP npp, NPNURLVariable variable, const char* url, char** value, uint32_t* len);
70 typedef NPError (*NPN_SetValueForURLProcPtr)(NPP npp, NPNURLVariable variable, const char* url, const char* value, uint32_t len);
113 typedef NPError (*NPP_GetValueProcPtr)(NPP instance, NPPVariable variable, void *ret_value);
114 typedef NPError (*NPP_SetValueProcPtr)(NPP instance, NPNVariable variable, void *value);
  /external/astl/
Android.mk 16 # define the BIONIC_TESTS environment variable to build the test programs
  /external/chromium/chrome/browser/resources/ntp4/tools/
externs.js 5 // externs.js contains variable declarations for the closure compiler
  /external/chromium/chrome/browser/resources/touch_ntp/tools/
externs.js 5 // externs.js contains variable declarations for the closure compiler
  /external/e2fsprogs/ext2ed/
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/jsilver/src/com/google/clearsilver/jsilver/interpreter/
TemplateInterpreter.java 209 Data variable = dataContext.findVariable(variableName, true); local
211 variable.setValue(value.asString());
213 // "set" was used to set a variable to a constant or escaped value like
216 variable.setEscapeMode(value.getEscapeMode());
225 * &lt;?cs name:blah &gt; command. Writes out the name of the original variable referred to by a
232 Data variable = dataContext.findVariable(variableName, false); local
233 if (variable != null) {
234 context.writeEscaped(variable.getSymlink().getName());
299 // With refers to a non-existent variable. Do nothing.
467 * &lt;?cs call:someMacro(x,y) command. Call a macro. Need to create a new variable scope to hol
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/protobuf/src/google/protobuf/io/
printer.cc 76 // 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;
  /external/v8/test/mjsunit/
smi-negative-zero.js 38 // variable op variable
55 // literal op variable
70 // variable op literal
  /external/webkit/Examples/NetscapeCocoaPlugin/
main.m 70 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
71 NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value);
360 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value)
365 NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value)
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.h 73 bool arrayErrorCheck(int line, TString& identifier, TPublicType type, TVariable*& variable);
87 TIntermTyped* initializer, TIntermNode*& intermNode, TVariable* variable = 0);
  /external/webkit/Source/WebCore/plugins/android/
PluginViewAndroid.cpp 407 bool PluginView::platformGetValueStatic(NPNVariable variable, void* value, NPError* result)
412 switch (variable) {
432 (void)anp_getInterface(variable, value, result);
498 bool PluginView::platformGetValue(NPNVariable variable, void* value, NPError* result)
500 switch (variable) {
580 (void)anp_getInterface(variable, value, &error);
587 NPError PluginView::platformSetValue(NPPVariable variable, void* value)
591 switch (variable) {
  /ndk/build/core/
main.mk 64 The APP variable is undefined or empty.)
78 APP variable defined to unknown applications: $(_bad_apps))
121 Removing unknown names from APP variable: $(_unknown_apps))\
125 The APP variable contains unknown app names: $(_unknown_apps))\

Completed in 626 milliseconds

1 2 34 5 6 7 8 91011>>