/external/clang/lib/Parse/ |
ParseExpr.cpp | 125 /// Current token is an Identifier and is not a 'try'. This 468 /// [C++11] 'sizeof' '...' '(' identifier ')' 473 /// [GNU] '&&' identifier 483 /// [C99] identifier 504 /// [OBJC] '\@protocol' '(' identifier ')' 526 /// enumeration-constant -> identifier 534 /// identifier 702 case tok::identifier: { // primary-expression: identifier 703 // unqualified-id: identifier [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/ |
wizard.rb | 135 [ :identifier, /[a-z_]\w*/i ], 164 when :identifier then @text = @scanner.matched 203 when :identifier 211 CONTINUE_TYPES = [ :open, :identifier, :percent, :dot ] 223 when :identifier, :percent, :dot 237 ( @token_type = @tokenizer.next_token ) == :identifier or return nil 251 @token_type == :identifier or return nil
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
CoroutineManager.java | 172 * <p>%REVIEW% We could use an object as the identifier. Not sure 220 * @param thisCoroutine the identifier of this coroutine, so we can 254 * @param thisCoroutine Integer identifier for this coroutine. This is the 256 * @param toCoroutine Integer identifier for the coroutine we wish to 309 * @param thisCoroutine Integer identifier for the coroutine requesting exit. 324 * @param thisCoroutine Integer identifier for the coroutine leaving the set. 325 * @param toCoroutine Integer identifier for the coroutine we wish to
|
/external/chromium/net/third_party/gssapi/ |
gssapi.h | 278 * corresponding to an object-identifier value of 291 * corresponding to an object-identifier value of 304 * corresponding to an object-identifier value of 316 * corresponding to an object-identifier value of 336 * object-identifier value of {iso(1) member-body(2) 349 * corresponding to an object identifier value of 361 * corresponding to an object-identifier value of
|
/external/chromium_org/chrome/browser/plugins/ |
plugin_infobar_delegates.cc | 48 const std::string& identifier) 50 identifier_(identifier) { 88 const std::string& identifier) { 91 name, identifier))); 116 const std::string& identifier) 117 : PluginInfoBarDelegate(infobar_service, identifier), 192 : PluginInfoBarDelegate(infobar_service, plugin_metadata->identifier()),
|
/external/chromium_org/third_party/npapi/npspy/extern/plugin/ |
npruntime.h | 257 bool NPN_IdentifierIsString(NPIdentifier identifier); 262 NPUTF8 *NPN_UTF8FromIdentifier(NPIdentifier identifier); 265 Get the integer represented by identifier. If identifier is not an 266 integer identifier, the behaviour is undefined. 268 int32_t NPN_IntFromIdentifier(NPIdentifier identifier); 396 bool NPN_Enumerate(NPP npp, NPObject *npobj, NPIdentifier **identifier,
|
/external/ipsec-tools/ |
setup.c | 336 char *identifier, char *key) 339 if (identifier[0]) { 340 remoteconf->idv = strtovchar(identifier); 344 if (strchr(identifier, '.')) { 346 if (strchr(identifier, '@')) { 472 " udppsk <identifier> <pre-shared-key> <port>; \n" 476 " xauthpsk <identifier> <pre-shared-key> \\\n"
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
XMLFilterImpl.java | 342 * @param systemId The system identifier as a fully-qualified URI. 366 * @param publicId The entity's public identifier, or null. 367 * @param systemId The entity's system identifier. 397 * @param publicId The notation's public identifier, or null. 398 * @param systemId The notation's system identifier, or null. 415 * @param publicId The entity's public identifier, or null. 416 * @param systemId The entity's system identifier, or null.
|
/external/clang/lib/Serialization/ |
GlobalModuleIndex.cpp | 67 /// \brief Trait used to read the identifier index from the on-disk hash 210 // Wire up the identifier index. 283 // If there's no identifier index, there is nothing we can do. 287 // Look into the identifier index. 336 fprintf(stderr, " %u / %u identifier lookups succeeded (%f%%)\n", 369 /// consider this identifier to be interesting. 452 /// \brief The identifier and whether it is "interesting". 458 // The first bit indicates whether this identifier is interesting. 590 // Handle the identifier table 617 /// \brief Trait used to generate the identifier index as an on-disk has [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
glsl_parser.yy | 62 const char *identifier; 111 %token <identifier> IDENTIFIER TYPE_IDENTIFIER NEW_IDENTIFIER 112 %type <identifier> any_identifier 115 %token <identifier> FIELD_SELECTION 149 %type <identifier> variable_identifier 163 %type <identifier> basic_type_specifier_nonarray 331 IDENTIFIER 365 IDENTIFIER 375 $$->primary_expression.identifier = $1 [all...] |
/external/mesa3d/src/glsl/ |
glsl_parser.yy | 62 const char *identifier; 111 %token <identifier> IDENTIFIER TYPE_IDENTIFIER NEW_IDENTIFIER 112 %type <identifier> any_identifier 115 %token <identifier> FIELD_SELECTION 149 %type <identifier> variable_identifier 163 %type <identifier> basic_type_specifier_nonarray 331 IDENTIFIER 365 IDENTIFIER 375 $$->primary_expression.identifier = $1 [all...] |
/external/chromium_org/third_party/angle_dx11/src/compiler/ |
glslang.y | 129 %token <lex> IDENTIFIER TYPE_NAME FLOATCONSTANT INTCONSTANT BOOLCONSTANT 140 %type <lex> identifier 178 identifier 179 : IDENTIFIER 183 : IDENTIFIER { 188 context->error(@1, "undeclared identifier", $1.string->c_str()); 195 // This identifier can only be a variable type symbol 267 | postfix_expression DOT identifier { 602 | IDENTIFIER { [all...] |
/external/clang/include/clang/Lex/ |
Preprocessor.h | 69 assert(Kind != tok::identifier && 74 TokenValue(IdentifierInfo *II) : Kind(tok::identifier), II(II) {} 226 /// \brief Whether the module import expectes an identifier next. Otherwise, 317 /// deserializing from PCH, we don't need to deserialize identifier & macros 529 /// \brief Given an identifier, return its latest MacroDirective if it is 550 /// \brief Given an identifier, return the (probably #undef'd) MacroInfo 556 /// \brief Add a directive to the macro directive history for this identifier. 593 /// identifier token. 669 /// identifier for an object-like macro. 670 void EnterMacro(Token &Identifier, SourceLocation ILEnd, MacroInfo *Macro [all...] |
/external/llvm/lib/MC/MCParser/ |
AsmParser.cpp | 238 /// parseIdentifier - Parse an identifier or string (as a quoted identifier) 239 /// and set \p Res to the identifier contents. 770 case AsmToken::Identifier: { 771 StringRef Identifier; 772 if (parseIdentifier(Identifier)) { 778 EndLoc = SMLoc::getFromPointer(Identifier.end()); 781 std::pair<StringRef, StringRef> Split = Identifier.split('@'); 786 if (Split.first.size() != Identifier.size()) { 815 if (Lexer.getKind() == AsmToken::Identifier) { [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorPageAgent.cpp | 417 void InspectorPageAgent::addScriptToEvaluateOnLoad(ErrorString*, const String& source, String* identifier) 427 *identifier = String::number(++m_lastScriptIdentifier); 428 } while (scripts->find(*identifier) != scripts->end()); 429 scripts->setString(*identifier, source); 435 void InspectorPageAgent::removeScriptToEvaluateOnLoad(ErrorString* error, const String& identifier) 438 if (!scripts || scripts->find(identifier) == scripts->end()) { 442 scripts->remove(identifier); [all...] |
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-ot-layout-gpos-table.hh | 228 USHORT format; /* Format identifier--format = 1 */ 257 USHORT format; /* Format identifier--format = 2 */ 285 USHORT format; /* Format identifier--format = 3 */ 327 USHORT format; /* Format identifier */ 458 USHORT format; /* Format identifier--format = 1 */ 506 USHORT format; /* Format identifier--format = 2 */ 544 USHORT format; /* Format identifier */ 689 USHORT format; /* Format identifier--format = 1 */ 779 USHORT format; /* Format identifier--format = 2 */ 833 USHORT format; /* Format identifier */ [all...] |
/external/ppp/pppd/ |
ipv6cp.c | 236 "Accept peer's interface identifier for us", 1 }, 239 "Use (default) IPv4 address as interface identifier", 1 }, 304 #define CILEN_IFACEID 10 /* RFC2472, interface identifier */ 339 * If comma first character, then no local identifier 346 option_error("Illegal interface identifier (local): %s", arg); 359 * If comma last character, the no remote identifier 363 option_error("Illegal interface identifier (remote): %s", comma); 529 eui64_zero(go->hisid); /* last proposed interface identifier */ 719 * Accept the peer's idea of {our,his} interface identifier, if different 755 * If they want to negotiate about interface identifier, we comply [all...] |
/external/bluetooth/bluedroid/stack/include/ |
gatt_api.h | 845 ** Parameter conn_id: connection identifier. 863 ** Parameter conn_id: connection identifier. [all...] |
/external/chromium_org/third_party/WebKit/public/web/ |
WebFrameClient.h | 223 WebFrame*, unsigned identifier, WebURLRequest&, 227 // by identifier. 229 WebFrame*, unsigned identifier, const WebURLResponse&) { } 232 WebFrame*, unsigned identifier, const WebKit::WebURLRequest::Priority&) { } 234 // The resource request given by identifier succeeded. 236 WebFrame*, unsigned identifier) { } 291 // identifier. |finalUpdate| specifies whether this is the last update 294 int identifier, int count, bool finalUpdate) { } 297 // identifier lets the client know which request this message belongs 303 int identifier, int activeMatchOrdinal, const WebRect& selection) { [all...] |
/external/clang/include/clang/AST/ |
DeclarationName.h | 50 Identifier, 81 /// StoredIdentifier - The name is a normal identifier, and Ptr is 164 /// for this name as a void pointer if it's not an identifier. 211 /// because an identifier can be a dependent name if it is used as the 220 /// simple identifier. 258 /// operator, retrieve the identifier associated with it. 353 /// identifier. 381 /// with II as the identifier. 389 // The source location for identifier stored elsewhere. 390 // struct {} Identifier; [all...] |
/external/clang/lib/Basic/ |
IdentifierTable.cpp | 1 //===--- IdentifierTable.cpp - Hash table for identifier lookup -----------===// 31 TokenID = tok::identifier; 58 /// \brief A simple identifier lookup iterator that represents an 78 // Populate the identifier table with info about keywords for the current 149 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode); 253 /// PrintStats - Print statistics about how well the identifier table is doing 262 // TODO: Figure out maximum times an identifier had to probe for -stats. 271 fprintf(stderr, "\n*** Identifier Table Stats:\n"); 276 fprintf(stderr, "Ave identifier length: %f\n", 278 fprintf(stderr, "Max identifier length: %d\n", MaxIdentifierLength) [all...] |
/external/clang/include/clang/Basic/ |
DiagnosticParseKinds.td | 150 def err_expected_ident : Error<"expected identifier">; 151 def err_expected_ident_lparen : Error<"expected identifier or '('">; 152 def err_expected_ident_lbrace : Error<"expected identifier or '{'">; 301 "unexpected type name %0: expected identifier">; 452 "expected %select{identifier|unqualified-id}0">; 496 "'...' must %select{immediately precede declared identifier|" 546 "__declspec attributes must be an identifier or string literal">; 575 "identifier followed by '<' indicates a class template specialization but " 643 "expected an identifier or template-id after '::'">; [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
glcpp-parse.c | 176 const char *identifier, 183 _parser_active_list_contains (glcpp_parser_t *parser, const char *identifier); 268 IDENTIFIER = 274, 306 #define IDENTIFIER 274 707 "IDENTIFIER", "IF_EXPANDED", "INTEGER", "INTEGER_STRING", 3863 const char *identifier; local 3976 const char *identifier; local [all...] |
/external/chromium_org/chrome/renderer/ |
chrome_content_renderer_client.cc | 500 const std::string& identifier = output.group_identifier; local 551 observer->IsPluginTemporarilyAllowed(identifier)) { 589 render_view, frame, params, plugin, identifier, group_name, 641 render_view, frame, params, plugin, identifier, group_name, 659 render_view, frame, params, plugin, identifier, group_name, 672 render_view, frame, params, plugin, identifier, group_name, 676 render_view->GetRoutingID(), identifier)); 683 render_view, frame, params, plugin, identifier, group_name, 691 render_view, frame, params, plugin, identifier, group_name, 697 identifier)); [all...] |
/external/ipsec-tools/src/racoon/ |
racoon.conf.5 | 238 .Ss Identifier Specification 338 used ISO-Latin-1 as the encoding of the GSS-API identifier attribute. 353 Use UTF-16LE to encode the GSS-API identifier attribute. 357 Use ISO-Latin-1 to encode the GSS-API identifier attribute. 411 .It Ic identifier Ar idtype ; 419 Specifies the identifier sent to the remote host 438 This is the default type if you do not specify an identifier to use. 470 Specifies the peer's identifier to be received. 473 will not verify the peer's identifier in ID payload transmitted from the peer. 482 identifier may specified a [all...] |