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

12

/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/chromium_org/chrome/browser/ssl/
H A Dssl_error_classification.h69 typedef std::vector<std::string> Tokens; typedef in class:SSLErrorClassification
85 bool NameUnderAnyNames(const Tokens& child,
86 const std::vector<Tokens>& potential_parents) const;
92 bool AnyNamesUnderName(const std::vector<Tokens>& potential_children,
93 const Tokens& parent) const;
100 bool IsSubDomainOutsideWildcard(const Tokens& hostname) const;
108 static std::vector<Tokens> GetTokenizedDNSNames(
120 size_t FindSubDomainDifference(const Tokens& potential_subdomain,
121 const Tokens& parent) const;
123 static Tokens Tokeniz
[all...]
/external/chromium_org/ui/app_list/search/
H A Dtokenized_string.h22 typedef std::vector<base::string16> Tokens; typedef in class:app_list::TokenizedString
29 const Tokens& tokens() const { return tokens_; }
39 Tokens tokens_;
/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/chromium_org/components/pairing/
H A Dfake_host_pairing_controller.cc39 typedef std::vector<std::string> Tokens; typedef
H A Dfake_controller_pairing_controller.cc35 typedef std::vector<std::string> Tokens; typedef
58 Tokens lost_begin_end;
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DDateTimeFormatTest.cpp82 class Tokens { class in class:DateTimeFormatTest
84 Tokens() { } function in class:DateTimeFormatTest::Tokens
86 explicit Tokens(const Vector<Token> tokens) function in class:DateTimeFormatTest::Tokens
91 explicit Tokens(const String& string) function in class:DateTimeFormatTest::Tokens
96 explicit Tokens(Token token1) function in class:DateTimeFormatTest::Tokens
101 Tokens(Token token1, Token token2) function in class:DateTimeFormatTest::Tokens
107 Tokens(Token token1, Token token2, Token token3) function in class:DateTimeFormatTest::Tokens
114 Tokens(Token token1, Token token2, Token token3, Token token4) function in class:DateTimeFormatTest::Tokens
122 Tokens(Token token1, Token token2, Token token3, Token token4, Token token5) function in class:DateTimeFormatTest::Tokens
131 Tokens(Toke function in class:DateTimeFormatTest::Tokens
[all...]
/external/clang/lib/Format/
H A DUnwrappedLineParser.h39 /// \brief The \c Tokens comprising this \c UnwrappedLine.
40 std::list<UnwrappedLineNode> Tokens; member in struct:clang::format::UnwrappedLine
62 UnwrappedLineParser(const FormatStyle &Style, ArrayRef<FormatToken *> Tokens,
160 FormatTokenSource *Tokens; member in class:clang::format::UnwrappedLineParser
H A DUnwrappedLineParser.cpp129 else if (!Parser.Line->Tokens.empty())
130 Parser.CurrentLines = &Parser.Line->Tokens.back().Children;
138 if (!Parser.Line->Tokens.empty()) {
141 assert(Parser.Line->Tokens.empty());
178 IndexedTokenSource(ArrayRef<FormatToken *> Tokens) argument
179 : Tokens(Tokens), Position(-1) {}
183 return Tokens[Position];
193 return Tokens[Position];
199 ArrayRef<FormatToken *> Tokens; member in class:clang::format::__anon17901::IndexedTokenSource
205 UnwrappedLineParser(const FormatStyle &Style, ArrayRef<FormatToken *> Tokens, UnwrappedLineConsumer &Callback) argument
[all...]
H A DFormat.cpp1282 assert(Tokens.empty());
1285 Tokens.push_back(getNextToken());
1287 if (Tokens.back()->NewlinesBefore > 0)
1288 FirstInLineIndex = Tokens.size() - 1;
1289 } while (Tokens.back()->Tok.isNot(tok::eof));
1290 return Tokens;
1327 if (Tokens.size() < Kinds.size())
1331 Tokens.end() - Kinds.size();
1341 Tokens.resize(Tokens
1644 SmallVector<FormatToken *, 16> Tokens; member in class:clang::format::__anon17898::FormatTokenLexer
1727 format(SmallVectorImpl<AnnotatedLine *> &AnnotatedLines, bool StructuralError, FormatTokenLexer &Tokens) argument
[all...]
/external/chromium_org/third_party/mesa/src/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/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.cpp385 static bool CheckMatchedBrackets(const SmallVectorImpl<Token> &Tokens) { argument
387 for (SmallVectorImpl<Token>::const_iterator I = Tokens.begin(),
388 E = Tokens.end();
790 // Go through all the TokenLexers whose 'Tokens' pointer points in the
796 prevLexer->Tokens = MacroExpandedTokens.data() + tokIndex;
H A DPreprocessor.cpp251 llvm::errs() << "\n Macro Expanded Tokens: "
297 ArrayRef<TokenValue> Tokens) {
298 return Tokens.size() == MI->getNumTokens() &&
299 std::equal(Tokens.begin(), Tokens.end(), MI->tokens_begin());
304 ArrayRef<TokenValue> Tokens) const {
315 if (!MacroDefinitionEquals(Def.getMacroInfo(), Tokens))
296 MacroDefinitionEquals(const MacroInfo *MI, ArrayRef<TokenValue> Tokens) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_fpc.h319 union i915_full_token* Tokens; member in struct:i915_token_list
/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.cpp693 TokenValue Tokens[] = { local
699 Tokens);
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1127 TokenValue Tokens[] = { local
1133 StringRef MacroName = PP.getLastMacroWithSpelling(L, Tokens);
/external/llvm/lib/CodeGen/
H A DIfConversion.cpp197 std::vector<IfcvtToken*> &Tokens);
200 void AnalyzeBlocks(MachineFunction &MF, std::vector<IfcvtToken*> &Tokens);
307 std::vector<IfcvtToken*> Tokens; local
315 AnalyzeBlocks(MF, Tokens);
316 while (!Tokens.empty()) {
317 IfcvtToken *Token = Tokens.back();
318 Tokens.pop_back();
413 while (!Tokens.empty()) {
414 IfcvtToken *Token = Tokens.back();
415 Tokens
757 AnalyzeBlock(MachineBasicBlock *BB, std::vector<IfcvtToken*> &Tokens) argument
910 AnalyzeBlocks(MachineFunction &MF, std::vector<IfcvtToken*> &Tokens) argument
[all...]
/external/clang/tools/libclang/
H A DCIndex.cpp5218 CXToken **Tokens, unsigned *NumTokens) {
5223 if (Tokens)
5224 *Tokens = nullptr;
5234 if (!CXXUnit || !Tokens || !NumTokens)
5249 *Tokens = (CXToken *)malloc(sizeof(CXToken) * CXTokens.size());
5250 memmove(*Tokens, CXTokens.data(), sizeof(CXToken) * CXTokens.size());
5255 CXToken *Tokens, unsigned NumTokens) {
5256 free(Tokens);
5273 CXToken *Tokens; member in class:__anon19512::AnnotateTokensWorker
5292 return Tokens[Id
5217 clang_tokenize(CXTranslationUnit TU, CXSourceRange Range, CXToken **Tokens, unsigned *NumTokens) argument
5254 clang_disposeTokens(CXTranslationUnit TU, CXToken *Tokens, unsigned NumTokens) argument
[all...]
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/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/ ...

Completed in 566 milliseconds

12