/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/ |
closurizednamespacesinfo_test.py | 65 for identifier, expected_namespace in self._test_cases.items(): 66 actual_namespace = namespaces_info.GetClosurizedNamespace(identifier) 71 '" for identifier "' + str(identifier) + '" but was "' + 134 token = tokenutil.Search(token.next, TokenType.IDENTIFIER) 366 """Tests that created namespaces do not satisfy usage of an identifier.""" 378 """Tests that created identifiers satisfy usage of the identifier.""" 412 """Tests that created identifiers satisfy usage of the identifier.""" 416 ' identifier;' 421 self.assertEquals('package.Foo.veryLong.identifier', [all...] |
/external/clang/lib/Parse/ |
ParseTentative.cpp | 39 /// 'namespace' identifier = qualified-namespace-specifier ';' 126 // or an identifier which doesn't resolve as anything. We need tentative 174 // nested-name-specifier[opt] identifier 176 // enum nested-name-specifier[opt] identifier 198 if ((Tok.is(tok::identifier) || Tok.is(tok::coloncolon) || 204 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id)) 494 /// identifier 495 /// identifier '::' identifier 575 // requirements of an identifier is contained in an attribute-token [all...] |
ParseDecl.cpp | 97 /// attrib-name '(' identifier ')' 98 /// attrib-name '(' identifier ',' nonempty-expr-list ')' 102 /// identifier 107 /// Whether an attribute takes an 'identifier' is determined by the 110 /// * In C mode, if the attribute argument list starts with an identifier 111 /// followed by a ',' or an ')', and the identifier doesn't resolve to 112 /// a type, it is parsed as an identifier. If the attribute actually 116 /// * In C++ mode, if the attribute argument list starts with an identifier, 117 /// and the attribute *wants* an identifier, it is parsed as an identifier 1244 Diag(Tok, diag::err_expected) << tok::identifier; member in class:tok 1266 Diag(Tok, diag::err_expected) << tok::identifier; member in class:tok 3517 Diag(Tok, diag::err_expected) << tok::identifier; member in class:tok 3659 Diag(Tok, diag::err_expected) << tok::identifier; member in class:tok 3943 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; member in class:tok 5511 Diag(Tok, diag::err_expected) << tok::identifier; member in class:tok [all...] |
ParseExprCXX.cpp | 114 // Check for (identifier or (*identifier 116 if (IdentifierTok.isNot(tok::identifier)) 129 // Eat the identifier. 131 // Add the identifier token back. 157 /// nested-name-specifier identifier '::' 183 /// filled in with the leading identifier in the last component of the 197 assert(!LastII && "want last identifier but have already annotated scope"); 234 Diag(ConsumeToken(), diag::err_expected) << tok::identifier; member in class:tok 306 // 'identifier <' after it 455 << tok::identifier; member in class:tok 2283 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; member in class:tok [all...] |
/external/clang/test/Parser/ |
MicrosoftExtensions.cpp | 241 int __identifier(else} = __identifier(for); // expected-error {{missing ')' after identifier}} expected-note {{to match this '('}} 243 int k = identifier_weird(if)); // expected-error {{use of undeclared identifier 'if'}} 247 extern int __identifier(and) r; // expected-error {{cannot convert '&&' token to an identifier}} 250 __identifier(() // expected-error {{cannot convert '(' token to an identifier}} 251 __identifier(void) // expected-error {{use of undeclared identifier 'void'}} 252 __identifier()) // expected-error {{cannot convert ')' token to an identifier}} 254 __identifier(1) // expected-error {{cannot convert <numeric_constant> token to an identifier}} 255 __identifier(+) // expected-error {{cannot convert '+' token to an identifier}} 256 __identifier("foo") // expected-error {{cannot convert <string_literal> token to an identifier}} 257 __identifier(;) // expected-error {{cannot convert ';' token to an identifier}} [all...] |
/external/google-breakpad/src/processor/ |
postfix_evaluator_unittest.cc | 267 const string identifier = validate_iterator->first; local 271 evaluate_test_set->dictionary->find(identifier); 273 // The identifier must exist in the dictionary. 276 "validate identifier \"%s\", " 279 identifier.c_str(), expected_value); 287 "validate identifier \"%s\", " 290 identifier.c_str(), expected_value, observed_value); 296 bool expected_assigned = identifier[0] == '$'; 299 iterator_assigned = assigned.find(identifier); 308 identifier.c_str(), expected_assigned, observed_assigned) [all...] |
/external/guava/guava/src/com/google/common/eventbus/ |
EventBus.java | 175 * Creates a new EventBus with the given {@code identifier}. 177 * @param identifier a brief name for this bus, for logging purposes. Should 178 * be a valid Java identifier. 180 public EventBus(String identifier) { 181 this(new LoggingSubscriberExceptionHandler(identifier)); 368 * this class, followed by the identifier provided at construction. 373 * @param identifier a brief name for this bus, for logging purposes. Should 374 * be a valid Java identifier. 376 public LoggingSubscriberExceptionHandler(String identifier) { 378 EventBus.class.getName() + "." + checkNotNull(identifier)); [all...] |
/external/mesa3d/src/glsl/ |
ast.h | 203 ast_expression(const char *identifier) : 209 primary_expression.identifier = identifier; 225 const char *identifier; member in union:ast_expression::__anon16814 320 ast_declaration(const char *identifier, int is_array, ast_expression *array_size, 324 const char *identifier; member in class:ast_declaration 456 ast_struct_specifier(const char *identifier, 552 this->identifier = NULL; 563 const char *identifier; member in class:ast_parameter_declarator 594 const char *identifier; member in class:ast_function [all...] |
/frameworks/opt/telephony/src/java/android/telephony/ |
SmsCbMessage.java | 36 * unified under a common name, avoiding some names, such as "Message Identifier", that refer to 39 * <p>The GSM/UMTS Message Identifier field is available via {@link #getServiceCategory}, the name 44 * <p>The CDMA Message Identifier field is available via {@link #getSerialNumber}, which is used 105 * Serial number of broadcast (message identifier for CDMA, geographical scope + message code + 112 * Location identifier for this message. It consists of the current operator MCC/MNC as a 120 * 16-bit CDMA service category or GSM/UMTS message identifier. For ETWS and CMAS warnings, 242 * Return the broadcast serial number of broadcast (message identifier for CDMA, or 246 * @return the 16-bit CDMA message identifier or GSM/UMTS serial number 253 * Return the location identifier for this message, consisting of the MCC/MNC as a 266 * Return the 16-bit CDMA service category or GSM/UMTS message identifier. The interpretatio [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/ |
xmlreader.py | 31 "Parse an XML document from a system identifier or an InputSource." 178 "Return the public identifier for the current event." 182 "Return the system identifier for the current event." 191 This class may include information about the public identifier, 192 system identifier, byte stream (possibly with character encoding 211 "Sets the public identifier of this InputSource." 215 "Returns the public identifier of this InputSource." 219 "Sets the system identifier of this InputSource." 223 "Returns the system identifier of this InputSource." 267 connection to the system identifier."" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/ |
xmlreader.py | 31 "Parse an XML document from a system identifier or an InputSource." 178 "Return the public identifier for the current event." 182 "Return the system identifier for the current event." 191 This class may include information about the public identifier, 192 system identifier, byte stream (possibly with character encoding 211 "Sets the public identifier of this InputSource." 215 "Returns the public identifier of this InputSource." 219 "Sets the system identifier of this InputSource." 223 "Returns the system identifier of this InputSource." 267 connection to the system identifier."" [all...] |
/external/clang/include/clang/Basic/ |
CharInfo.h | 47 /// Returns true if this is a valid first character of a C identifier, 57 /// Returns true if this is a body character of a C identifier, 131 /// Note that '_' is both a punctuation character and an identifier character! 181 /// Return true if this is a valid ASCII identifier. 184 /// valid identifier characters.
|
/external/icu/icu4c/source/common/ |
util_props.cpp | 131 * Parse a Unicode identifier from the given string at the given 132 * position. Return the identifier, or an empty string if there 133 * is no identifier. 140 * @return the Unicode identifier, or an empty string if there is 141 * no valid identifier at pos.
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
parser.ml | 13 * ::= identifier 26 * ::= identifier 27 * ::= identifier '(' argumentexpr ')' *) 56 ::= 'for' identifier '=' expr ',' expr (',' expr)? 'in' expression *) 58 'Token.Ident id ?? "expected identifier after for";
|
/external/mesa3d/src/glsl/glcpp/ |
glcpp-lex.l | 77 IDENTIFIER [_a-zA-Z][_a-zA-Z0-9]* 193 <DEFINE>{IDENTIFIER}/"(" { 199 <DEFINE>{IDENTIFIER} { 270 {IDENTIFIER} { 272 return IDENTIFIER;
|
/external/selinux/secilc/docs/ |
cil_conditional_statements.xml | 30 <para>The <literal><link linkend="boolean">boolean</link></literal> identifier.</para> 49 <para>Contains the run time conditional statements that are instantiated in the binary policy according to the computed boolean identifier(s) state.</para> 81 <para>Either a single <literal><link linkend="boolean">boolean</link></literal> identifier or one or more <literal>expr</literal>'s.</para> 165 <para>The <literal><link linkend="tunable">tunable</link></literal> identifier.</para> 215 <para>Either a single <literal><link linkend="tunable">tunable</link></literal> identifier or one or more <literal>expr</literal>'s.</para>
|
cil_xen_statements.xml | 42 <para>A previously declared <literal><link linkend="context">context</link></literal> identifier or an anonymous security context (<literal><link linkend="user">user</link> <link linkend="role">role</link> <link linkend="type">type</link> <link linkend="levelrange">levelrange</link></literal>), the range MUST be defined whether the policy is MLS/MCS enabled or not.</para> 87 <para>A previously declared <literal><link linkend="context">context</link></literal> identifier or an anonymous security context (<literal><link linkend="user">user</link> <link linkend="role">role</link> <link linkend="type">type</link> <link linkend="levelrange">levelrange</link></literal>), the range MUST be defined whether the policy is MLS/MCS enabled or not.</para> 130 <para>A previously declared <literal><link linkend="context">context</link></literal> identifier or an anonymous security context (<literal><link linkend="user">user</link> <link linkend="role">role</link> <link linkend="type">type</link> <link linkend="levelrange">levelrange</link></literal>), the range MUST be defined whether the policy is MLS/MCS enabled or not.</para> 173 <para>A previously declared <literal><link linkend="context">context</link></literal> identifier or an anonymous security context (<literal><link linkend="user">user</link> <link linkend="role">role</link> <link linkend="type">type</link> <link linkend="levelrange">levelrange</link></literal>), the range MUST be defined whether the policy is MLS/MCS enabled or not.</para> 216 <para>A previously declared <literal><link linkend="context">context</link></literal> identifier or an anonymous security context (<literal><link linkend="user">user</link> <link linkend="role">role</link> <link linkend="type">type</link> <link linkend="levelrange">levelrange</link></literal>), the range MUST be defined whether the policy is MLS/MCS enabled or not.</para>
|
/external/tcpdump/ |
makemib | 105 # foo OBJECT IDENTIFIER ::= { baz 17 } 107 # foo OBJECT IDENTIFIER ::= 122 # foo OBJECT IDENTIFIER 129 # OBJECT IDENTIFIER ::= { bar 1 } 181 # new OBJECT IDENTIFIER ::= { parent value }
|
/frameworks/base/location/java/android/location/ |
GpsNavigationMessage.java | 162 * Gets the Message Identifier. 172 * Sets the Message Identifier. 179 * Gets the Sub-message Identifier. 181 * (or frame) that is being transmitted. i.e. for L1 C/A the sub-message identifier corresponds 189 * Sets the Sub-message identifier.
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
FieldPositionTest.java | 30 assertEquals("Test1: Constructor failed to set field identifier!", 44 assertEquals("Test1: Constructor failed to set field identifier!", -1, 57 assertEquals("Test1: Constructor failed to set field identifier!", 65 assertEquals("Test2: Constructor failed to set field identifier!", 72 assertEquals("Test3: Constructor failed to set field identifier!",
|
/external/lldb/www/python_reference/ |
identifier-index-D.html | 6 <title>Identifier Index</title> 48 >] | <a href="identifier-index-D.html" 56 <h1 class="epydoc">Identifier Index</h1> 59 <a href="identifier-index-A.html">A</a> 60 <a href="identifier-index-B.html">B</a> 61 <a href="identifier-index-C.html">C</a> 62 <a href="identifier-index-D.html">D</a> 63 <a href="identifier-index-E.html">E</a> 64 <a href="identifier-index-F.html">F</a> 65 <a href="identifier-index-G.html">G</a [all...] |
identifier-index-I.html | 6 <title>Identifier Index</title> 48 >] | <a href="identifier-index-I.html" 56 <h1 class="epydoc">Identifier Index</h1> 59 <a href="identifier-index-A.html">A</a> 60 <a href="identifier-index-B.html">B</a> 61 <a href="identifier-index-C.html">C</a> 62 <a href="identifier-index-D.html">D</a> 63 <a href="identifier-index-E.html">E</a> 64 <a href="identifier-index-F.html">F</a> 65 <a href="identifier-index-G.html">G</a [all...] |
identifier-index-L.html | 6 <title>Identifier Index</title> 48 >] | <a href="identifier-index-L.html" 56 <h1 class="epydoc">Identifier Index</h1> 59 <a href="identifier-index-A.html">A</a> 60 <a href="identifier-index-B.html">B</a> 61 <a href="identifier-index-C.html">C</a> 62 <a href="identifier-index-D.html">D</a> 63 <a href="identifier-index-E.html">E</a> 64 <a href="identifier-index-F.html">F</a> 65 <a href="identifier-index-G.html">G</a [all...] |
identifier-index-N.html | 6 <title>Identifier Index</title> 48 >] | <a href="identifier-index-N.html" 56 <h1 class="epydoc">Identifier Index</h1> 59 <a href="identifier-index-A.html">A</a> 60 <a href="identifier-index-B.html">B</a> 61 <a href="identifier-index-C.html">C</a> 62 <a href="identifier-index-D.html">D</a> 63 <a href="identifier-index-E.html">E</a> 64 <a href="identifier-index-F.html">F</a> 65 <a href="identifier-index-G.html">G</a [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
PKCSObjectIdentifiers.java | 6 * pkcs-1 OBJECT IDENTIFIER ::=<p> 46 // pkcs-3 OBJECT IDENTIFIER ::= { 55 // pkcs-5 OBJECT IDENTIFIER ::= { 79 // encryptionAlgorithm OBJECT IDENTIFIER ::= { 98 // md2 OBJECT IDENTIFIER ::= 107 // md4 OBJECT IDENTIFIER ::= 116 // md5 OBJECT IDENTIFIER ::= 134 // pkcs-7 OBJECT IDENTIFIER ::= { 153 // pkcs-9 OBJECT IDENTIFIER ::= { 219 // id-ct OBJECT IDENTIFIER ::= {iso(1) member-body(2) usa(840 [all...] |