OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Identifier
(Results
1 - 12
of
12
) 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/include/clang/AST/
NestedNameSpecifier.h
42
/// specifiers, each of which can be a namespace, type,
identifier
64
/// can be an
identifier
, a declaration, or a type.
76
/// \brief An
identifier
, stored as an IdentifierInfo*.
77
Identifier
,
110
/// \brief Builds a specifier combining a prefix and an
identifier
.
113
/// referencing an
identifier
are only permitted when the
identifier
134
/// \brief Builds a specifier that consists of just an
identifier
.
159
/// \brief Retrieve the
identifier
stored in this nested name
371
/// nested-name-specifier component of the form '
identifier
::'
[
all
...]
TemplateName.h
450
/// \brief The
identifier
template name.
453
const IdentifierInfo *
Identifier
;
472
const IdentifierInfo *
Identifier
)
473
: Qualifier(Qualifier, false),
Identifier
(
Identifier
),
477
const IdentifierInfo *
Identifier
,
479
: Qualifier(Qualifier, false),
Identifier
(
Identifier
),
497
/// \brief Determine whether this template name refers to an
identifier
.
500
/// \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
30
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
102
/// invoked after the directive
identifier
is read and is responsible for
193
/// ParseIdentifier - Parse an
identifier
or string (as a quoted
identifier
)
194
/// and set \arg Res to the
identifier
contents.
585
case AsmToken::
Identifier
: {
588
StringRef
Identifier
;
589
if (ParseIdentifier(
Identifier
))
593
std::pair<StringRef, StringRef> Split =
Identifier
.split('@');
598
if (Split.first.size() !=
Identifier
.size()) {
627
if (Lexer.getKind() == AsmToken::
Identifier
) {
[
all
...]
/external/clang/include/clang/Sema/
DeclSpec.h
91
/// nested-name-specifier component of the form '
identifier
::'.
96
/// \param
Identifier
The
identifier
.
98
/// \param IdentifierLoc The location of the
identifier
.
101
void Extend(ASTContext &Context, IdentifierInfo *
Identifier
,
755
/// \brief An
identifier
.
778
/// \brief When Kind == IK_Identifier, the parsed
identifier
, or when Kind
779
/// == IK_UserLiteralId, the
identifier
suffix.
780
IdentifierInfo *
Identifier
;
817
/// which will be the location of the
identifier
, "operator" keyword
[
all
...]
/external/dropbear/libtomcrypt/
crypt.tex
[
all
...]
Completed in 451 milliseconds