/cts/tools/signature-tools/src/signature/model/impl/ |
SigTypeVariableReference.java | 28 private ITypeVariableDefinition definition; field in class:SigTypeVariableReference 30 public SigTypeVariableReference(ITypeVariableDefinition definition) { 31 this.definition = definition; 35 return definition;
|
/external/clang/test/Sema/ |
crash-invalid-array.c | 18 void foo(int a[*][2]) {(void)a[0][1]; } // expected-error {{variable length array must be bound in function definition}} 19 void foo1(int a[2][*]) {(void)a[0][1]; } // expected-error {{variable length array must be bound in function definition}} 20 void foo2(int a[*][*]) {(void)a[0][1]; } // expected-error {{variable length array must be bound in function definition}} 21 void foo3(int a[2][*][2]) {(void)a[0][1][1]; } // expected-error {{variable length array must be bound in function definition}} 22 void foo4(int a[2][*][*]) {(void)a[0][1][1]; } // expected-error {{variable length array must be bound in function definition}}
|
2009-03-09-WeakDeclarations-1.c | 8 int decl_weak_import __attribute__ ((__weak_import__)); // expected-warning {{'weak_import' attribute cannot be specified on a definition}} 9 int decl_initialized_weak_import __attribute__ ((__weak_import__)) = 13; // expected-warning {{'weak_import' attribute cannot be specified on a definition}}
|
c11-typedef-redef.c | 12 typedef int vla[N]; // expected-note{{previous definition is here}} 16 typedef vla2 vla3; // expected-note{{previous definition is here}}
|
redefinition.c | 2 int f(int a) { return 0; } // expected-note {{previous definition is here}} 13 extern inline int g(void) { return 0; } // expected-note{{previous definition}}
|
/external/clang/test/CodeGenCXX/ |
debug-info-class-nolimit.cpp | 6 // Check that we emit debug info for the definition of a struct if the 7 // definition is available, even if it's used via a pointer wrapped in a 22 // the type and no debug-info related use after we see the definition of the
|
/external/clang/test/PCH/ |
chain-implicit-definition.cpp | 15 // Key function to suppress vtable definition. 23 // Causes definition of ~B(), but it was lost when saving PCH. 36 // VTable placement would again cause definition of ~B(), hiding the bug,
|
/external/clang/test/SemaObjC/ |
method-typecheck-3.m | 6 - (B*)a; // expected-note {{previous definition is here}} 7 - (void)takesA: (A*)a; // expected-note {{previous definition is here}} 8 - (void)takesId: (id)a; // expected-note {{previous definition is here}}
|
method-undefined-warn-1.m | 11 @implementation INTF // expected-warning {{method definition for 'int_meth' not found}} \ 12 // expected-warning {{method definition for 'cls_meth' not found}} \ 13 // expected-warning {{method definition for 'cls_meth1:' not found}} 27 @implementation INTF1 // expected-warning {{method definition for 'int_meth' not found}} \ 28 // expected-warning {{method definition for 'cls_meth' not found}} \ 29 // expected-warning {{method definition for 'cls_meth1:' not found}}
|
class-conforming-protocol-2.m | 9 - (void)setDelegate:(id <NSWindowDelegate>)anObject; // expected-note {{previous definition is here}} 10 - (id <IBStringsTableWindowDelegate>) delegate; // expected-note {{previous definition is here}}
|
/external/clang/test/Index/ |
annotate-tokens.cpp | 41 // CHECK: Keyword: "struct" [1:1 - 1:7] StructDecl=bonk:1:8 (Definition) 42 // CHECK: Identifier: "bonk" [1:8 - 1:12] StructDecl=bonk:1:8 (Definition) 43 // CHECK: Punctuation: "{" [1:13 - 1:14] StructDecl=bonk:1:8 (Definition) 44 // CHECK: Punctuation: "}" [1:15 - 1:16] StructDecl=bonk:1:8 (Definition) 46 // CHECK: Keyword: "void" [2:1 - 2:5] FunctionDecl=test:2:6 (Definition) 47 // CHECK: Identifier: "test" [2:6 - 2:10] FunctionDecl=test:2:6 (Definition) 48 // CHECK: Punctuation: "(" [2:10 - 2:11] FunctionDecl=test:2:6 (Definition) 50 // CHECK: Identifier: "X" [2:16 - 2:17] ParmDecl=X:2:16 (Definition) 51 // CHECK: Punctuation: ")" [2:17 - 2:18] FunctionDecl=test:2:6 (Definition) 65 // CHECK: Keyword: "struct" [7:1 - 7:7] StructDecl=X:7:8 (Definition) [all...] |
invalid-rdar-8236270.cpp | 9 // CHECK: VarDecl=P:5:13 (Definition) Extent=[5:1 - 5:14] 10 // CHECK: VarDecl=main:6:5 (Definition) Extent=[6:1 - 6:9]
|
print-type-cxx11.cpp | 7 // CHECK: CXXMethod=f:2:8 (Definition) [type=void () {{.*}}&] [typekind=FunctionProto] lvalue-ref-qualifier [resulttype=void] [resulttypekind=Void] [isPOD=0] 8 // CHECK: CXXMethod=f:3:8 (Definition) [type=void () {{.*}}&&] [typekind=FunctionProto] rvalue-ref-qualifier [resulttype=void] [resulttypekind=Void] [isPOD=0]
|
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/ |
p15.cpp | 8 C::C(int a, // expected-note {{previous definition}} 9 int b) // expected-note {{previous definition}}
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/ |
p9-0x.cpp | 5 // definition), and recover with a "type cannot be defined in a trailing return 7 auto j() -> enum { e3 }; // expected-error{{unnamed enumeration must be a definition}} expected-error {{expected a type}}
|
/external/clang/test/CXX/temp/temp.spec/ |
cxx1y-variable-template-no-body.cpp | 16 // Should recover as if definition 17 template double pi_var = 5; // expected-error {{variable cannot be defined in an explicit instantiation; if this declaration is meant to be a variable definition, remove the 'template' keyword}} 20 T pi0 = T(3.1415926535897932385); // expected-note {{previous definition is here}} 22 template int pi0 = 10; // expected-error {{variable cannot be defined in an explicit instantiation; if this declaration is meant to be a variable definition, remove the 'template' keyword}} \ 30 template float pi1<float> = 1.0; // expected-error {{explicit template instantiation cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}} 34 template int pi1<int> = 10; // expected-error {{explicit template instantiation cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}} \
|
/external/clang/test/Misc/ |
error-limit.c | 12 // CHECK: 4:8: note: previous definition is here 15 // CHECK-NOT: 8:8: note: previous definition is here
|
/external/clang/test/Preprocessor/ |
macro_redefined.c | 9 // expected-note@1 {{previous definition is here}} 15 // expected-note@+3 {{previous definition is here}}
|
/dalvik/dx/tests/089-dex-define-object/ |
info.txt | 1 This tests that a stripped down definition of the class Object can in
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
test_handshake.py | 147 definition used in this test is a pair of an extension name and a 158 for formatted_string, definition in _TEST_TOKEN_EXTENSION_DATA: 160 definition, parse_extensions(formatted_string, 169 for formatted_string, definition in _TEST_TOKEN_EXTENSION_DATA: 171 definition, parse_extensions(formatted_string, 174 for formatted_string, definition in _TEST_QUOTED_EXTENSION_DATA: 176 definition, parse_extensions(formatted_string, 181 definition) in _TEST_REDUNDANT_TOKEN_EXTENSION_DATA: 183 definition, parse_extensions(formatted_string, 187 definition) in _TEST_REDUNDANT_QUOTED_EXTENSION_DATA [all...] |
/external/chromium_org/chrome/renderer/resources/extensions/ |
content_setting.js | 18 var getSchema = this.functionSchemas.get.definition.parameters; 26 this.functionSchemas.set.definition.parameters); 34 var clearSchema = this.functionSchemas.clear.definition.parameters; 42 this.functionSchemas.getResourceIdentifiers.definition.parameters;
|
/external/chromium_org/content/test/data/accessibility/ |
dl-expected-android.txt | 5 android.view.View clickable name='Definition'
|
/external/chromium_org/tools/json_schema_compiler/test/ |
idl_namespace_all_platforms.idl | 5 // Tests a variety of basic API definition features.
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/ |
p3.cpp | 12 // that declaration shall be a definition or the function shall have previously
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/ |
p3.cpp | 6 typedef I2 I; // expected-note {{previous definition is here}}
|