HomeSort by relevance Sort by last modified time
    Searched full:variable (Results 901 - 925 of 15203) sorted by null

<<31323334353637383940>>

  /external/clang/include/clang/Sema/
ScopeInfo.h 205 /// rather than, say, an instance variable or property of another object.
208 /// considered an exact profile if \c foo is a local variable, even if
209 /// another variable \c foo2 refers to the same object as \c foo.
298 /// assigning it to a strong variable.)
364 // There are three ways to capture a local variable:
376 /// The variable being captured (if we are not capturing 'this') and whether
382 /// is only required if we are capturing ByVal and the variable's type has
433 /// \brief Retrieve the location at which this variable was captured.
493 /// \brief Determine whether the given variable has been captured.
498 /// \brief Retrieve the capture of the given variable, if it has bee
    [all...]
  /ndk/sources/host-tools/make-3.81/
NEWS 22 Up to and including this release, the '$?' variable does not contain
99 - New automatic variable: $| (added in 3.80, actually): contains all
113 - $(flavor ...) returns the flavor of a variable.
125 - Setting the SHELL make variable does NOT change the value of the
126 SHELL environment variable given to programs invoked by make. As
127 an enhancement to POSIX, if you export the make variable SHELL then
172 tested, so it can be a constructed variable name.
174 Similarly, the arguments to "export" (when not used in a variable
178 function is the _name_ of a variable. The result of the function is
179 the value of the variable, without having been expanded
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
rbt_pars.h 82 * Temporary table of variable names. When parsing is complete, this is
118 * When we encounter an undefined variable, we do not immediately signal
119 * an error, in case we are defining this variable, e.g., "$a = [a-z];".
120 * Instead, we save the name of the undefined variable, and substitute
203 * Set the variable range to [start, end] (inclusive).
210 * Assert that the given character is NOT within the variable range.
212 * variable range does not overlap characters used in a rule.
214 * @return True, if the given character is NOT within the variable range.
307 * Append the value of the given variable name to the given
309 * @param name the variable name to be appended
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafety.h 32 POK_VarDereference, ///< Dereferencing a variable (e.g. p in *p = 5;)
33 POK_VarAccess, ///< Reading or writing a variable (e.g. x in x = 5;)
38 /// example, it is an error to write a variable protected by shared version of a
47 /// variable.
49 AK_Read, ///< Reading a variable.
50 AK_Written ///< Writing a variable.
142 /// \param D -- The decl for the protected variable or function
143 /// \param POK -- The kind of protected operation (e.g. variable access)
153 /// \param D -- The decl for the protected variable or function
154 /// \param POK -- The kind of protected operation (e.g. variable access
    [all...]
  /external/icu/icu4c/source/i18n/
collationcompare.cpp 51 // Variable CE, shift it to quaternary level.
52 // Ignore all following primary ignorables, and shift further variable CEs.
55 // Store only the primary of the variable CE.
76 // Variable CE, shift it to quaternary level.
77 // Ignore all following primary ignorables, and shift further variable CEs.
80 // Store only the primary of the variable CE.
196 // Check for (lower 32 bits) == 0 as well because variable CEs are stored
307 // If there are no "variable" CEs and no non-zero quaternary weights,
320 // Variable primary or completely ignorable.
336 // Variable primary or completely ignorable
    [all...]
rbt_pars.h 82 * Temporary table of variable names. When parsing is complete, this is
118 * When we encounter an undefined variable, we do not immediately signal
119 * an error, in case we are defining this variable, e.g., "$a = [a-z];".
120 * Instead, we save the name of the undefined variable, and substitute
203 * Set the variable range to [start, end] (inclusive).
210 * Assert that the given character is NOT within the variable range.
212 * variable range does not overlap characters used in a rule.
214 * @return True, if the given character is NOT within the variable range.
307 * Append the value of the given variable name to the given
309 * @param name the variable name to be appended
    [all...]
  /external/javassist/src/main/javassist/bytecode/
LocalVariableAttribute.java 158 * variable is effective.
169 * variable is effective.
187 /* if pc == 0, then the local variable is a method parameter.
198 * This represents the name of the local variable.
207 * Returns the name of the local variable
219 * This represents the type descriptor of the local variable.
224 * It represents the type of the local variable.
247 * Returns the type descriptor of the local variable
251 * this method returns the type signature of the local variable
279 * This represents the index of the local variable
    [all...]
  /external/lldb/include/lldb/Host/
Condition.h 51 /// Unblock all threads waiting for a condition variable
60 /// Unblocks one thread waiting for the condition variable
69 /// Wait for the condition variable to be signaled.
72 /// waiting on this object's condition variable, and unblocks
74 /// signals or broadcasts this object's condition variable.
78 /// condition variable doesn't get unblocked. If \a abstime is NULL
80 /// condition variable to be unblocked.
91 /// wait an infinite amount of time for the condition variable
108 pthread_cond_t m_condition; ///< The condition variable.
114 /// A pointer to the condition variable owned by this object
    [all...]
  /external/lldb/test/lang/objc/foundation/
TestObjCMethods.py 149 self.expect("frame variable --show-types --scope", VARIABLES_DISPLAYED_CORRECTLY,
156 self.runCmd("frame variable *_cmd")
161 self.expect("frame variable --show-types self->str", VARIABLES_DISPLAYED_CORRECTLY,
165 # 'frame variable self->date' displays the wrong data member
166 self.expect("frame variable --show-types self->date", VARIABLES_DISPLAYED_CORRECTLY,
170 self.expect("frame variable --show-types *self", VARIABLES_DISPLAYED_CORRECTLY,
189 # error: instance variable 'str' is protected
193 # error: instance variable 'date' is protected
241 self.assertTrue(my_var, "Made a variable object for my")
244 self.assertTrue(str_var, "Made a variable object for str"
    [all...]
  /external/llvm/docs/tutorial/
LangImpl7.rst 51 In this case, we have the variable "X", whose value depends on the path
109 variable (which lives in memory, because it is on the stack) for each
116 "i32\*" even though the variable is defined as "i32". What this means is
120 variable definitions, they are declared with the `LLVM alloca
135 variable in the LLVM IR. Stack memory allocated with the alloca
169 #. Each mutable variable becomes a stack allocation.
170 #. Each read of the variable becomes a load from the stack.
171 #. Each update of the variable becomes a store to the stack.
172 #. Taking the address of a variable just uses the stack address
251 the variable exposed so that debug info can be attached to it. Thi
    [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...]
  /hardware/intel/img/psb_video/fw/topazhp/
topazhp_bin.c 111 FW_MASTER_H264_VBR, //!< H264 variable bitrate
117 FW_MASTER_H263_VBR, //!< H263 variable bitrate
120 FW_MASTER_MPEG4_VBR, //!< MPEG4 variable bitrate
123 FW_MASTER_MPEG2_VBR, //!< MPEG2 variable bitrate
127 FW_MASTER_H264MVC_VBR, //!< MVC H264 variable bitrate
343 FW_MASTER_INFO(H264_VBR, H264VBR),//FW_MASTER_H264_VBR, //!< H264 variable bitrate
349 FW_MASTER_INFO(H263_VBR, H263VBR),//FW_MASTER_H263_VBR, //!< H263 variable bitrate
352 FW_MASTER_INFO(MPEG4_VBR, MPG4VBR),//FW_MASTER_MPEG4_VBR, //!< MPEG4 variable bitrate
355 FW_MASTER_INFO(MPEG2_VBR, MPG2VBR),//FW_MASTER_MPEG2_VBR, //!< MPEG2 variable bitrate
359 FW_MASTER_INFO(H264MVC_VBR, H264MVCVBR),//FW_MASTER_H264MVC_VBR, //!< MVC H264 variable bitrat
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_config.c 109 * configuration variable. If tags are specified before the
110 * configuration variable, they are ignored unless they match
112 * to the variable. Otherwise, an error message is printed.
229 * Arg2 configuration variable name
231 * Effects if the configuration line is <variable name> =
330 * Arg2 configuration variable name
334 * Effects if the configuration line is <variable name> =
353 * Arg2 configuration variable name
357 * Effects if the configuration line is <variable name> =
368 * line was not an assignment to variable name)
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
package-info.java 17 * classes) atomically sets a variable to the {@code updateValue} if it
35 * each provide access and updates to a single variable of the
75 * {@code volatile} variable.
78 * {@code volatile} variable.
81 * a {@code volatile} variable except that it permits reorderings with
89 * writes a variable but does <em>not</em>
134 * variable holds {@code expectedValue} and no other thread is also
135 * attempting to set the variable will eventually succeed. (Such
143 * to an atomic variable caused by a {@code weakCompareAndSet}, it does
163 * object are confined to a <em>single</em> variable
    [all...]
  /external/clang/test/SemaObjC/
arc.m 130 id x; // expected-note {{jump bypasses initialization of retaining variable}}
293 x = 0; // expected-error {{fast enumeration variables can't be modified in ARC by default; declare the variable __strong to allow this}}
297 x = 0; // expected-error {{read-only variable is not assignable}}
435 static __thread id test20_implicit; // expected-error {{thread-local variable has non-trivial ownership: type is '__strong id'}}
436 static __thread __strong id test20_strong; // expected-error {{thread-local variable has non-trivial ownership: type is '__strong id'}}
437 static __thread __weak id test20_weak; // expected-error {{thread-local variable has non-trivial ownership: type is '__weak id'}}
438 static __thread __autoreleasing id test20_autoreleasing; // expected-error {{thread-local variable has non-trivial ownership: type is '__autoreleasing id'}} expected-error {{global variables cannot have __autoreleasing ownership}}
441 static __thread id test20_implicit; // expected-error {{thread-local variable has non-trivial ownership: type is '__strong id'}}
442 static __thread __strong id test20_strong; // expected-error {{thread-local variable has non-trivial ownership: type is '__strong id'}}
443 static __thread __weak id test20_weak; // expected-error {{thread-local variable has non-trivial ownership: type is '__weak id'}
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
LocalList.java 31 * List of local variables. Each local variable entry indicates a
127 /** {@code non-null;} register spec representing the variable */
130 /** {@code non-null;} variable type (derived from {@code spec}) */
139 * the variable
235 * Gets the variable name.
237 * @return {@code null-ok;} the variable name
244 * Gets the variable signature.
246 * @return {@code null-ok;} the variable signature
253 * Gets the variable's type.
262 * Gets the number of the register holding the variable
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
LocalList.java 30 * List of local variables. Each local variable entry indicates a
126 /** {@code non-null;} register spec representing the variable */
129 /** {@code non-null;} variable type (derived from {@code spec}) */
138 * the variable
234 * Gets the variable name.
236 * @return {@code null-ok;} the variable name
243 * Gets the variable signature.
245 * @return {@code null-ok;} the variable signature
252 * Gets the variable's type.
261 * Gets the number of the register holding the variable
    [all...]
  /external/chromium_org/v8/src/
full-codegen.h 340 // Load the value of a known (PARAMETER, LOCAL, or CONTEXT) variable into
342 // SetVar) so avoid calling both on the same variable.
343 void GetVar(Register destination, Variable* var);
345 // Assign to a known (PARAMETER, LOCAL, or CONTEXT) variable. If it's in
348 // (so does GetVar) so avoid calling both on the same variable.
349 void SetVar(Variable* var,
355 // variable. Writing does not need the write barrier.
356 MemOperand StackOperand(Variable* var);
359 // variable. May emit code to traverse the context chain, loading the
362 MemOperand VarOperand(Variable* var, Register scratch)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
LocalList.java 31 * List of local variables. Each local variable entry indicates a
127 /** {@code non-null;} register spec representing the variable */
130 /** {@code non-null;} variable type (derived from {@code spec}) */
139 * the variable
235 * Gets the variable name.
237 * @return {@code null-ok;} the variable name
244 * Gets the variable signature.
246 * @return {@code null-ok;} the variable signature
253 * Gets the variable's type.
262 * Gets the number of the register holding the variable
    [all...]
  /external/chromium_org/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/chromium_org/third_party/jstemplate/
jsevalcontext.js 35 * The name of the global variable which holds the value to be returned if
79 * The context for variable definitions in which the jstemplate
81 * which replaces the parent context, variable definitions of the
82 * parent are inherited. The special variable $this points to data_.
104 * The current context object is assigned to the special variable
111 * The entire context structure is exposed as a variable so it can be
132 // If this is a top-level context, create a variable reference to the data
149 * Sets a global symbol. It will be available like a variable in every
240 * context as its parent context. It also sets the $index variable to
263 * Binds a local variable to the given value. If set from jstemplat
    [all...]
  /development/testrunner/
create_test.py 87 """Create and populate tests/AndroidManifest.xml with variable values from
95 mapping: optional user defined mapping of variable values, replaces values
125 """Create and populate tests/Android.mk with variable values from Android.mk.
132 mapping: optional user defined mapping of variable values, replaces
207 manifest does not define package variable
211 raise RuntimeError("Variable %s missing from %s" %
216 raise RuntimeError("Variable package missing from %s" % manifest.FILENAME)
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_function_inlining.cpp 125 /* Generate a new variable for the parameter. */
128 * referencing the passed in sampler variable, since that
138 * directly to this variable. If the cloned variable is left
146 /* Move the actual param into our param variable if it's an 'in' type. */
204 /* Move our param variable into the actual param if it's an 'out' type. */
271 * Replaces references to the "sampler" variable with a clone of "deref."
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
Value.java 105 * Whether this value exists. Literals always return true, but variable references will return
213 * Create a value linked to a variable name.
215 * @param name The pathname of the variable relative to the given {@link DataContext}
218 * @return A Value object that allows access to the variable name, the variable Data object (if it
219 * exists) and to the value of the variable.
255 * isEscaped}, which is true iff any part of the variable expression contains an escaping
  /external/mesa3d/src/glsl/
opt_function_inlining.cpp 125 /* Generate a new variable for the parameter. */
128 * referencing the passed in sampler variable, since that
138 * directly to this variable. If the cloned variable is left
146 /* Move the actual param into our param variable if it's an 'in' type. */
204 /* Move our param variable into the actual param if it's an 'out' type. */
271 * Replaces references to the "sampler" variable with a clone of "deref."

Completed in 657 milliseconds

<<31323334353637383940>>