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

<<31323334353637383940>>

  /ndk/tests/device/test-stlport_static-exception/jni/
singleton.cpp 6 // 2. the program crashes, because apparently the static variable s in
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
opcode.h 124 #define LOAD_FAST 124 /* Local variable number */
125 #define STORE_FAST 125 /* Local variable number */
126 #define DELETE_FAST 126 /* Local variable number */
135 #define LOAD_CLOSURE 135 /* Load free variable from closure */
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
opcode.h 124 #define LOAD_FAST 124 /* Local variable number */
125 #define STORE_FAST 125 /* Local variable number */
126 #define DELETE_FAST 126 /* Local variable number */
135 #define LOAD_CLOSURE 135 /* Load free variable from closure */
  /system/core/include/cutils/
cpu_info.h 26 ** The string is a static variable, so don't call free() on it.
  /system/extras/tests/bionic/libc/common/
test_dlopen_null.c 20 * variable reference here to prevent this.
  /system/extras/tests/bionic/libstdc++/
README.TXT 3 You must define the BIONIC_TESTS environment variable to build these
  /system/extras/tests/sdcard/
Android.mk 16 # define the BIONIC_TESTS environment variable to build the test programs
  /external/chromium_org/third_party/icu/source/common/
rbbirpt.txt 103 # could be a parenthesized expression, a variable name, or a Unicode Set.
118 # term-var-ref We've just finished scanning a reference to a $variable.
119 # Check that the variable was defined.
120 # The variable name scanning is in common with assignment statements,
233 # Variable Name Scanning.
236 # to go to after completion of the variable name scanning.
280 # assign-or-rule. A $variable was encountered at the start of something, could be
282 # follows the variable name. We get to this state when the variable name
287 '=' n term ^assign-end doStartAssign # variable was target of assignmen
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir.h 174 * Get the variable that is ultimately referenced by an r-value
183 * If an r-value is a reference to a whole variable, get that variable
186 * Pointer to a variable that is completely dereferenced by the r-value. If
188 * entire variable (i.e., it's just one array element, struct field), \c NULL
263 * Variable storage classes
267 ir_var_uniform, /**< Variable declared as a uniform. */
273 ir_var_temporary /**< Temporary variable generated during compilation. */
335 * This function should only be used on a shader input or output variable.
340 * Determine how this variable should be interpolated based on it
    [all...]
loop_analysis.cpp 205 /* This catches the case where the variable is used in the RHS of an
268 /* Each variable assigned in the loop that isn't already marked as being loop
272 * - Variable is written before it is read.
274 * - Only one assignment to the variable.
278 * The last requirement is the reason for the progress loop. A variable
315 /* If there is more than one assignment to a variable, it cannot be a
316 * loop induction variable. This isn't strictly true, but this is a
317 * very simple induction variable detector, and it can't handle more
329 /* The assignmnet to the variable in the loop must be unconditional.
453 /* One of the of operands of the expression must be the variable assigned
    [all...]
  /external/clang/test/OpenMP/
simd_linear_messages.cpp 39 // expected-error@+1 {{expected variable name}}
116 #pragma omp simd linear (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
122 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
123 // expected-error@+1 {{const-qualified variable cannot be linear}}
126 #pragma omp simd linear (argv[1]) // expected-error {{expected variable name}}
130 #pragma omp simd linear(h) // expected-error {{threadprivate or thread local variable cannot be linear}}
172 #pragma omp simd linear (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
178 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
179 // expected-error@+1 {{const-qualified variable cannot be linear}}
182 #pragma omp simd linear (argv[1]) // expected-error {{expected variable name}
    [all...]
  /external/clang/test/SemaCXX/
scope-check.cpp 36 C c; // expected-note {{jump bypasses variable initialization}}
83 C c1; // expected-note {{jump bypasses variable initialization}}
104 D d; // expected-note {{jump exits scope of variable with non-trivial destructor}}
155 int x = 56; // expected-note {{jump bypasses variable initialization}}
163 l1: int x = 5; // expected-note {{jump bypasses variable initialization}}
212 int a = 3; // expected-note {{jump bypasses variable initialization}}
227 C c0 = 42; // expected-note {{jump exits scope of variable with non-trivial destructor}}
294 const S &s = S(); // expected-note {{jump bypasses variable initialization}}
304 S s = {}; // expected-note {{jump bypasses variable initialization}}
432 int a = 0; // expected-note {{jump bypasses variable initialization}
    [all...]
  /external/icu/icu4c/source/common/
rbbirpt.txt 103 # could be a parenthesized expression, a variable name, or a Unicode Set.
118 # term-var-ref We've just finished scanning a reference to a $variable.
119 # Check that the variable was defined.
120 # The variable name scanning is in common with assignment statements,
233 # Variable Name Scanning.
236 # to go to after completion of the variable name scanning.
280 # assign-or-rule. A $variable was encountered at the start of something, could be
282 # follows the variable name. We get to this state when the variable name
287 '=' n term ^assign-end doStartAssign # variable was target of assignmen
    [all...]
  /external/mesa3d/src/glsl/
ir.h 174 * Get the variable that is ultimately referenced by an r-value
183 * If an r-value is a reference to a whole variable, get that variable
186 * Pointer to a variable that is completely dereferenced by the r-value. If
188 * entire variable (i.e., it's just one array element, struct field), \c NULL
263 * Variable storage classes
267 ir_var_uniform, /**< Variable declared as a uniform. */
273 ir_var_temporary /**< Temporary variable generated during compilation. */
335 * This function should only be used on a shader input or output variable.
340 * Determine how this variable should be interpolated based on it
    [all...]
loop_analysis.cpp 205 /* This catches the case where the variable is used in the RHS of an
268 /* Each variable assigned in the loop that isn't already marked as being loop
272 * - Variable is written before it is read.
274 * - Only one assignment to the variable.
278 * The last requirement is the reason for the progress loop. A variable
315 /* If there is more than one assignment to a variable, it cannot be a
316 * loop induction variable. This isn't strictly true, but this is a
317 * very simple induction variable detector, and it can't handle more
329 /* The assignmnet to the variable in the loop must be unconditional.
453 /* One of the of operands of the expression must be the variable assigned
    [all...]
  /art/test/056-const-string-jumbo/
build 23 # Note: Each string reference is stored in a separate static variable,
24 # and that variable's name is also represented in the strings, which
  /bionic/linker/
linker_environ.h 37 // Returns the value of environment variable 'name' if defined and not
41 // Returns the value of this program's AT_SECURE variable.
  /dalvik/dx/tests/095-dex-const-string-jumbo/
run 20 # Note: Each string reference is stored in a separate static variable,
21 # and that variable's name is also represented in the strings, which
  /external/bison/lib/
timevar.def 23 /* This file contains timing variable definitions, used by timevar.h
31 variable, and NAME is a character string describing its purpose. */
  /external/ceres-solver/data/nist/
Rat43.dat 13 The response variable is the dry weight of onion bulbs
14 and tops, and the predictor variable is growing time.
Roszman1.dat 13 variable is the number of quantum defects, and the
14 predictor variable is the excited energy state.
  /external/chromium_org/chrome/common/
env_vars.cc 10 // This mode can be enabled using this variable or by the kNoErrorDialogs
39 // The presence of this environment variable with a value of 1 implies that
  /external/chromium_org/chrome/common/importer/
ie_importer_test_registry_overrider_win.cc 25 // Reads the environment variable set by a previous call to
27 // Returns true if the variable was successfully read.
  /external/chromium_org/content/child/npapi/
plugin_lib_unittest.cc 16 // variable, we can get a crash if no plugin libs were marked as always loaded.
27 // For the creation of the g_loaded_libs global variable.
  /external/chromium_org/third_party/WebKit/Source/wtf/
TemporaryChange.h 33 // TemporaryChange<> is useful for setting a variable to a new value only within a
34 // particular scope. An TemporaryChange<> object changes a variable to its original

Completed in 796 milliseconds

<<31323334353637383940>>