HomeSort by relevance Sort by last modified time
    Searched defs:Identifier (Results 1 - 13 of 13) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
Identifier.h 33 class Identifier {
36 Identifier() { }
38 Identifier(ExecState* exec, const char* s) : m_string(add(exec, s)) { } // Only to be used with string literals.
39 Identifier(ExecState* exec, const UChar* s, int length) : m_string(add(exec, s, length)) { }
40 Identifier(ExecState* exec, StringImpl* rep) : m_string(add(exec, rep)) { }
41 Identifier(ExecState* exec, const UString& s) : m_string(add(exec, s.impl())) { }
43 Identifier(JSGlobalData* globalData, const char* s) : m_string(add(globalData, s)) { } // Only to be used with string literals.
44 Identifier(JSGlobalData* globalData, const UChar* s, int length) : m_string(add(globalData, s, length)) { }
45 Identifier(JSGlobalData* globalData, StringImpl* rep) : m_string(add(globalData, rep)) { }
46 Identifier(JSGlobalData* globalData, const UString& s) : m_string(add(globalData, s.impl())) {
    [all...]
  /external/clang/lib/Analysis/
PrintfFormatString.cpp 437 const IdentifierInfo *Identifier = QT.getBaseTypeIdentifier();
438 if (Identifier->getName() == "size_t") {
440 } else if (Identifier->getName() == "ssize_t") {
443 } else if (Identifier->getName() == "intmax_t") {
445 } else if (Identifier->getName() == "uintmax_t") {
447 } else if (Identifier->getName() == "ptrdiff_t") {
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 38 /// specifiers, each of which can be a namespace, type, identifier
60 /// can be an identifier, a declaration, or a type.
72 /// \brief An identifier, stored as an IdentifierInfo*.
73 Identifier,
106 /// \brief Builds a specifier combining a prefix and an identifier.
109 /// referencing an identifier are only permitted when the identifier
130 /// \brief Builds a specifier that consists of just an identifier.
155 /// \brief Retrieve the identifier stored in this nested name
367 /// nested-name-specifier component of the form 'identifier::'
    [all...]
TemplateName.h 447 /// \brief The identifier template name.
450 const IdentifierInfo *Identifier;
469 const IdentifierInfo *Identifier)
470 : Qualifier(Qualifier, false), Identifier(Identifier),
474 const IdentifierInfo *Identifier,
476 : Qualifier(Qualifier, false), Identifier(Identifier),
494 /// \brief Determine whether this template name refers to an identifier.
497 /// \brief Returns the identifier to which this template name refers
    [all...]
DeclarationName.h 45 Identifier,
73 /// StoredIdentifier - The name is a normal identifier, and Ptr is
198 /// because an identifier can be a dependent name if it is used as the
210 /// simple identifier.
248 /// operator, retrieve the identifier associated with it.
331 /// identifier.
367 /// with II as the identifier.
376 // The source location for identifier stored elsewhere.
377 // struct {} Identifier;
Expr.h     [all...]
  /external/v8/src/
preparser.h 104 typedef int Identifier;
216 Identifier ParseIdentifier(bool* ok);
217 Identifier ParseIdentifierName(bool* ok);
218 Identifier ParseIdentifierOrGetOrSet(bool* is_get, bool* is_set, bool* ok);
222 // Log the currently parsed identifier.
223 Identifier GetIdentifierSymbol();
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 29 Identifier,
82 /// getIdentifier - Get the identifier string for the current token, which
83 /// should be an identifier or a string. This gets the portion of the string
84 /// which should be used as the identifier, e.g., it does not include the
87 if (Kind == Identifier)
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Connection.h 104 typedef mach_port_t Identifier;
106 typedef HANDLE Identifier;
107 static bool createServerAndClientIdentifiers(Identifier& serverIdentifier, Identifier& clientIdentifier);
109 typedef int Identifier;
112 static PassRefPtr<Connection> createServerConnection(Identifier, Client*, RunLoop* clientRunLoop);
113 static PassRefPtr<Connection> createClientConnection(Identifier, Client*, RunLoop* clientRunLoop);
192 Connection(Identifier, bool isServer, Client*, RunLoop* clientRunLoop);
193 void platformInitialize(Identifier);
  /external/javassist/src/main/javassist/compiler/
TokenId.java 102 int Identifier = 400;
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 103 /// invoked after the directive identifier is read and is responsible for
204 /// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
205 /// and set \arg Res to the identifier contents.
602 case AsmToken::Identifier: {
605 StringRef Identifier;
606 if (ParseIdentifier(Identifier))
610 std::pair<StringRef, StringRef> Split = Identifier.split('@');
615 if (Split.first.size() != Identifier.size()) {
644 if (Lexer.getKind() == AsmToken::Identifier) {
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 92 /// nested-name-specifier component of the form 'identifier::'.
97 /// \param Identifier The identifier.
99 /// \param IdentifierLoc The location of the identifier.
102 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
763 /// \brief An identifier.
786 /// \brief When Kind == IK_Identifier, the parsed identifier, or when Kind
787 /// == IK_UserLiteralId, the identifier suffix.
788 IdentifierInfo *Identifier;
825 /// which will be the location of the identifier, "operator" keyword
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex     [all...]

Completed in 1617 milliseconds