HomeSort by relevance Sort by last modified time
    Searched full:identifier (Results 26 - 50 of 5406) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/glcpp/tests/
103-garbage-after-else.c.expected 1 0:2(7): preprocessor error: syntax error, unexpected IDENTIFIER, expecting NEWLINE
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ResourceLoadNotifier.cpp 49 void ResourceLoadNotifier::dispatchWillSendRequest(DocumentLoader* loader, unsigned long identifier, ResourceRequest& request, const ResourceResponse& redirectResponse, const FetchInitiatorInfo& initiatorInfo)
52 m_frame->loader()->client()->dispatchWillSendRequest(loader, identifier, request, redirectResponse);
53 InspectorInstrumentation::willSendRequest(m_frame, identifier, loader, request, redirectResponse, initiatorInfo);
56 void ResourceLoadNotifier::dispatchDidReceiveResponse(DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r, ResourceLoader* resourceLoader)
59 page->progress()->incrementProgress(identifier, r);
60 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceResponse(m_frame, identifier, r);
61 m_frame->loader()->client()->dispatchDidReceiveResponse(loader, identifier, r);
62 InspectorInstrumentation::didReceiveResourceResponse(cookie, identifier, loader, r, resourceLoader);
65 void ResourceLoadNotifier::dispatchDidReceiveData(DocumentLoader*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength)
68 page->progress()->incrementProgress(identifier, data, dataLength)
    [all...]
  /external/chromium_org/v8/test/webkit/
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/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
Combined.g 7 stat: identifier+ ;
9 identifier
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
SignatureAlgorithmIdentifierFinder.java 8 * Find the signature algorithm identifier that matches with
12 * @return an algorithm identifier for the corresponding signature.
  /external/chromium_org/content/public/test/
test_browser_thread.cc 16 explicit TestBrowserThreadImpl(BrowserThread::ID identifier)
17 : BrowserThreadImpl(identifier),
21 TestBrowserThreadImpl(BrowserThread::ID identifier,
23 : BrowserThreadImpl(identifier, message_loop),
47 TestBrowserThread::TestBrowserThread(BrowserThread::ID identifier)
48 : impl_(new TestBrowserThreadImpl(identifier)) {
51 TestBrowserThread::TestBrowserThread(BrowserThread::ID identifier,
53 : impl_(new TestBrowserThreadImpl(identifier, message_loop)) {}
  /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; }
  /frameworks/base/docs/html/sdk/api_diff/6/
user_comments_for_5_to_6.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.R.attr"/>
43 <identifier id="android.R.attr.quickContactBadgeStyleSmallWindowLarge"/>
49 <identifier id="android.R.attr.quickContactBadgeStyleSmallWindowMedium"/>
55 <identifier id="android.R.attr.quickContactBadgeStyleSmallWindowSmall"/>
61 <identifier id="android.R.attr.quickContactBadgeStyleWindowLarge"/>
67 <identifier id="android.R.attr.quickContactBadgeStyleWindowMedium"/>
73 <identifier id="android.R.attr.quickContactBadgeStyleWindowSmall"/
    [all...]
  /external/clang/test/Parser/
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/clang/test/SemaCXX/
function-overload-typo-crash.cpp 10 fin(); //expected-error {{use of undeclared identifier 'fin'; did you mean 'min'}}
11 fax(0); //expected-error {{use of undeclared identifier 'fax'; did you mean 'max'}}
23 somefun(i, j); //expected-error {{use of undeclared identifier 'somefun'; did you mean 'somefunc'?}}
24 somefun(x); //expected-error {{use of undeclared identifier 'somefun'; did you mean 'somefunc'?}}
25 somefun(i, l); //expected-error {{use of undeclared identifier 'somefun'; did you mean 'somefunc'?}}
26 somefun(l, x); //expected-error {{use of undeclared identifier 'somefun'; did you mean 'somefunc'?}}
27 somefun(i, x); //expected-error {{use of undeclared identifier 'somefun'; did you mean 'somefunc'?}}
  /external/dropbear/libtommath/tombc/
grammar.txt 3 identifier = numexpression; |
4 identifier[numexpression] = numexpression; |
6 for (identifer = numexpression; numexpression; identifier = numexpression) { statement } |
26 nexpr := integer | identifier | ( numexpression ) | identifier[numexpression]
28 identifier := identifer digits | identifier alpha | alpha
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Primitive.java 38 * Tests provided identifier.
40 * @param identifier identifier to be verified
41 * @return true if identifier correspond to primitive identifier of this
44 public final boolean checkTag(int identifier) {
45 return this.id == identifier;
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t014parser.g 26 'var' t=IDENTIFIER ';'
31 t=IDENTIFIER '(' ')' ';'
35 IDENTIFIER: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
t021hoist.g 6 /* With this true, enum is seen as a keyword. False, it's an identifier */
12 : identifier {enumIs = "ID"}
16 identifier
t010lexer.g 6 IDENTIFIER: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
t011lexer.g 6 IDENTIFIER:
  /external/antlr/antlr-3.4/runtime/Python/tests/
t014parser.g 25 'var' t=IDENTIFIER ';'
30 t=IDENTIFIER '(' ')' ';'
34 IDENTIFIER: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
t021hoist.g 6 /* With this true, enum is seen as a keyword. False, it's an identifier */
12 : identifier {enumIs = "ID"}
16 identifier
t010lexer.g 6 IDENTIFIER: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignatureEncryptionAlgorithmFinder.java 12 * Return the encryption algorithm identifier associated with the passed in signatureAlgorithm
13 * @param signatureAlgorithm the algorithm identifier of the signature of interest
14 * @return the algorithm identifier to be associated with the encryption algorithm used in signature creation.
  /external/chromium_org/tools/idl_parser/test_lexer/
values.in 2 identifier A123 identifier A_A
55 identifier blah
  /external/clang/test/Driver/
std.cpp 16 // CXX98: undeclared identifier 'typeof'
17 // CXX98: undeclared identifier 'decltype'
19 // GNUXX98-NOT: undeclared identifier 'typeof'
20 // GNUXX98: undeclared identifier 'decltype'
22 // CXX11: undeclared identifier 'typeof'
23 // CXX11-NOT: undeclared identifier 'decltype'
25 // GNUXX11-NOT: undeclared identifier 'typeof'
26 // GNUXX11-NOT: undeclared identifier 'decltype'
28 // CXX1Y: undeclared identifier 'typeof'
29 // CXX1Y-NOT: undeclared identifier 'decltype
    [all...]
  /external/javassist/sample/reflect/
VerboseMetaobj.java 21 public Object trapMethodcall(int identifier, Object[] args)
23 System.out.println("** trap: " + getMethodName(identifier) + "() in "
25 return super.trapMethodcall(identifier, args);

Completed in 1275 milliseconds

12 3 4 5 6 7 8 91011>>