Searched refs:Token (Results 101 - 125 of 310) sorted by relevance

1234567891011>>

/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DHeaderIncludeGen.cpp49 void FileSkipped(const FileEntryRef &SkippedFile, const Token &FilenameTok,
189 Token &FilenameTok,
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Extract/
H A DSourceExtraction.cpp103 Optional<Token> NextToken = Lexer::findNextToken(End, SM, LangOpts);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp159 Token, enumerator in enum:__anon3256::ClassInfo::ClassInfoKind
182 /// ClassName - The unadorned generic name for this class (e.g., Token).
191 /// operand matches this class; this is not valid for Token or register kinds.
195 /// MCInst; this is not valid for Token or register kinds.
233 if (Kind == Token || RHS.Kind == Token)
234 return Kind == Token && RHS.Kind == Token;
316 if (Kind == Token) {
317 if (RHS.Kind != Token)
381 StringRef Token; member in struct:__anon3256::MatchableInfo::AsmOperand
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dtokens.h444 // Token has an anonymous struct, which is not strict ISO C++.
450 struct Token struct
452 Token *next;
478 Token() : next(NULL) {} function in struct:Token
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h73 Token Tok;
441 const Token &getCurToken() const { return Tok; }
482 "Should consume special tokens with Consume*Token");
492 "Should consume special tokens with Consume*Token");
569 void UnconsumeToken(Token &Consumed) {
570 Token Next = Tok;
783 const Token &GetLookAheadToken(unsigned N) {
791 const Token &NextToken() {
796 static TypeResult getTypeAnnotation(const Token &Tok) {
803 static void setTypeAnnotation(Token
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DMacroInfo.h17 #include "clang/Lex/Token.h"
61 SmallVector<Token, 8> ReplacementTokens;
235 const Token &getReplacementToken(unsigned Tok) const {
240 using tokens_iterator = SmallVectorImpl<Token>::const_iterator;
245 ArrayRef<Token> tokens() const { return ReplacementTokens; }
248 void AddTokenToBody(const Token &Tok) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/Format/
H A DBreakableToken.cpp219 bool switchesFormatting(const FormatToken &Token) { argument
220 assert((Token.is(TT_BlockComment) || Token.is(TT_LineComment)) &&
222 StringRef Content = Token.TokenText.substr(2).ltrim();
295 BreakableComment::BreakableComment(const FormatToken &Token, argument
299 : BreakableToken(Token, InPPDirective, Encoding, Style),
367 const FormatToken &Token, unsigned StartColumn,
370 : BreakableComment(Token, StartColumn, InPPDirective, Encoding, Style),
372 UnbreakableTailLength(Token.UnbreakableTailLength) {
754 const FormatToken &Token, unsigne
366 BreakableBlockComment( const FormatToken &Token, unsigned StartColumn, unsigned OriginalStartColumn, bool FirstInLine, bool InPPDirective, encoding::Encoding Encoding, const FormatStyle &Style, bool UseCRLF) argument
753 BreakableLineCommentSection( const FormatToken &Token, unsigned StartColumn, bool InPPDirective, encoding::Encoding Encoding, const FormatStyle &Style) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/M68k/AsmParser/
H A DM68kAsmParser.cpp122 Token, member in class:__anon2470::M68kOperand::Kind
130 StringRef Token; member in union:__anon2470::M68kOperand::__anon2471
158 // Token
161 static std::unique_ptr<M68kOperand> createToken(StringRef Token, SMLoc Start,
273 // Token
274 bool M68kOperand::isToken() const { return Kind == Kind::Token; }
277 return Token;
280 std::unique_ptr<M68kOperand> M68kOperand::createToken(StringRef Token, argument
282 auto Op = std::make_unique<M68kOperand>(Kind::Token, Start, End);
283 Op->Token
850 OS << "token '" << Token << "'"; local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-rc/
H A DResourceScriptStmt.h34 RCInt(const RCToken &Token) argument
35 : Val(Token.intValue()), Long(Token.isLongInt()) {}
130 Data(const RCToken &Token) { argument
131 if (Token.kind() == RCToken::Kind::Int)
132 Int = RCInt(Token);
134 String = Token.value();
144 IntOrString(const RCToken &Token) argument
145 : Data(Token), IsInt(Token
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/CSKY/AsmParser/
H A DCSKYAsmParser.cpp85 Token, enumerator in enum:__anon2379::CSKYOperand::KindTy
119 case Token:
125 bool isToken() const override { return Kind == Token; }
207 assert(Kind == Token && "Invalid type access!");
219 case Token:
226 auto Op = std::make_unique<CSKYOperand>(Token);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DPPLexerChange.cpp124 void Preprocessor::EnterMacro(Token &Tok, SourceLocation ILEnd,
153 void Preprocessor::EnterTokenStream(const Token *Toks, unsigned NumToks,
221 void Preprocessor::PropagateLineStartLeadingSpaceInfo(Token &Result) {
305 bool Preprocessor::HandleEndOfFile(Token &Result, bool isEndOfMacro) {
548 bool Preprocessor::HandleEndOfTokenLexer(Token &Result) {
586 void Preprocessor::HandleMicrosoftCommentPaste(Token &Tok) {
H A DDependencyDirectivesSourceMinimizer.cpp35 SmallVectorImpl<Token> &Tokens;
37 Minimizer(SmallVectorImpl<char> &Out, SmallVectorImpl<Token> &Tokens,
69 Token &makeToken(TokenKind K) {
903 ArrayRef<Token> Input, llvm::SmallVectorImpl<SkippedRange> &Range) {
913 for (const Token &T : Input) {
952 SmallVectorImpl<Token> &Tokens, DiagnosticsEngine *Diags,
H A DPPExpressions.cpp29 #include "clang/Lex/Token.h"
76 Token &PeekTok, bool ValueLive,
102 static bool EvaluateDefined(PPValue &Result, Token &PeekTok, DefinedTracker &DT,
141 Token macroToken(PeekTok);
229 static bool EvaluateValue(PPValue &Result, Token &PeekTok, DefinedTracker &DT,
556 Token &Tok) {
572 Token &PeekTok, bool ValueLive,
864 Token Tok;
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
H A DMCTargetAsmParser.h402 AsmToken Token, OperandVector &Operands) {
403 return ParseInstruction(Info, Name, Token.getLoc(), Operands);
469 virtual bool isLabel(AsmToken &Token) { return true; }; argument
401 ParseInstruction(ParseInstructionInfo &Info, StringRef Name, AsmToken Token, OperandVector &Operands) argument
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
H A DLLLexer.h90 lltok::Kind LexUIntID(lltok::Kind Token);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DIntrinsicInst.cpp465 const Value *Token = getArgOperand(0); local
469 if (!isa<LandingPadInst>(Token))
470 return cast<GCStatepointInst>(Token);
474 cast<Instruction>(Token)->getParent()->getUniquePredecessor();
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dparse.c100 Token *tk;
278 Token *t = peek(&token);
374 Token *t = peek(&token);
568 Token *tk;
992 error("conflicting attribute '%s'", Token::toChars(token.value));
998 error("conflicting attribute '%s'", Token::toChars(token.value));
1505 id = Identifier::idPool(Token::toChars(TOKunittest));
1507 id = Identifier::idPool(Token::toChars(TOKassert));
2042 Token *t;
2158 Token *t
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Interpreter/
H A DIncrementalParser.cpp236 Token Tok;
242 Token AssertTok;
/netbsd-current/external/apache2/llvm/dist/llvm/tools/bugpoint/
H A DToolRunner.cpp357 std::string Token; local
366 Token.push_back(CommandLine[++Pos]);
371 if (Token.empty())
375 Command = Token;
377 Token.clear();
381 Args.push_back(Token);
382 Token.clear();
385 Token.push_back(CommandLine[Pos]);
/netbsd-current/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DTransforms.cpp155 Token tok;
403 Token tok;
413 Token BeforeTok = tok;
414 Token AfterTok;
484 Token tok;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp213 Token Eof;
351 Token LastDefaultArgToken = Toks->back();
352 Token DefArgEnd;
431 Token LastExceptionSpecToken = Toks->back();
432 Token ExceptionSpecEnd;
523 Token LastBodyToken = LM.Toks.back();
524 Token BodyEnd;
693 Token AttrEnd;
1016 const Token &PreviousToken = Toks[Toks.size() - 2];
1127 auto Buffer = std::make_unique<Token[]>(Tok
[all...]
/netbsd-current/sys/external/bsd/gnu-efi/dist/inc/
H A Defiprot.h153 IN OUT EFI_BLOCK_IO2_TOKEN *Token,
164 IN OUT EFI_BLOCK_IO2_TOKEN *Token,
173 IN OUT EFI_BLOCK_IO2_TOKEN *Token
253 IN OUT EFI_DISK_IO2_TOKEN *Token,
264 IN OUT EFI_DISK_IO2_TOKEN *Token,
273 IN OUT EFI_DISK_IO2_TOKEN *Token
422 IN OUT EFI_FILE_IO_TOKEN *Token
429 IN OUT EFI_FILE_IO_TOKEN *Token
436 IN OUT EFI_FILE_IO_TOKEN *Token
443 IN OUT EFI_FILE_IO_TOKEN *Token
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DCommandLine.cpp826 SmallString<128> Token; local
829 if (Token.empty()) {
845 Token.push_back(Src[I]);
856 Token.push_back(Src[I]);
866 if (!Token.empty())
867 NewArgv.push_back(Saver.save(StringRef(Token)).data());
871 Token.clear();
876 Token.push_back(C);
880 if (!Token.empty())
881 NewArgv.push_back(Saver.save(StringRef(Token))
901 parseBackslash(StringRef Src, size_t I, SmallString<128> &Token) argument
933 SmallString<128> Token; local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DIntrinsics.h118 Token, enumerator in enum:llvm::Intrinsic::IITDescriptor::IITDescriptorKind
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DCommentLexer.cpp21 void Token::dump(const Lexer &L, const SourceManager &SM) const {
22 llvm::errs() << "comments::Token Kind=" << Kind << " ";
279 void Lexer::formTokenWithChars(Token &Result, const char *TokEnd,
292 void Lexer::lexCommentText(Token &T) {
463 void Lexer::setupAndLexVerbatimBlock(Token &T,
488 void Lexer::lexVerbatimBlockFirstLine(Token &T) {
533 void Lexer::lexVerbatimBlockBody(Token &T) {
548 void Lexer::setupAndLexVerbatimLine(Token &T, const char *TextBegin,
557 void Lexer::lexVerbatimLineText(Token &T) {
569 void Lexer::lexHTMLCharacterReference(Token
[all...]

Completed in 469 milliseconds

1234567891011>>