/external/chromium_org/third_party/re2/re2/ |
set.h | 20 Set(const RE2::Options& options, RE2::Anchor anchor); 44 RE2::Anchor anchor_;
|
prog.h | 173 // Whether to anchor the search. 174 enum Anchor { 179 // Kind of match to look for (for anchor != kFullMatch) 194 kFullMatch, // match only entire text; implies anchor==kAnchored 249 // Anchor and kind control the kind of search. 263 Anchor anchor, MatchKind kind, 273 Anchor anchor, MatchKind kind, 294 Anchor anchor, MatchKind kind [all...] |
set.cc | 15 RE2::Set::Set(const RE2::Options& options, RE2::Anchor anchor) { 17 anchor_ = anchor;
|
re2.h | 141 // anchor your match at the beginning of the string. For example, you 348 // Like Consume(..), but does not anchor the match at the beginning of the 429 enum Anchor { 431 ANCHOR_START, // Anchor at start only 432 ANCHOR_BOTH, // Anchor at start and end 475 Anchor anchor, 685 Anchor anchor, [all...] |
compile.cc | 136 static Prog* CompileSet(const RE2::Options& options, RE2::Anchor anchor, 212 void Setup(Regexp::ParseFlags, int64, RE2::Anchor); 235 RE2::Anchor anchor_; // anchor mode for RE2::Set 953 RE2::Anchor anchor) { 984 anchor_ = anchor; 1093 Prog* Compiler::CompileSet(const RE2::Options& options, RE2::Anchor anchor, [all...] |
/external/regex-re2/re2/ |
set.h | 20 Set(const RE2::Options& options, RE2::Anchor anchor); 44 RE2::Anchor anchor_;
|
prog.h | 173 // Whether to anchor the search. 174 enum Anchor { 179 // Kind of match to look for (for anchor != kFullMatch) 194 kFullMatch, // match only entire text; implies anchor==kAnchored 249 // Anchor and kind control the kind of search. 263 Anchor anchor, MatchKind kind, 273 Anchor anchor, MatchKind kind, 294 Anchor anchor, MatchKind kind [all...] |
set.cc | 15 RE2::Set::Set(const RE2::Options& options, RE2::Anchor anchor) { 17 anchor_ = anchor;
|
re2.h | 141 // anchor your match at the beginning of the string. For example, you 348 // Like Consume(..), but does not anchor the match at the beginning of the 429 enum Anchor { 431 ANCHOR_START, // Anchor at start only 432 ANCHOR_BOTH, // Anchor at start and end 475 Anchor anchor, 697 Anchor anchor, [all...] |
compile.cc | 135 static Prog* CompileSet(const RE2::Options& options, RE2::Anchor anchor, 211 void Setup(Regexp::ParseFlags, int64, RE2::Anchor); 234 RE2::Anchor anchor_; // anchor mode for RE2::Set 952 RE2::Anchor anchor) { 983 anchor_ = anchor; 1092 Prog* Compiler::CompileSet(const RE2::Options& options, RE2::Anchor anchor, [all...] |
/external/chromium_org/third_party/re2/re2/testing/ |
tester.h | 63 Prog::Anchor anchor); 69 Prog::Anchor anchor, 73 const StringPiece& context, Prog::Anchor anchor); 101 Prog::Anchor anchor); 103 // Run TestCase(text, text, anchor) for all anchoring modes. 106 // Run TestCase(text, context, anchor) for all anchoring modes [all...] |
tester.cc | 123 // Returns string representation of anchor kind. 124 static string FormatAnchor(Prog::Anchor anchor) { 125 switch (anchor) { 282 Prog::Anchor anchor, 306 prog_->UnsafeSearchBacktrack(text, context, anchor, kind_, 317 prog_->SearchNFA(text, context, anchor, kind_, 327 result->matched = prog_->SearchDFA(text, context, anchor, kind_, NULL, 337 prog_->SearchDFA(text, context, anchor, kind_, result->submatch [all...] |
regexp_benchmark.cc | 106 Prog::Anchor anchor, bool expect_match); 802 Prog::Anchor anchor, bool expect_match) { 809 CHECK_EQ(prog->SearchDFA(text, NULL, anchor, Prog::kFirstMatch, 819 Prog::Anchor anchor, bool expect_match) { 825 CHECK_EQ(prog->SearchNFA(text, NULL, anchor, Prog::kFirstMatch, NULL, 0), [all...] |
exhaustive_tester.cc | 59 static void PrintResult(const RE2& re, const StringPiece& input, RE2::Anchor anchor, StringPiece *m, int n) { 60 if (!re.Match(input, 0, input.size(), anchor, m, n)) {
|
/external/regex-re2/re2/testing/ |
tester.h | 63 Prog::Anchor anchor); 69 Prog::Anchor anchor, 73 const StringPiece& context, Prog::Anchor anchor); 101 Prog::Anchor anchor); 103 // Run TestCase(text, text, anchor) for all anchoring modes. 106 // Run TestCase(text, context, anchor) for all anchoring modes [all...] |
tester.cc | 123 // Returns string representation of anchor kind. 124 static string FormatAnchor(Prog::Anchor anchor) { 125 switch (anchor) { 282 Prog::Anchor anchor, 306 prog_->UnsafeSearchBacktrack(text, context, anchor, kind_, 317 prog_->SearchNFA(text, context, anchor, kind_, 327 result->matched = prog_->SearchDFA(text, context, anchor, kind_, NULL, 337 prog_->SearchDFA(text, context, anchor, kind_, result->submatch [all...] |
regexp_benchmark.cc | 106 Prog::Anchor anchor, bool expect_match); 802 Prog::Anchor anchor, bool expect_match) { 809 CHECK_EQ(prog->SearchDFA(text, NULL, anchor, Prog::kFirstMatch, 819 Prog::Anchor anchor, bool expect_match) { 825 CHECK_EQ(prog->SearchNFA(text, NULL, anchor, Prog::kFirstMatch, NULL, 0), [all...] |
exhaustive_tester.cc | 59 static void PrintResult(const RE2& re, const StringPiece& input, RE2::Anchor anchor, StringPiece *m, int n) { 60 if (!re.Match(input, 0, input.size(), anchor, m, n)) {
|
/external/llvm/include/llvm/IR/ |
SymbolTableListTraits.h | 51 iplist<ValueSubClass>* Anchor(static_cast<iplist<ValueSubClass>*>(this)); 52 return reinterpret_cast<ItemParentClass*>(reinterpret_cast<char*>(Anchor)-
|
/external/llvm/include/llvm/Support/ |
YAMLParser.h | 119 Node(unsigned int Type, OwningPtr<Document>&, StringRef Anchor); 121 /// @brief Get the value of the anchor attached to this node. If it does not 123 StringRef getAnchor() const { return Anchor; } 160 StringRef Anchor; 183 ScalarNode(OwningPtr<Document> &D, StringRef Anchor, StringRef Val) 184 : Node(NK_Scalar, D, Anchor) 341 MappingNode(OwningPtr<Document> &D, StringRef Anchor, MappingType MT) 342 : Node(NK_Mapping, D, Anchor) 400 SequenceNode(OwningPtr<Document> &D, StringRef Anchor, SequenceType ST) 401 : Node(NK_Sequence, D, Anchor) [all...] |
/external/llvm/utils/yaml-bench/ |
YAMLBench.cpp | 73 StringRef Anchor = n->getAnchor(); 74 if (!Anchor.empty()) 75 outs() << "&" << Anchor << " ";
|
/frameworks/base/media/java/android/media/ |
SubtitleController.java | 31 * media source. It allows specifying which tracks to display, on which anchor 146 * Should be called from the anchor's (UI) thread. {@see #Anchor.getSubtitleLooper} 263 /** @hide - should be called from anchor thread */ 300 /** @hide - must be called from anchor thread */ 343 * Should be called from the anchor's (UI) thread. {@see #Anchor.getSubtitleLooper} 360 * Should be called from the anchor's (UI) thread. {@see #Anchor.getSubtitleLooper} 424 * Subtitle anchor, an object that is able to display a subtitle renderer [all...] |
/external/chromium_org/third_party/re2/util/ |
pcre.h | 141 // anchor your match at the beginning of the string. For example, you 224 EnabledExecOptions = 0x0000, // TODO: use to replace anchor flag 356 // Like Consume(..), but does not anchor the match at the beginning of the 451 enum Anchor { 453 ANCHOR_START, // Anchor at start only 454 ANCHOR_BOTH, // Anchor at start and end 460 Anchor anchor, 485 Anchor anchor, [all...] |
/external/regex-re2/util/ |
pcre.h | 141 // anchor your match at the beginning of the string. For example, you 218 EnabledExecOptions = 0x0000, // TODO: use to replace anchor flag 350 // Like Consume(..), but does not anchor the match at the beginning of the 445 enum Anchor { 447 ANCHOR_START, // Anchor at start only 448 ANCHOR_BOTH, // Anchor at start and end 454 Anchor anchor, 479 Anchor anchor, [all...] |
/external/chromium_org/tools/stats_viewer/ |
stats_viewer.Designer.cs | 106 this.pictureBoxTitle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
161 this.comboBoxFilter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
187 this.buttonExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
198 this.buttonZero.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
228 this.labelFilter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|