HomeSort by: relevance | last modified time | path
    Searched defs:Identifier (Results 1 - 25 of 49) sorted by relevancy

1 2

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
identifier.h 8 * https://github.com/dlang/dmd/blob/master/src/dmd/identifier.h
16 class Identifier : public RootObject
24 static Identifier* create(const char *string);
32 static Identifier *generateId(const char *prefix, size_t length, size_t suffix);
33 static Identifier *idPool(const char *s, unsigned len);
35 static inline Identifier *idPool(const char *s)
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
MemoryBufferRef.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
24 StringRef Identifier;
29 MemoryBufferRef(StringRef Buffer, StringRef Identifier)
30 : Buffer(Buffer), Identifier(Identifier) {}
33 StringRef getBufferIdentifier() const { return Identifier; }
39 /// Check pointer identity (not value) of identifier and data.
44 LHS.Identifier.begin() == RHS.Identifier.begin() &&
45 LHS.Identifier.end() == RHS.Identifier.end()
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Edit/
EditedSource.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
52 IdentifierInfo *Identifier;
59 return std::tie(Identifier, ImmediateExpansionLoc, UseLoc) ==
60 std::tie(Other.Identifier, Other.ImmediateExpansionLoc,
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
RefactoringCallbacks.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
102 enum { Literal, Identifier } Type;
  /src/external/apache2/llvm/dist/clang/lib/AST/
ItaniumCXXABI.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
163 /// Variable decls are numbered by identifier.
170 const IdentifierInfo *Identifier = VD->getIdentifier();
171 if (!Identifier) {
172 // VarDecl without an identifier represents an anonymous union
174 Identifier = findAnonymousUnionVarDeclName(*VD);
176 return ++VarManglingNumbers[Identifier];
FormatString.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
983 const IdentifierInfo *Identifier = Typedef->getIdentifier();
984 if (Identifier->getName() == "size_t") {
987 } else if (Identifier->getName() == "ssize_t") {
991 } else if (Identifier->getName() == "intmax_t") {
994 } else if (Identifier->getName() == "uintmax_t") {
997 } else if (Identifier->getName() == "ptrdiff_t") {
  /src/external/apache2/llvm/dist/clang/tools/clang-diff/
ClangDiff.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
365 auto Identifier = N.getIdentifier();
367 if (Identifier) {
368 OS << R"(,"identifier":")";
369 printJsonString(OS, *Identifier);
371 if (QualifiedIdentifier && *Identifier != *QualifiedIdentifier) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPConstants.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
85 /// The identifier describing the (beginning of the) clause.
86 llvm::StringLiteral Identifier;
87 /// Flag to determine if the identifier is a full name or the start of a name.
97 #define OMP_ASSUME_CLAUSE(Identifier, StartsWith, HasDirectiveList, \
99 {Identifier, StartsWith, HasDirectiveList, HasExpression},
106 S += (S.empty() ? "'" : "', '") + ACMI.Identifier.str();
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
NestedNameSpecifier.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
46 /// specifiers, each of which can be a namespace, type, identifier
68 /// can be an identifier, a declaration, or a type.
80 /// An identifier, stored as an IdentifierInfo*.
81 Identifier,
120 /// Builds a specifier combining a prefix and an identifier.
123 /// referencing an identifier are only permitted when the identifier
144 /// Builds a specifier that consists of just an identifier.
174 /// Retrieve the identifier stored in this nested nam
    [all...]
TemplateName.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
460 /// The identifier template name.
463 const IdentifierInfo *Identifier;
480 const IdentifierInfo *Identifier)
481 : Qualifier(Qualifier, false), Identifier(Identifier),
485 const IdentifierInfo *Identifier,
487 : Qualifier(Qualifier, false), Identifier(Identifier),
505 /// Determine whether this template name refers to an identifier
    [all...]
DeclarationName.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
114 /// Contains the actual identifier that makes up the
203 Identifier = StoredIdentifier,
227 /// StoredIdentifier - The name is a normal identifier, and Ptr is
342 /// declaration name do not point to an identifier.
401 /// because an identifier can be a dependent name if it is used as the
409 /// or null if this declaration name isn't a simple identifier.
471 /// retrieve the identifier associated with it.
612 /// Create a declaration name that is a simple identifier.
643 /// Get the name of the literal operator function with II as the identifier
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
FormatTokenLexer.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
200 // Merges #idenfier into a single identifier with the text #identifier
201 // but the token tok::identifier.
205 auto &Identifier = *(Tokens.end() - 1);
206 if (!Hash->is(tok::hash) || !Identifier->is(tok::identifier))
208 Hash->Tok.setKind(tok::identifier);
211 Identifier->TokenText.end() - Hash->TokenText.begin());
212 Hash->ColumnWidth += Identifier->ColumnWidth
    [all...]
Format.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2184 StringRef Identifier;
2478 findJavaImportGroup(Style, Imports[i].Identifier));
2486 JavaImportGroups[LHSI], Imports[LHSI].Identifier) <
2489 JavaImportGroups[RHSI], Imports[RHSI].Identifier);
2573 StringRef Identifier = Matches[2];
2579 {Identifier, Line, Prev, AssociatedCommentLines, IsStatic});
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
360 /// Find the next identifier in the pragma directive specified by \p RawToken.
366 if (RawToken.is(tok::identifier))
452 StringRef Identifier = NextIdentifierName(RawLex, RawToken);
453 if (Identifier == "clang" || Identifier == "GCC") {
462 } else if (Identifier == "once") {
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExprCXX.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
117 /// nested-name-specifier identifier '::'
147 /// filled in with the leading identifier in the last component of the
162 assert(!LastII && "want last identifier but have already annotated scope");
192 Diag(ConsumeToken(), diag::err_expected) << tok::identifier; member in class:tok
269 // 'identifier <' after it.
281 if (Tok.is(tok::identifier)) {
282 // Consume the identifier.
379 // tok::identifier.
380 if (Tok.isNot(tok::identifier))
415 << tok::identifier; member in class:tok
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
RustDemangle.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
24 struct Identifier {
97 Identifier parseIdentifier();
  /src/external/apache2/llvm/dist/llvm/lib/Object/
COFFModuleDefinition.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
36 Identifier,
118 return Token(Identifier, S);
135 .Default(Identifier);
171 if (Tok.K != Identifier || Tok.Value.getAsInteger(10, *I))
193 if (Tok.K != Identifier) {
236 if (Tok.K != Identifier)
237 return createError("identifier expected, but got " + Tok.Value);
253 if (Tok.K == Identifier && Tok.Value[0] == '@') {
317 if (Tok.K == Identifier) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
MemoryBuffer.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
542 StringRef Identifier = getBufferIdentifier();
543 return MemoryBufferRef(Data, Identifier);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
LinePrinter.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
146 Identifier,
  /src/sys/external/bsd/acpica/dist/compiler/
preprocess.h 96 char *Identifier;
181 char *Identifier);
185 char *Identifier);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MILexer.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
192 static MIToken::TokenKind getIdentifierKind(StringRef Identifier) {
193 return StringSwitch<MIToken::TokenKind>(Identifier)
275 .Default(MIToken::Identifier);
284 auto Identifier = Range.upto(C);
285 Token.reset(getIdentifierKind(Identifier), Identifier)
286 .setStringValue(Identifier);
593 static MIToken::TokenKind getMetadataKeywordKind(StringRef Identifier) {
594 return StringSwitch<MIToken::TokenKind>(Identifier)
    [all...]
MILexer.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
139 // Identifier tokens
140 Identifier,
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAsmMacro.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
28 Identifier,
95 /// Get the identifier string for the current token, which should be an
96 /// identifier or a string. This gets the portion of the string which should
97 /// be used as the identifier, e.g., it does not include the quotes on
100 if (Kind == Identifier)
  /src/sys/external/bsd/acpica/dist/tools/acpisrc/
acpisrc.h 152 char *Identifier;
164 char *Identifier;
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Pragma.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
75 /// specified name. If not, return the handler for the null identifier if it
426 // skipping while reading the identifier to poison.
443 // Look up the identifier info for the token. We disabled identifier lookup
450 // If this is a macro identifier, emit a warning.
748 // Lex a component of a module name: either an identifier or a string literal;
916 // Check to make sure we don't already have a pragma for this identifier.
918 "Pragma handler already exists for this identifier!");
952 if (Tok.isNot(tok::identifier)) {
    [all...]

Completed in 32 milliseconds

1 2