HomeSort by relevance Sort by last modified time
    Searched full:identifier (Results 126 - 150 of 5290) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1ObjectIdentifier.java 10 * Class representing the ASN.1 OBJECT IDENTIFIER type.
15 String identifier; field in class:ASN1ObjectIdentifier
47 throw new IllegalArgumentException("failed to construct object identifier from byte[]: " + e.getMessage());
55 * return an Object Identifier from a tagged object.
157 * Intern the identifier so there aren't hundreds of duplicates
160 this.identifier = objId.toString().intern();
168 * @param identifier a string representation of an OID.
171 String identifier)
173 if (identifier == null)
175 throw new IllegalArgumentException("'identifier' cannot be null")
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t033backtracking.g 115 : {this.isTypeName(this.input.LT(1).getText())}? IDENTIFIER
116 // {System.out.println($IDENTIFIER.text+" is a type");}
125 // : struct_or_union IDENTIFIER? '{' struct_declaration_list '}'
126 // | struct_or_union IDENTIFIER
158 // | 'enum' IDENTIFIER '{' enumerator_list '}'
159 // | 'enum' IDENTIFIER
167 // : IDENTIFIER ('=' constant_expression)?
181 : ( IDENTIFIER
184 $Symbols::types[$IDENTIFIER.text] = true;
185 alert ("define type "+$IDENTIFIER.text)
    [all...]
t026actions.g 19 : IDENTIFIER EOF
30 IDENTIFIER
  /external/antlr/antlr-3.4/runtime/Python/tests/
t033backtracking.g 131 : {self.isTypeName(self.input.LT(1).getText())}? IDENTIFIER
132 // {System.out.println($IDENTIFIER.text+" is a type");}
141 // : struct_or_union IDENTIFIER? '{' struct_declaration_list '}'
142 // | struct_or_union IDENTIFIER
174 // | 'enum' IDENTIFIER '{' enumerator_list '}'
175 // | 'enum' IDENTIFIER
183 // : IDENTIFIER ('=' constant_expression)?
197 : ( IDENTIFIER
200 $Symbols::types.add($IDENTIFIER.text)
201 print "define type "+$IDENTIFIER.tex
    [all...]
t026actions.g 17 : IDENTIFIER EOF
28 IDENTIFIER
  /external/clang/test/SemaTemplate/
ms-lookup-template-base-classes.cpp 7 void f(T a) { }// expected-note {{must qualify identifier to find this declaration in dependent base class}}
8 void g();// expected-note {{must qualify identifier to find this declaration in dependent base class}}
16 f(a); // expected-warning {{use of identifier 'f' found via unqualified lookup into dependent bases of class templates is a Microsoft extension}}
17 g(); // expected-warning {{use of identifier 'g' found via unqualified lookup into dependent bases of class templates is a Microsoft extension}}
32 XX; //expected-error {{use of undeclared identifier 'XX'}}
41 XX; //expected-error {{use of undeclared identifier 'XX'}}
49 XX; //expected-error {{use of undeclared identifier 'XX'}}
67 var = 3; // expected-warning {{use of undeclared identifier 'var'; unqualified lookup into dependent bases of class template 'B' is a Microsoft extension}}
82 static void static_func();// expected-note {{must qualify identifier to find this declaration in dependent base class}}
83 void func();// expected-note {{must qualify identifier to find this declaration in dependent base class}
    [all...]
  /external/google-breakpad/src/common/mac/
file_id.cc 30 // file_id.cc: Return a unique identifier for a file
51 bool FileID::FileIdentifier(unsigned char identifier[16]) {
68 MD5Final(identifier, &md5);
75 unsigned char identifier[16]) {
78 if (macho.UUIDCommand(cpu_type, cpu_subtype, identifier))
81 return macho.MD5(cpu_type, cpu_subtype, identifier);
85 void FileID::ConvertIdentifierToString(const unsigned char identifier[16],
89 int hi = (identifier[idx] >> 4) & 0x0F;
90 int lo = (identifier[idx]) & 0x0F;
  /frameworks/base/core/java/android/widget/
ResourceCursorTreeAdapter.java 42 * @param collapsedGroupLayout resource identifier of a layout file that
44 * @param expandedGroupLayout resource identifier of a layout file that
46 * @param childLayout resource identifier of a layout file that defines the
48 * @param lastChildLayout resource identifier of a layout file that defines
69 * @param collapsedGroupLayout resource identifier of a layout file that
71 * @param expandedGroupLayout resource identifier of a layout file that
73 * @param childLayout resource identifier of a layout file that defines the
87 * @param groupLayout resource identifier of a layout file that defines the
89 * @param childLayout resource identifier of a layout file that defines the
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Implicit.java 49 * 1) primitive: only primitive identifier is valid
50 * 2) constructed: only constructed identifier is valid
91 public final boolean checkTag(int identifier) {
94 return id == identifier;
96 return constrId == identifier;
98 return id == identifier || constrId == identifier;
110 // substitute identifier for further decoding
125 //FIXME need another way for specifying identifier to be encoded
  /external/clang/test/SemaCXX/
typo-correction-delayed.cpp 48 callee(xxxxxx, // expected-error-re {{use of undeclared identifier 'xxxxxx'{{$}}}}
49 zzzzzz); // expected-error-re {{use of undeclared identifier 'zzzzzz'{{$}}}}
102 __atomic_load(i, i, something_something); // expected-error-re {{use of undeclared identifier 'something_something'{{$}}}}
107 template <int I = defaultArg> struct S {}; // expected-error {{use of undeclared identifier 'defaultArg'; did you mean 'DefaultArg'?}}
120 explicit SomeClass() : Kind(kSum) {} // expected-error {{use of undeclared identifier 'kSum'; did you mean 'kNum'?}}
130 // expected-error@+1 {{use of undeclared identifier 'resulta'; did you mean 'result'?}}
141 // expected-error@+2 {{use of undeclared identifier 'variableX'; did you mean 'variable'?}}
148 int (*a) () = (void)Z; // expected-error-re {{use of undeclared identifier 'Z'{{$}}}}
153 __typeof blur y; // expected-error {{use of undeclared identifier 'blur'; did you mean 'blue'?}}
158 // expected-error-re {{use of undeclared identifier 'b'{{$}}}
    [all...]
missing-namespace-qualifier-typo-corrections.cpp 12 Double(toFoobar()); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
26 if (toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
27 if (noFoobar()) Double(7); // expected-error{{use of undeclared identifier 'noFoobar'; did you mean 'barstool::toFoobar'?}}
28 if (moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'moreFoobar'; did you mean 'fizbin::nested::moreFoobar'}}
29 if (lessFoobar()) Double(7); // expected-error{{use of undeclared identifier 'lessFoobar'; did you mean 'fizbin::nested::lessFoobar'?}}
30 if (baztool::toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'baztool'; did you mean 'fizbin::baztool'?}}
31 if (nested::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'nested'; did you mean 'fizbin::nested'?}}
32 if (dummy::morebar()) Double(7); // expected-error{{use of undeclared identifier 'dummy'; did you mean 'fizbin::dummy'?}}
33 if (dummy::mrebar()) Double(7); // expected-error{{use of undeclared identifier 'dummy'; did you mean 'fizbin::dummy'?}} \
35 if (moFoobin()) Double(7); // expected-error{{use of undeclared identifier 'moFoobin'}
    [all...]
  /external/bison/examples/calc++/
calc++-parser.yy 39 %token <sval> IDENTIFIER "identifier"
43 %printer { yyoutput << *$$; } "identifier"
44 %destructor { delete $$; } "identifier"
57 "identifier" ":=" exp
66 | "identifier" { $$ = driver.variables[*$1]; delete $1; }
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/nist/
NISTNamedCurves.java 60 * the passed in object identifier. Null if the curve isn't present.
62 * @param oid an object identifier representing a named curve, if present.
71 * return the object identifier signified by the passed in name. Null
72 * if there is no object identifier associated with name.
74 * @return the object identifier associated with name, if present.
83 * return the named curve name represented by the given object identifier.
  /external/clang/test/Modules/
macro-reexport.cpp 13 void f() { return assert(true); } // expected-error {{undeclared identifier 'd'}}
15 void g() { return assert(true); } // expected-error {{undeclared identifier 'assert'}}
19 void f() { return assert(true); } // expected-error {{undeclared identifier 'd'}}
21 void g() { return assert(true); } // expected-error {{undeclared identifier 'assert'}}
24 void f() { return assert(true); } // expected-error {{undeclared identifier 'b'}}
29 void f() { return assert(true); } // expected-error {{undeclared identifier 'assert'}}
  /external/selinux/sepolgen/src/sepolgen/
refparser.py 69 'IDENTIFIER',
257 t.type = reserved.get(t.value,'IDENTIFIER')
350 # and interface calls to make it easier to identifier.
352 'policy_module_stmt : POLICY_MODULE OPAREN IDENTIFIER COMMA NUMBER CPAREN'
360 '''interface : INTERFACE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
367 '''template : TEMPLATE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
368 | DEFINE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
375 '''define : DEFINE OPAREN TICK IDENTIFIER SQUOTE CPAREN'''
419 '''ifelse : IFELSE OPAREN TICK IDENTIFIER SQUOTE COMMA COMMA TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN optional_sem
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
refparser.py 69 'IDENTIFIER',
257 t.type = reserved.get(t.value,'IDENTIFIER')
350 # and interface calls to make it easier to identifier.
352 'policy_module_stmt : POLICY_MODULE OPAREN IDENTIFIER COMMA NUMBER CPAREN'
360 '''interface : INTERFACE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
367 '''template : TEMPLATE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
368 | DEFINE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
375 '''define : DEFINE OPAREN TICK IDENTIFIER SQUOTE CPAREN'''
419 '''ifelse : IFELSE OPAREN TICK IDENTIFIER SQUOTE COMMA COMMA TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN optional_sem
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/
refparser.py 69 'IDENTIFIER',
257 t.type = reserved.get(t.value,'IDENTIFIER')
350 # and interface calls to make it easier to identifier.
352 'policy_module_stmt : POLICY_MODULE OPAREN IDENTIFIER COMMA NUMBER CPAREN'
360 '''interface : INTERFACE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
367 '''template : TEMPLATE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
368 | DEFINE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
375 '''define : DEFINE OPAREN TICK IDENTIFIER SQUOTE CPAREN'''
419 '''ifelse : IFELSE OPAREN TICK IDENTIFIER SQUOTE COMMA COMMA TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN optional_sem
    [all...]
  /hardware/ti/omap4-aah/security/tf_daemon/
lib_uuid.h 67 * @param pIdentifierString The UTF-8 representation of the identifier. This
72 * the identifier.
86 * identifier.
89 * the identifier. This string is not zero terminated. The encoder
107 * identifier.
123 * identifier.
130 * Checks if an identifier is the nil identifier as specified in RFC 4122.
132 * @param pIdentifier The identifier to check.
134 * @return TRUE if the identifier is the nil identifier, FALSE otherwise
    [all...]
  /external/clang/test/Index/
code-completion-skip-bodies.cpp 19 // STDERR-NOT: error: use of undeclared identifier 'undeclared1'
20 // STDERR: error: use of undeclared identifier 'undeclared2'
  /external/clang/test/Parser/
cxx-undeclared-identifier.cpp 16 int f(a::b::c); // expected-error {{use of undeclared identifier 'a'}}
18 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \
  /external/clang/test/Preprocessor/
ucn-pp-identifier.c 19 #if \uarecool // expected-warning{{incomplete universal character name; treating as '\' followed by identifier}} expected-error {{invalid token at start of a preprocessor expression}}
21 #if \uwerecool // expected-warning{{\u used with no following hex digits; treating as '\' followed by identifier}} expected-error {{invalid token at start of a preprocessor expression}}
23 #if \U0001000 // expected-warning{{incomplete universal character name; treating as '\' followed by identifier}} expected-error {{invalid token at start of a preprocessor expression}}
27 #define \ufffe // expected-error {{macro name must be an identifier}}
28 #define \U10000000 // expected-error {{macro name must be an identifier}}
29 #define \u0061 // expected-error {{character 'a' cannot be specified by a universal character name}} expected-error {{macro name must be an identifier}}
68 // expected-error@-6 {{expected identifier}}
69 // expected-error@-6 {{expected identifier}}
  /external/clang/test/Sema/
ms-keyword-system-header.c 6 // PR17824: GNU libc uses MS keyword __uptr as an identifier in C mode
13 // expected-error@-2 {{expected identifier}}
  /external/clang/test/SemaObjC/
bad-property-synthesis-crash.m 13 __what; // expected-error {{use of undeclared identifier}} \
21 return __what; // expected-error {{use of undeclared identifier}}
error-outof-scope-property-use.m 18 [uuids_jobs objectForKey]; // expected-error {{use of undeclared identifier 'uuids_jobs'}} \
28 [uuids_jobs enumerateKeysAndObjectsUsingBlock]; // expected-error {{use of undeclared identifier 'uuids_jobs'}}
provisional-ivar-lookup.m 19 _foo = foo; // expected-error {{use of undeclared identifier 'foo'}}
27 _foo = foo2; // expected-error {{use of undeclared identifier 'foo2'}}

Completed in 671 milliseconds

1 2 3 4 56 7 8 91011>>