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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elfreloc-ext.asm 1 EXTERN variable
2 mov eax, variable
3 mov ax, variable
4 mov al, variable
  /frameworks/base/tools/aidl/
Type.h 48 virtual void WriteToParcel(StatementBlock* addTo, Variable* v,
49 Variable* parcel, int flags);
50 virtual void CreateFromParcel(StatementBlock* addTo, Variable* v,
51 Variable* parcel, Variable** cl);
52 virtual void ReadFromParcel(StatementBlock* addTo, Variable* v,
53 Variable* parcel, Variable** cl);
57 virtual void WriteArrayToParcel(StatementBlock* addTo, Variable* v,
58 Variable* parcel, int flags)
    [all...]
generate_java.h 24 Variable* Get(Type* type);
25 Variable* Get(int index);
27 vector<Variable*> m_vars;
  /external/chromium_org/v8/test/webkit/
dfg-dead-speculation-expected.txt 30 PASS variable is 84
32 PASS variable is 84
34 PASS variable is 84
36 PASS variable is 84
38 PASS variable is 84
40 PASS variable is 84
42 PASS variable is 84
44 PASS variable is 84
46 PASS variable is 84
48 PASS variable is 8
    [all...]
  /external/clang/test/SemaCXX/
no-warn-unused-const-variables.cpp 1 // RUN: %clang_cc1 -fsyntax-only -Wunused-variable -Wno-unused-const-variable -verify %s
4 int i = 0; // expected-warning {{unused variable 'i'}}
warn-vla.cpp 4 int v[n]; // expected-warning {{variable length array used}}
7 void test2(int n, int v[n]) { // expected-warning {{variable length array used}}
10 void test3(int n, int v[n]); // expected-warning {{variable length array used}}
14 int v[n]; // expected-warning {{variable length array used}}
18 void test5(int n, int v[n]) { // expected-warning {{variable length array used}}
22 void test6(int n, int v[n]); // expected-warning {{variable length array used}}
25 void test7(int n, T v[n]) { // expected-warning {{variable length array used}}
  /external/clang/test/Index/Inputs/CommentXML/
valid-variable-01.xml 2 <Variable>
5 </Variable>
  /external/clang/test/Modules/Inputs/
redecl-add-after-load-top.h 3 static const int variable; member in struct:C
redecl-add-after-load.h 2 extern const int variable = 0; variable
7 extern const int variable = 0; member in namespace:N
13 const int C::variable = 0; member in class:C
18 static const int variable; member in struct:D
22 const int D::variable = 0; member in class:D
redecl-add-after-load-decls.h 2 extern const int variable;
4 constexpr int test(bool b) { return b ? variable : function(); }
8 extern const int variable;
12 constexpr int N_test(bool b) { return b ? N::variable : N::function(); }
16 constexpr int C_test(bool b) { return b ? C::variable : C::function(); }
20 static const int variable; member in struct:D
24 constexpr int D_test(bool b) { return b ? D::variable : D::function(); } // expected-note {{subexpression}} expected-note {{undefined}}
  /external/clang/test/PCH/
tentative-defs.h 2 int variable; variable
  /external/chromium_org/v8/test/message/
isvar.out 1 *%(basename)s:31: SyntaxError: builtin %%IS_VAR: not a variable
4 SyntaxError: builtin %%IS_VAR: not a variable
  /dalvik/dx/tests/114-value-propagation/
info.txt 2 stack location to a local variable. (regression test)
  /dalvik/dx/tests/100-local-mismatch/
expected.txt 2 local variable type mismatch: attempt to set or access a value of type int using a local variable of type java.lang.Object. This is symptomatic of .class transformation tools that ignore local variable information.
4 local variable type mismatch: attempt to set or access a value of type java.lang.Object using a local variable of type int. This is symptomatic of .class transformation tools that ignore local variable information.
6 local variable type mismatch: attempt to set or access a value of type int using a local variable of type byte[]. This is symptomatic of .class transformation tools that ignore local variable information.
8 local variable type mismatch: attempt to set or access a value of type java.lang.String using a local variable of (…)
    [all...]
info.txt 2 variable table entry fundamentally disagrees with an instruction that
  /external/owasp/sanitizer/tools/findbugs/doc/
manual-fo.xsl 11 <xsl:variable name="section.autolabel">1</xsl:variable>
14 <xsl:variable name="admon.graphics">1</xsl:variable>
17 <xsl:variable name="admon.graphics.path">manual/</xsl:variable>
20 <xsl:variable name="img.src.path">manual/</xsl:variable>
25 <xsl:variable name="default.image.width">5in</xsl:variable>
    [all...]
manual.xsl 16 <xsl:variable name="chunk.section.depth">0</xsl:variable>
19 <xsl:variable name="base.dir">manual/</xsl:variable>
22 <xsl:variable name="section.autolabel">1</xsl:variable>
25 <xsl:variable name="use.id.as.filename">1</xsl:variable>
28 <xsl:variable name="admon.graphics">1</xsl:variable>
    [all...]
  /external/clang/test/Sema/
warn-missing-variable-declarations.c 1 // RUN: %clang_cc1 -Wmissing-variable-declarations -fsyntax-only -verify %s
3 int vbad1; // expected-warning{{no previous extern declaration for non-static variable 'vbad1'}}
6 int vbad2 = 10; // expected-warning{{no previous extern declaration for non-static variable 'vbad2'}}
10 } vbad3; // expected-warning{{no previous extern declaration for non-static variable 'vbad3'}}
13 int vbad4 = 10; // expected-warning{{no previous extern declaration for non-static variable 'vbad4'}}
assign.c 6 x->a = 10; // expected-error {{read-only variable is not assignable}}
13 b[4] = 1; // expected-error {{read-only variable is not assignable}}
14 b2[4] = 1; // expected-error {{read-only variable is not assignable}}
for.c 5 void b2 (void) { for (void f (void);;); } // expected-error {{declaration of non-local variable}}
6 void b3 (void) { for (static int f;;); } // expected-error {{declaration of non-local variable}}
7 void b4 (void) { for (typedef int f;;); } // expected-error {{declaration of non-local variable}}
warn-vla.c 5 int v[n]; // expected-warning {{variable length array used}}
8 void test2(int n, int v[n]) { // expected-warning {{variable length array used}}
11 void test3(int n, int v[n]); // expected-warning {{variable length array used}}
  /external/llvm/test/MC/ARM/
directive-tlsdescseq.s 10 .tlsdescseq variable
12 .tlsdescseq variable
14 .tlsdescseq variable
17 .word variable(tlsdesc) + (. - 1b)
20 @ CHECK: 0x4 R_ARM_TLS_DESCSEQ variable 0x0
21 @ CHECK: 0x8 R_ARM_TLS_DESCSEQ variable 0x0
22 @ CHECK: 0xC R_ARM_TLS_DESCSEQ variable 0x0
23 @ CHECK: 0x10 R_ARM_TLS_GOTDESC variable 0x0
27 @ CHECK-ASM: .tlsdescseq variable
29 @ CHECK-ASM: .tlsdescseq variable
    [all...]
  /external/deqp/framework/randomshaders/
rsgVariableManager.cpp 21 * \brief Variable manager.
95 ValueEntry::ValueEntry (const Variable* variable)
96 : m_variable (variable)
97 , m_valueRange (variable->getType())
107 for (vector<Variable*>::iterator i = m_declaredVariables.begin(); i != m_declaredVariables.end(); i++)
110 for (vector<Variable*>::iterator i = m_liveVariables.begin(); i != m_liveVariables.end(); i++)
114 Variable* VariableScope::allocate (const VariableType& type, Variable::Storage storage, const char* name)
116 Variable* variable = new Variable(type, storage, name) local
249 Variable* variable = varScope.allocate(type, Variable::STORAGE_LOCAL, name); local
    [all...]
  /external/valgrind/main/drd/tests/
pth_uninitialized_cond.stderr.exp 2 Statically initialized condition variable.
3 Uninitialized condition variable.
4 condition variable has not been initialized: cond 0x........
  /external/chromium_org/tools/gyp/test/variables/variable-in-path/
gyptest-variable-in-path.py 8 Make sure <(CONFIGURATION_NAME) variable is correctly expanded.
18 test.run_gyp('variable-in-path.gyp')
19 test.build('variable-in-path.gyp', 'hello1')
20 test.build('variable-in-path.gyp', 'hello2')

Completed in 548 milliseconds

1 2 3 4 5 6 7 8 91011>>