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

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/Python/tests/
t047treeparser.py 74 [ '>program', '>declaration', '>variable', '>type', '<type',
75 '>declarator', '<declarator', '<variable', '<declaration',
76 '>declaration', '>variable', '>type', '<type', '>declarator',
77 '<declarator', '<variable', '<declaration', '>declaration',
85 '<functionHeader', '>block', '>variable', '>type', '<type',
86 '>declarator', '<declarator', '<variable', '>stat', '>forStat',
111 r = parser.variable()
116 r = walker.variable()
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
VariableSafeAbsRef.java 31 * This is a "smart" variable reference that is used in situations where
32 * an absolute path is optimized into a variable reference, but may
38 * to make sure the document context of the referenced variable is the same as
39 * the current document context, and, if it is not, execute the referenced variable's
42 public class VariableSafeAbsRef extends Variable
47 * Dereference the variable, and return the reference value. Note that lazy
48 * evaluation will occur. If a variable within scope is not found, a warning
54 * @return The evaluated variable, or an empty nodeset if not found.
  /external/chromium_org/content/shell/tools/plugin/Tests/
FormValue.cpp 19 NPError FormValue::NPP_GetValue(NPPVariable variable, void *value)
21 if (variable == NPPVformValue) {
  /external/chromium_org/net/test/
python_utils.h 15 // This is the python path variable name.
18 // Appends the dir to python path environment variable.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-3138.js 10 var f; // Variable shadows function name.
17 with ({}); // Force context allocation of both variable and function name.
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3.cpp 4 auto a = a; // expected-error{{variable 'a' declared with 'auto' type cannot appear in its own initializer}}
5 auto *b = b; // expected-error{{variable 'b' declared with 'auto' type cannot appear in its own initializer}}
6 const auto c = c; // expected-error{{variable 'c' declared with 'auto' type cannot appear in its own initializer}}
7 if (auto d = d) {} // expected-error {{variable 'd' declared with 'auto' type cannot appear in its own initializer}}
8 auto e = ({ auto f = e; 0; }); // expected-error {{variable 'e' declared with 'auto' type cannot appear in its own initializer}}
12 auto a; // expected-error{{declaration of variable 'a' with type 'auto' requires an initializer}}
14 auto *b; // expected-error{{declaration of variable 'b' with type 'auto *' requires an initializer}}
22 auto n(1,2,3); // expected-error{{initializer for variable 'n' with type 'auto' contains multiple expressions}}
  /external/clang/test/CXX/stmt.stmt/stmt.dcl/
p3-0x.cpp 34 Y y; // expected-note{{jump bypasses variable with a non-trivial destructor}}
39 Y y2; // expected-note{{jump bypasses variable with a non-trivial destructor}}
p3.cpp 33 Y y; // expected-note{{jump bypasses variable with a non-trivial destructor}}
44 Z z; // expected-note{{jump bypasses initialization of non-POD variable}}
  /external/clang/test/PCH/
pragma-diag-section.cpp 29 T b = a; // expected-warning {{variable 'a' is uninitialized}} \
31 expected-note@28 {{initialize the variable 'a' to silence}}
  /external/clang/test/Sema/
typedef-retain.c 20 r[0]=10; // expected-error {{read-only variable is not assignable}}
24 y[0] = 10; // expected-error {{read-only variable is not assignable}}
warn-unused-variables.c 1 // RUN: %clang_cc1 -fsyntax-only -Wunused-variable -fblocks -verify %s
23 int X = 4; // Shouldn't have a bogus 'unused variable X' warning.
  /external/clang/test/SemaCXX/
auto-subst-failure.cpp 4 auto a = f(); // expected-error {{variable has incomplete type 'void'}}
8 auto d(f()); // expected-error {{variable has incomplete type 'void'}}
  /external/clang/test/SemaObjC/
default-synthesize-2.m 44 id uid; // expected-note {{instance variable is declared here}}
50 @implementation Test3 // expected-warning {{autosynthesized property 'uid' will use synthesized instance variable '_uid', not existing instance variable 'uid'}}
54 uid = 0; // Use of the wrong instance variable
55 _uid = 0; // Use of the property instance variable
122 id y; // expected-note {{instance variable is declared here}}
128 @implementation Test8 @end // expected-warning {{autosynthesized property 'y' will use instance variable '_y', not existing instance variable 'y'}}
  /external/clang/test/SemaObjCXX/
abstract-class-type-ivar.mm 17 CppConcreteSub _concrete; // expected-error{{instance variable type 'CppConcreteSub' is an abstract class}}
27 @synthesize Prop; // expected-error {{synthesized instance variable type 'const CppConcreteSub' is an abstract class}}
  /external/compiler-rt/test/ubsan/TestCases/Misc/
vla.c 7 // CHECK-MINUS-ONE: vla.c:9:11: runtime error: variable length array bound evaluates to non-positive value -1
8 // CHECK-ZERO: vla.c:9:11: runtime error: variable length array bound evaluates to non-positive value 0
  /external/deqp/framework/randomshaders/
rsgShader.hpp 49 void addParameter (Variable* variable);
58 std::vector<Variable*> m_parameters;
67 ShaderInput (const Variable* variable, ConstValueRangeAccess valueRange);
70 const Variable* getVariable (void) const { return m_variable; }
75 const Variable* m_variable;
115 void getOutputs (std::vector<const Variable*>& outputs) const;
  /external/eigen/scripts/
check.in 8 echo " The EIGEN_MAKE_ARGS environment variable allows to pass args to 'make'."
10 echo " The EIGEN_CTEST_ARGS environment variable allows to pass args to 'ctest'."
  /external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/
manpage-suppress-sp.xsl 11 <xsl:variable name="content">
13 </xsl:variable>
  /external/lldb/test/functionalities/data-formatter/rdar-11988289/
TestRdar 11988289.py 60 self.expect('frame variable dictionary',
62 self.expect('frame variable mutabledict',
64 self.expect('frame variable dictionary --ptr-depth 1',
66 self.expect('frame variable mutabledict --ptr-depth 1',
68 self.expect('frame variable dictionary --ptr-depth 1 --dynamic-type no-run-target',
70 self.expect('frame variable mutabledict --ptr-depth 1 --dynamic-type no-run-target',
72 self.expect('frame variable mutabledict --ptr-depth 2 --dynamic-type no-run-target',
74 self.expect('frame variable mutabledict --ptr-depth 3 --dynamic-type no-run-target',
  /external/lldb/test/lang/objc/rdar-11355592/
TestRdar11355592.py 50 self.expect("frame variable my_string", substrs = ['const char *'])
51 self.expect("frame variable my_string --dynamic-type run-target", substrs = ['const char *'])
56 self.expect("frame variable my_foolie", substrs = ['FoolMeOnce *'])
57 self.expect("frame variable my_foolie --dynamic-type run-target", substrs = ['FoolMeOnce *'])
64 self.expect("frame variable my_string", substrs = ['const char *'])
65 self.expect("frame variable my_string --dynamic-type run-target", substrs = ['const char *'])
70 self.expect("frame variable my_foolie", substrs = ['FoolMeOnce *'])
71 self.expect("frame variable my_foolie --dynamic-type run-target", substrs = ['FoolMeOnce *'])
  /external/proguard/src/proguard/classfile/editor/
VariableRemapper.java 31 * This AttributeVisitor remaps variable indexes in all attributes that it
52 * Sets the given mapping of old variable indexes to their new indexes.
78 // cleaning up its local variable frame.
94 // Remap the variable references of the local variables.
101 // Remap the variable references of the local variables.
131 // Is the new variable index different from the original one?
150 * Returns the new variable index of the given variable.
  /external/valgrind/main/drd/tests/
annotate_hb_err.c 25 /* happens-after on a condition variable. */
28 /* condition variable operation on a h.b. annotated object. */
tc16_byterace.stderr.exp 5 a global variable declared at tc16_byterace.c:7
10 a global variable declared at tc16_byterace.c:7
  /ndk/sources/host-tools/make-3.81/tests/scripts/options/
warn-undefined-variables 21 "#MAKEFILE#:7: warning: undefined variable `UNDEFINED'
22 #MAKEFILE#:9: warning: undefined variable `UNDEFINED'
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/
environment.hpp 30 #include <boost/test/utils/runtime/env/variable.hpp>
101 // variable access
108 inline variable<T>
113 return environment::variable<T>( !vd ? rt_env_detail::init_new_var<T>( var_name, nfp::no_params ) : *vd );
119 inline variable<T>
124 return environment::variable<T>( !vd ? rt_env_detail::init_new_var<T>( var_name, m ) : *vd );
129 // direct variable value access
151 variable<T> const& v = environment::var<T>( var_name );

Completed in 413 milliseconds

<<11121314151617181920>>