HomeSort by relevance Sort by last modified time
    Searched full:identifier (Results 151 - 175 of 6890) sorted by null

1 2 3 4 5 67 8 91011>>

  /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/chromium-trace/catapult/third_party/gsutil/gslib/
aclhelpers.py 70 self.identifier = ''
78 self.scope_type, self.perm, self.identifier)
113 self.identifier = scope_string
116 self.identifier = scope_string
123 self.identifier = scope_string
139 if self.scope_type in self.public_scopes and self.identifier:
142 if self.scope_type in self.id_scopes and not self.identifier:
145 if self.scope_type in self.email_scopes and not self.identifier:
148 if self.scope_type in self.domain_scopes and not self.identifier:
168 entry.entityId and self.identifier == entry.entityId)
    [all...]
  /external/autotest/client/cros/
tpm_store.py 47 def _install_object(self, pem, identifier, conversion_type, output_type):
51 @param identifier string associated with the new object.
69 identifier))
89 def install_certificate(self, certificate, identifier):
93 @param identifier string associated with this certificate in the TPM.
97 identifier,
102 def install_private_key(self, key, identifier):
106 @param identifier string associated with this private key in the TPM.
110 identifier,
  /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
  /system/connectivity/shill/
pending_activation_store.h 74 // Returns the activation state for a SIM with the given identifier. A return
75 // value of kStateUnknown indicates that the given identifier was not found.
77 const std::string& identifier) const;
79 // Sets the activation state for the given identifier. If an entry for this
80 // identifier was not found, a new entry will be created. Returns true on
83 const std::string& identifier,
86 // Removes the entry for the given identifier from the database. Returns true
87 // if the operation was successful. If the identifier did not exist in the
89 virtual bool RemoveEntry(IdentifierType type, const std::string& identifier);
pending_activation_store.cc 64 const string& identifier) {
76 return "[" + label + "=" + identifier + "]";
89 SLOG(Cellular, nullptr, 2) << "Incorrect identifier type: " << type;
122 const string& identifier) const {
123 string formatted_identifier = FormattedIdentifier(type, identifier);
130 if (!storage_->GetInt(IdentifierTypeToGroupId(type), identifier, &state)) {
144 const string& identifier,
147 << FormattedIdentifier(type, identifier);
162 IdentifierTypeToGroupId(type), identifier, static_cast<int>(state))) {
163 SLOG(this, 2) << "Failed to store the given identifier and state
    [all...]
profile.cc 64 const Identifier& name,
76 store_.RegisterConstString(kNameProperty, &name_.identifier);
119 name_.user.c_str(), name_.identifier.c_str()));
126 name_.user.c_str(), name_.identifier.c_str()));
133 name_.user.c_str(), name_.identifier.c_str()));
149 name_.identifier.c_str()));
176 return (name_.user.empty() ? "" : name_.user + "/") + name_.identifier;
281 bool Profile::ParseIdentifier(const string& raw, Identifier* parsed) {
286 // Format: "~user/identifier".
292 string identifier(raw.begin() + slash + 1, raw.end())
345 Identifier identifier; local
    [all...]
  /external/clang/test/Index/
annotate-literals.m 51 // CHECK-LITERALS: Identifier: "id" [41:3 - 41:5] TypeRef=id:0:0
52 // CHECK-LITERALS: Identifier: "objects" [41:6 - 41:13] VarDecl=objects:41:6 (Definition)
56 // CHECK-LITERALS: Identifier: "o1" [41:19 - 41:21] DeclRefExpr=o1:40:30
58 // CHECK-LITERALS: Identifier: "o2" [41:23 - 41:25] DeclRefExpr=o2:40:44
61 // CHECK-LITERALS: Identifier: "id" [42:3 - 42:5] TypeRef=id:0:0
62 // CHECK-LITERALS: Identifier: "dict" [42:6 - 42:10] VarDecl=dict:42:6 (Definition)
66 // CHECK-LITERALS: Identifier: "k1" [42:16 - 42:18] DeclRefExpr=k1:40:23
68 // CHECK-LITERALS: Identifier: "o1" [42:21 - 42:23] DeclRefExpr=o1:40:30
70 // CHECK-LITERALS: Identifier: "k2" [43:16 - 43:18] DeclRefExpr=k2:40:37
72 // CHECK-LITERALS: Identifier: "o2" [43:21 - 43:23] DeclRefExpr=o2:40:4
    [all...]
code-completion-skip-bodies.cpp 19 // STDERR-NOT: error: use of undeclared identifier 'undeclared1'
20 // STDERR: error: use of undeclared identifier 'undeclared2'
  /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 56 * the passed in object identifier. Null if the curve isn't present.
58 * @param oid an object identifier representing a named curve, if present.
67 * return the object identifier signified by the passed in name. Null
68 * if there is no object identifier associated with name.
70 * @return the object identifier associated with name, if present.
79 * return the named curve name represented by the given object identifier.
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_notification.py 46 identifier = str(uuid.uuid4())
49 'notification', 'watchbucket', '-i', identifier, '-t', token,
52 self.assertIn('identifier: %s' % identifier, stderr)
63 channel_id = re.findall(r'channel identifier: (?P<id>.*)', stderr)
65 resource_id = re.findall(r'resource identifier: (?P<id>.*)', stderr)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
refparser.py 68 'IDENTIFIER',
256 t.type = reserved.get(t.value,'IDENTIFIER')
349 # and interface calls to make it easier to identifier.
351 'policy_module_stmt : POLICY_MODULE OPAREN IDENTIFIER COMMA NUMBER CPAREN'
359 '''interface : INTERFACE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
366 '''template : TEMPLATE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
367 | DEFINE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
374 '''define : DEFINE OPAREN TICK IDENTIFIER SQUOTE CPAREN'''
418 '''ifelse : IFELSE OPAREN TICK IDENTIFIER SQUOTE COMMA COMMA TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN optional_sem
    [all...]
  /external/selinux/sepolgen/src/sepolgen/
refparser.py 68 'IDENTIFIER',
256 t.type = reserved.get(t.value,'IDENTIFIER')
349 # and interface calls to make it easier to identifier.
351 'policy_module_stmt : POLICY_MODULE OPAREN IDENTIFIER COMMA NUMBER CPAREN'
359 '''interface : INTERFACE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
366 '''template : TEMPLATE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
367 | DEFINE OPAREN TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN
374 '''define : DEFINE OPAREN TICK IDENTIFIER SQUOTE CPAREN'''
418 '''ifelse : IFELSE OPAREN TICK IDENTIFIER SQUOTE COMMA COMMA TICK IDENTIFIER SQUOTE COMMA TICK interface_stmts SQUOTE CPAREN optional_sem
    [all...]
  /external/clang/test/SemaCXX/
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...]
  /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/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t026actions.g 19 : IDENTIFIER EOF
30 IDENTIFIER
  /external/autotest/server/site_tests/network_WiFi_ConnectionIdentifier/
control 14 This test is designed to verify the correctness of connection identifier
15 generated by shill, in which connection identifier should be the same when
  /external/clang/test/CodeGen/
c-unicode.c 7 // DENIED: warning: universal character names are only valid in C99 or C++; treating as '\' followed by identifier [-Wunicode]
8 // DENIED: error: expected identifier or '('
  /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}}

Completed in 1549 milliseconds

1 2 3 4 5 67 8 91011>>