/external/clang/test/Preprocessor/ |
utf8-allowed-chars.c | 8 // Identifier characters 19 // Identifier initial characters 33 // expected-warning@9 {{using this character in an identifier is incompatible with C++98}} 34 // expected-warning@10 {{using this character in an identifier is incompatible with C++98}} 36 // expected-warning@14 {{using this character in an identifier is incompatible with C++98}} 51 // expected-warning@9 {{using this character in an identifier is incompatible with C99}} 52 // expected-warning@11 {{using this character in an identifier is incompatible with C99}} 54 // expected-warning@14 {{using this character in an identifier is incompatible with C99}} 55 // expected-warning@20 {{starting an identifier with this character is incompatible with C99}} 56 // expected-error@21 {{expected identifier}} [all...] |
ucn-allowed-chars.c | 6 // Identifier characters 17 // Identifier initial characters 43 // expected-warning@7 {{using this character in an identifier is incompatible with C++98}} 44 // expected-warning@8 {{using this character in an identifier is incompatible with C++98}} 61 // expected-warning@7 {{using this character in an identifier is incompatible with C99}} 62 // expected-warning@9 {{using this character in an identifier is incompatible with C99}} 64 // expected-warning@18 {{starting an identifier with this character is incompatible with C99}} 65 // expected-error@19 {{expected identifier}} 73 // expected-error@18 {{expected identifier}} 74 // expected-error@19 {{expected identifier}} [all...] |
/external/clang/test/Index/ |
annotate-nested-name-specifier.cpp | 143 // CHECK: Identifier: "outer_alias" [14:7 - 14:18] NamespaceRef=outer_alias:10:11 145 // CHECK: Identifier: "inner" [14:20 - 14:25] NamespaceRef=inner:2:13 147 // CHECK: Identifier: "vector" [14:27 - 14:33] OverloadedDeclRef=vector[4:12] 151 // CHECK: Identifier: "outer_alias" [16:19 - 16:30] NamespaceRef=outer_alias:10:11 153 // CHECK: Identifier: "inner" [16:32 - 16:37] NamespaceRef=inner:2:13 155 // CHECK: Identifier: "vector" [16:39 - 16:45] TemplateRef=vector:4:12 157 // CHECK: Identifier: "X" [16:46 - 16:47] TypeRef=struct X:12:8 162 // CHECK: Identifier: "outer_alias" [17:9 - 17:20] NamespaceRef=outer_alias:10:11 164 // CHECK: Identifier: "inner" [17:22 - 17:27] NamespaceRef=inner:2:13 166 // CHECK: Identifier: "vector" [17:29 - 17:35] TemplateRef=vector:4:1 [all...] |
annotate-tokens-with-default-args.cpp | 7 // CHECK: Identifier: "Foo" [3:6 - 3:9] TypeRef=struct Foo:1:8 9 // CHECK: Identifier: "m" [3:11 - 3:12] CXXMethod=m:3:11 (Definition) 11 // CHECK: Identifier: "Foo" [3:13 - 3:16] TypeRef=struct Foo:1:8 13 // CHECK: Identifier: "f" [3:18 - 3:19] ParmDecl=f:3:18 (Definition)
|
ms-if-exists.cpp | 16 // CHECK: Identifier: "T" [3:15 - 3:16] TypeRef=T:1:19 18 // CHECK: Identifier: "t" [5:5 - 5:6] DeclRefExpr=t:2:10 20 // CHECK: Identifier: "foo" [5:7 - 5:10] MemberRefExpr= 23 // CHECK: Identifier: "i" [9:10 - 9:11] VarDecl=i:9:10 (Definition)
|
/packages/apps/Dialer/tests/src/com/android/dialer/util/ |
FakeAsyncTaskExecutor.java | 68 /** Encapsulates an async task with the params and identifier it was submitted with. */ 80 public SubmittedTaskImpl(Object identifier, Runnable runnable, 82 mIdentifier = identifier; 124 public <T> AsyncTask<T, ?, ?> submit(Object identifier, 129 mNextIdentifier = identifier; 141 public <T> AsyncTask<T, ?, ?> submit(Object identifier, AsyncTask<T, ?, ?> task, T... params) { 143 return mBlockingExecutor.submit(identifier, task, params); 147 * Runs a single task matching the given identifier. 152 * Fails if there was not exactly one task matching the given identifier. 156 public void runTask(Object identifier) throws InterruptedException [all...] |
/external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/ |
MacroExpander.cpp | 72 if (token->type != Token::IDENTIFIER) 151 bool MacroExpander::pushMacro(const Macro& macro, const Token& identifier) 154 assert(!identifier.expansionDisabled()); 155 assert(identifier.type == Token::IDENTIFIER); 156 assert(identifier.text == macro.name); 159 if (!expandMacro(macro, identifier, &replacements)) 186 const Token& identifier, 205 stream << identifier.location.line; 211 stream << identifier.location.file [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
CMSSignatureAlgorithmNameGenerator.java | 9 * representations rather than the algorithm object identifier (if possible).
|
/external/chromium_org/chrome/browser/sessions/ |
session_tab_helper.h | 20 // Returns the identifier used by session restore for this tab. 23 // Identifier of the window the tab is in. 36 // Unique identifier of the tab for session restore. This id is only unique 41 // Unique identifier of the window the tab is in.
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_popup_delegate.h | 28 // Called when the autofill suggestion indicated by |identifier| has been 30 virtual void DidSelectSuggestion(int identifier) = 0; 34 int identifier) = 0; 38 int identifier) = 0;
|
/external/clang/test/CodeGen/ |
2006-09-25-DebugFilename.c | 4 int func2() { fluffy; return hfunc1(); } // expected-error {{use of undeclared identifier 'fluffy'}}
|
/external/clang/test/FixIt/ |
typo-crash.m | 5 - (int)method { return ivar; } // expected-error{{use of undeclared identifier 'ivar'}}
|
/external/clang/test/Lexer/ |
ms-extensions.cpp | 5 return "foo"bar("bar")"baz"; /*expected-warning {{identifier after literal will be treated as a reserved user-defined literal suffix in C++11}} */
|
/external/clang/test/Parser/ |
cxx-ambig-decl-expr.cpp | 12 unknown * p + 0; // expected-error {{undeclared identifier 'unknown'}}
|
cxx-class-template-specialization.cpp | 8 // expected-error@-1 {{identifier followed by '<' indicates a class template specialization but 'f' refers to a function template}}
|
cxx-namespace-alias.cpp | 7 // expected-error{{use of undeclared identifier 'A'}}
|
namespaces.cpp | 12 namespace = PR14085; // expected-error {{expected identifier}}
|
traditional_arg_scope.c | 4 int y(b) int b; {return a;} // expected-error {{use of undeclared identifier}}
|
/external/clang/test/SemaCXX/ |
PR9459.cpp | 7 {ts<a>::ap<ae_same<int>::&ae_same<>>::p(a); }; // expected-error {{use of undeclared identifier 'a'}}
|
decltype-crash.cpp | 6 decltype(a()) c; // expected-warning {{'decltype' is a keyword in C++11}} expected-error {{use of undeclared identifier 'decltype'}}
|
warn-unused-variables-error.cpp | 7 X<char> str (read_from_file()); // expected-error{{use of undeclared identifier 'read_from_file'}} \
|
/external/clang/test/SemaObjC/ |
synth-provisional-ivars.m | 24 - (int) Meth1 { return PROP1; } // expected-error {{use of undeclared identifier 'PROP1'}} 26 - (int) Meth2 { return PROP2; } // expected-error {{use of undeclared identifier 'PROP2'}} 29 - (int) Meth3 { return PROP3; } // expected-error {{use of undeclared identifier 'PROP3'}} 43 - (int) Meth { return PROP1; } // expected-error {{use of undeclared identifier 'PROP1'}}
|
/external/clang/test/SemaTemplate/ |
crash-8204126.cpp | 5 void bar() { foo(0); } // expected-error{{use of undeclared identifier 'foo'}}
|
/external/wpa_supplicant_8/src/utils/ |
uuid.h | 2 * Universally Unique IDentifier (UUID)
|
/libcore/luni/src/main/files/ |
README.cacerts | 6 and the "n" is a unique integer identifier starting at 0 to deal
|