/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t040bug80.g | 8 | {false}? Identifier 9 | Identifier 13 Identifier: 'a'..'z'+ ; // with just 'a', output compiles
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t040bug80.g | 8 | {False}? Identifier 9 | Identifier 13 Identifier: 'a'..'z'+ ; // with just 'a', output compiles
|
/external/clang/test/Misc/ |
diag-verify.cpp | 4 // "use of undeclared identifier 'y'" error message. 9 x = y; // expected-error{{use of undeclared identifier 'y'}} 10 x = y; // expected-error{{use of undeclared identifier}} 11 x = y; // expected-error{{undeclared identifier 'y'}} 13 x = y; // expected-error{{undeclared identifier}} 17 x = y; // expected-error{{use of undeclared identifier 'y' is fine}} 18 x = y; // expected-error{{abuse of undeclared identifier 'y'}} 19 x = y; // expected-error{{good use of undeclared identifier 'y' in code}} 20 x = y; // expected-error{{ use of undeclared identifier 'y' }} 21 x = y; // expected-error{{use of undeclared identifier 'y' is disallowed} [all...] |
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
glGetObjectLabelKHR.java | 1 // C function void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label ) 3 public static native String glGetObjectLabelKHR(int identifier, int name);
|
glGetObjectLabelKHR.cpp | 1 /* void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label ) */ 3 android_glGetObjectLabelKHR(JNIEnv *_env, jobject _this, jint identifier, jint name) {
|
/external/clang/test/Modules/Inputs/ |
lookup_left.hpp | 3 #pragma weak weak_identifier // expected-warning{{weak identifier 'weak_identifier' never declared}}
|
/external/mesa3d/src/glsl/glcpp/tests/ |
059-token-pasting-integer.c | 4 paste(identifier,2)
|
102-garbage-after-endif.c.expected | 1 0:2(8): preprocessor error: syntax error, unexpected IDENTIFIER, expecting NEWLINE
|
103-garbage-after-else.c.expected | 1 0:2(7): preprocessor error: syntax error, unexpected IDENTIFIER, expecting NEWLINE
|
/frameworks/base/docs/html/sdk/api_diff/20/ |
user_comments_for_19_to_20.xml | 17 <!-- The id attribute in an identifier element identifies the change as noted in the report. 19 text. A comment element can have multiple identifier elements, which will will cause the same 31 <identifier id="android"/> 37 <identifier id="android.Manifest.permission"/> 43 <identifier id="android.Manifest.permission.BODY_SENSORS"/> 49 <identifier id="android.R.attr"/> 55 <identifier id="android.R.attr.allowEmbedded"/> 61 <identifier id="android.R.attr.windowSwipeToDismiss"/> 67 <identifier id="android.app"/> 73 <identifier id="android.app.Notification"/ [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
DERObjectIdentifier.java | 10 public DERObjectIdentifier(String identifier) 12 super(identifier);
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/ |
DigestAlgorithmIdentifierFinder.java | 8 * Find the digest algorithm identifier that matches with 9 * the passed in signature algorithm identifier. 12 * @return an algorithm identifier for the corresponding digest. 17 * Find the algorithm identifier that matches with 21 * @return an algorithm identifier for the digest signature.
|
SignatureAlgorithmIdentifierFinder.java | 8 * Find the signature algorithm identifier that matches with 12 * @return an algorithm identifier for the corresponding signature.
|
/frameworks/base/docs/html/sdk/api_diff/21/ |
user_comments_for_20_to_21.xml | 17 <!-- The id attribute in an identifier element identifies the change as noted in the report. 19 text. A comment element can have multiple identifier elements, which will will cause the same 31 <identifier id="android"/> 37 <identifier id="android.Manifest.permission"/> 43 <identifier id="android.Manifest.permission.BIND_DREAM_SERVICE"/> 49 <identifier id="android.Manifest.permission.BIND_TV_INPUT"/> 55 <identifier id="android.Manifest.permission.BIND_VOICE_INTERACTION"/> 61 <identifier id="android.Manifest.permission.GET_TASKS"/> 67 <identifier id="android.Manifest.permission.READ_SOCIAL_STREAM"/> 73 <identifier id="android.Manifest.permission.READ_VOICEMAIL"/ [all...] |
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/example/Structure/ |
PolicySubsystem.xml | 16 <ComponentType Name="Strategies" Description="Identifier must match the enum value to make 18 <Component Name="media" Type="StrategyConfig" Mapping="Amend1:Media,Identifier:0"/> 19 <Component Name="phone" Type="StrategyConfig" Mapping="Amend1:Phone,Identifier:1"/> 21 Mapping="Amend1:Sonification,Identifier:2"/> 23 Mapping="Amend1:SonificationRespectful,Identifier:3"/> 24 <Component Name="dtmf" Type="StrategyConfig" Mapping="Amend1:Dtmf,Identifier:4"/> 26 Mapping="Amend1:EnforcedAudible,Identifier:5"/> 28 Mapping="Amend1:TransmittedThroughSpeaker,Identifier:6"/> 30 Mapping="Amend1:Accessibility,Identifier:7"/> 32 Mapping="Amend1:Rerouting,Identifier:8"/ [all...] |
/external/v8/test/webkit/ |
keywords-and-reserved_words.js | 63 return "identifier"; 67 shouldBe('classifyIdentifier("x")', '"identifier"'); 68 shouldBe('classifyIdentifier("id")', '"identifier"'); 69 shouldBe('classifyIdentifier("identifier")', '"identifier"'); 70 shouldBe('classifyIdentifier("keyword")', '"identifier"'); 71 shouldBe('classifyIdentifier("strict")', '"identifier"'); 72 shouldBe('classifyIdentifier("use")', '"identifier"'); 74 shouldBe('classifyIdentifier("abstract")', '"identifier"'); 75 shouldBe('classifyIdentifier("boolean")', '"identifier"'); [all...] |
keywords-and-reserved_words-expected.txt | 29 PASS classifyIdentifier("x") is "identifier" 30 PASS classifyIdentifier("id") is "identifier" 31 PASS classifyIdentifier("identifier") is "identifier" 32 PASS classifyIdentifier("keyword") is "identifier" 33 PASS classifyIdentifier("strict") is "identifier" 34 PASS classifyIdentifier("use") is "identifier" 35 PASS classifyIdentifier("abstract") is "identifier" 36 PASS classifyIdentifier("boolean") is "identifier" 37 PASS classifyIdentifier("byte") is "identifier" [all...] |
/external/clang/test/Parser/ |
parenthesis-balance.cpp | 4 if (int foo = f(bar)) {} // expected-error{{use of undeclared identifier 'bar'}} 5 while (int foo = f(bar)) {} // expected-error{{use of undeclared identifier 'bar'}} 6 for (int foo = f(bar);;) {} // expected-error{{use of undeclared identifier 'bar'}}
|
CompoundStmtScope.c | 7 X Y; // expected-error {{use of undeclared identifier}}
|
pragma-pack.c | 14 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ #pragma pack(push,) 15 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ #pragma pack(push,) 16 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ #pragma pack(pop,) 19 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ #pragma pack(push,i, 20 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ #pragma pack(push,i,) 21 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ #pragma pack(push,i,help) 32 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ _Pragma("pack(push,)")
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/ |
Combined.g | 7 stat: identifier+ ; 9 identifier
|
/external/clang/test/Lexer/ |
dollar-idents.c | 5 // CHECK: identifier '$A' 6 // CHECK-ASM: identifier 'A'
|
/external/llvm/test/MC/AsmParser/ |
bad-macro.s | 5 // CHECK: expected identifier in '.macro' directive 9 // CHECK: expected identifier in '.macro' directive
|
/external/javassist/src/main/javassist/compiler/ast/ |
Symbol.java | 21 * Identifier. 24 protected String identifier; field in class:Symbol 27 identifier = sym; 30 public String get() { return identifier; } 32 public String toString() { return identifier; }
|
/external/clang/test/Sema/ |
typo-correction.c | 6 __typeof__(struct F*) var[invalid]; // expected-error-re {{use of undeclared identifier 'invalid'{{$}}}} 10 x = (float)arst; // expected-error-re {{use of undeclared identifier 'arst'{{$}}}} 14 // expected-error {{use of undeclared identifier 'b'}} 18 // expected-error {{use of undeclared identifier 'goobar'; did you mean 'foobar'?}} \ 27 case SOME_ENUM_: // expected-error {{use of undeclared identifier 'SOME_ENUM_'; did you mean 'SOME_ENUM'}} 34 _Generic(hello, int : banana)(); // expected-error-re {{use of undeclared identifier 'hello'{{$}}}} 35 _Generic(arg, int : bandana)(); // expected-error {{use of undeclared identifier 'bandana'; did you mean 'banana'?}}
|