Searched defs:Tokens (Results 1 - 23 of 23) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokens.cs35 public static class Tokens class in namespace:Antlr.Runtime
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenConstants.cs65 public static class Tokens class in namespace:Antlr.Runtime
67 public static readonly IToken EndOfFile = Tokens<CommonToken>.EndOfFile;
79 public static class Tokens<T>
/external/clang/include/clang/Lex/
H A DTokenLexer.h43 /// Tokens - This is the pointer to an array of tokens that the macro is
51 const Token *Tokens; member in class:clang::TokenLexer
54 /// NumTokens - This is the length of the Tokens array.
92 /// OwnsTokens - This is true if this TokenLexer allocated the Tokens
170 /// return preexpanded tokens from Tokens.
/external/clang/lib/Format/
H A DFormatTokenLexer.h79 // Index (in 'Tokens') of the last token that starts a new line.
81 SmallVector<FormatToken *, 16> Tokens; member in class:clang::format::FormatTokenLexer
H A DUnwrappedLineParser.h40 /// \brief The \c Tokens comprising this \c UnwrappedLine.
41 std::list<UnwrappedLineNode> Tokens; member in struct:clang::format::UnwrappedLine
65 ArrayRef<FormatToken *> Tokens,
165 FormatTokenSource *Tokens; member in class:clang::format::UnwrappedLineParser
H A DFormat.cpp803 FormatTokenLexer &Tokens, tooling::Replacements &Result) override {
821 ContinuationIndenter Indenter(Style, Tokens.getKeywords(),
824 UnwrappedLineFormatter(&Indenter, &Whitespaces, Style, Tokens.getKeywords(),
994 FormatTokenLexer &Tokens, tooling::Replacements &Result) override {
1151 std::vector<FormatToken *> Tokens; local
1153 std::back_inserter(Tokens));
1159 while (Idx < Tokens.size()) {
1161 while ((End + 1) < Tokens.size() &&
1162 Tokens[End]->Next == Tokens[En
[all...]
H A DUnwrappedLineParser.cpp126 else if (!Parser.Line->Tokens.empty())
127 Parser.CurrentLines = &Parser.Line->Tokens.back().Children;
135 if (!Parser.Line->Tokens.empty()) {
138 assert(Parser.Line->Tokens.empty());
173 IndexedTokenSource(ArrayRef<FormatToken *> Tokens) argument
174 : Tokens(Tokens), Position(-1) {}
178 return Tokens[Position];
188 return Tokens[Position];
194 ArrayRef<FormatToken *> Tokens; member in class:clang::format::__anon1308::IndexedTokenSource
200 UnwrappedLineParser(const FormatStyle &Style, const AdditionalKeywords &Keywords, ArrayRef<FormatToken *> Tokens, UnwrappedLineConsumer &Callback) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
H A DEDInst.h94 tokvec_t Tokens; member in struct:llvm::EDInst
156 /// tokenize - populates the Tokens member of the instruction, returning 0 on
/external/fmtlib/support/
H A Ddocopt.py282 class Tokens(list): class in inherits:list
292 return Tokens(source, error=DocoptLanguageError)
370 tokens = Tokens.from_pattern(source)
569 argv = parse_argv(Tokens(argv), list(options), options_first)
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.h115 const struct tgsi_token *Tokens; member in struct:tgsi_parse_context
H A Dtgsi_exec.h271 const struct tgsi_token *Tokens; /**< Declarations, instructions */ member in struct:tgsi_exec_machine
/external/clang/lib/Lex/
H A DPPMacroExpansion.cpp581 static bool CheckMatchedBrackets(const SmallVectorImpl<Token> &Tokens) { argument
583 for (SmallVectorImpl<Token>::const_iterator I = Tokens.begin(),
584 E = Tokens.end();
988 // Go through all the TokenLexers whose 'Tokens' pointer points in the
994 prevLexer->Tokens = MacroExpandedTokens.data() + tokIndex;
H A DPreprocessor.cpp275 llvm::errs() << "\n Macro Expanded Tokens: "
329 ArrayRef<TokenValue> Tokens) {
330 return Tokens.size() == MI->getNumTokens() &&
331 std::equal(Tokens.begin(), Tokens.end(), MI->tokens_begin());
336 ArrayRef<TokenValue> Tokens) const {
347 if (!MacroDefinitionEquals(Def.getMacroInfo(), Tokens))
328 MacroDefinitionEquals(const MacroInfo *MI, ArrayRef<TokenValue> Tokens) argument
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_fpc.h319 union i915_full_token* Tokens; member in struct:i915_token_list
/external/clang/lib/AST/
H A DCommentSema.cpp691 TokenValue Tokens[] = { local
697 Tokens);
/external/llvm/lib/CodeGen/
H A DIfConversion.cpp208 std::vector<std::unique_ptr<IfcvtToken>> &Tokens);
212 std::vector<std::unique_ptr<IfcvtToken>> &Tokens);
322 std::vector<std::unique_ptr<IfcvtToken>> Tokens; local
330 AnalyzeBlocks(MF, Tokens);
331 while (!Tokens.empty()) {
332 std::unique_ptr<IfcvtToken> Token = std::move(Tokens.back());
333 Tokens.pop_back();
425 Tokens.clear();
802 MachineBasicBlock *MBB, std::vector<std::unique_ptr<IfcvtToken>> &Tokens) {
900 Tokens
801 AnalyzeBlock( MachineBasicBlock *MBB, std::vector<std::unique_ptr<IfcvtToken>> &Tokens) argument
990 AnalyzeBlocks( MachineFunction &MF, std::vector<std::unique_ptr<IfcvtToken>> &Tokens) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DIfConversion.cpp185 std::vector<IfcvtToken*> &Tokens);
188 void AnalyzeBlocks(MachineFunction &MF, std::vector<IfcvtToken*> &Tokens);
286 std::vector<IfcvtToken*> Tokens; local
294 AnalyzeBlocks(MF, Tokens);
295 while (!Tokens.empty()) {
296 IfcvtToken *Token = Tokens.back();
297 Tokens.pop_back();
393 while (!Tokens.empty()) {
394 IfcvtToken *Token = Tokens.back();
395 Tokens
742 AnalyzeBlock(MachineBasicBlock *BB, std::vector<IfcvtToken*> &Tokens) argument
895 AnalyzeBlocks(MachineFunction &MF, std::vector<IfcvtToken*> &Tokens) argument
[all...]
/external/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp1280 llvm::SmallVector<AsmToken, 4> Tokens; local
1285 Tokens.emplace_back (Lexer.getTok());
1287 switch (Tokens.back().getKind())
1290 if (Tokens.size () > 1)
1291 if ((Tokens.end () - 2)->getKind() == AsmToken::TokenKind::Plus) {
1292 Tokens.insert(Tokens.end() - 2,
1306 while (!Tokens.empty()) {
1307 Lexer.UnLex(Tokens.back());
1308 Tokens
[all...]
/external/clang/tools/libclang/
H A DCIndex.cpp6107 CXToken **Tokens, unsigned *NumTokens) {
6112 if (Tokens)
6113 *Tokens = nullptr;
6123 if (!CXXUnit || !Tokens || !NumTokens)
6138 *Tokens = (CXToken *)malloc(sizeof(CXToken) * CXTokens.size());
6139 memmove(*Tokens, CXTokens.data(), sizeof(CXToken) * CXTokens.size());
6144 CXToken *Tokens, unsigned NumTokens) {
6145 free(Tokens);
6162 CXToken *Tokens; member in class:__anon3298::AnnotateTokensWorker
6181 return Tokens[Id
6106 clang_tokenize(CXTranslationUnit TU, CXSourceRange Range, CXToken **Tokens, unsigned *NumTokens) argument
6143 clang_disposeTokens(CXTranslationUnit TU, CXToken *Tokens, unsigned NumTokens) argument
[all...]
/external/guice/lib/build/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/xml/ javax/xml/parsers/ META-INF/services/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 841 milliseconds