/external/chromium/base/i18n/ |
break_iterator_unittest.cc | 17 EXPECT_FALSE(iter.IsWord()); 19 EXPECT_FALSE(iter.IsWord()); 28 EXPECT_FALSE(iter.IsWord()); 31 EXPECT_TRUE(iter.IsWord()); 34 EXPECT_FALSE(iter.IsWord()); 37 EXPECT_TRUE(iter.IsWord()); 40 EXPECT_FALSE(iter.IsWord()); 43 EXPECT_FALSE(iter.IsWord()); 46 EXPECT_FALSE(iter.IsWord()); 49 EXPECT_TRUE(iter.IsWord()); [all...] |
break_iterator.cc | 90 bool BreakIterator::IsWord() const {
|
break_iterator.h | 44 // through the string and test whether IsWord() is true. E.g., 48 // if (iter.IsWord()) { 93 bool IsWord() const;
|
/external/chromium_org/base/i18n/ |
break_iterator_unittest.cc | 20 EXPECT_FALSE(iter.IsWord()); 22 EXPECT_FALSE(iter.IsWord()); 31 EXPECT_FALSE(iter.IsWord()); 34 EXPECT_TRUE(iter.IsWord()); 37 EXPECT_FALSE(iter.IsWord()); 40 EXPECT_TRUE(iter.IsWord()); 43 EXPECT_FALSE(iter.IsWord()); 46 EXPECT_FALSE(iter.IsWord()); 49 EXPECT_FALSE(iter.IsWord()); 52 EXPECT_TRUE(iter.IsWord()); [all...] |
break_iterator.h | 44 // through the string and test whether IsWord() is true. E.g., 49 // if (iter.IsWord()) { 89 bool IsWord() const;
|
break_iterator.cc | 94 bool BreakIterator::IsWord() const {
|
/external/chromium_org/chrome/browser/ui/app_list/search/ |
tokenized_string.cc | 28 if (!break_iter.IsWord())
|
/external/chromium_org/chrome/browser/spellchecker/ |
word_trimmer.cc | 27 if (iter.IsWord()) {
|
/external/chromium/chrome/browser/history/ |
query_parser.cc | 74 virtual bool IsWord() const { return true; } 133 virtual bool IsWord() const { return false; } 169 if (children_[i]->IsWord()) 340 if (iter.IsWord()) { 377 if (iter.IsWord()) {
|
query_parser.h | 40 virtual bool IsWord() const = 0;
|
/external/chromium_org/chrome/browser/history/ |
query_parser.cc | 87 virtual bool IsWord() const OVERRIDE; 118 bool QueryNodeWord::IsWord() const { 173 virtual bool IsWord() const OVERRIDE; 203 if (children_[i]->IsWord()) 220 bool QueryNodeList::IsWord() const { 429 if (iter.IsWord()) { 464 if (iter.IsWord()) {
|
query_parser.h | 37 virtual bool IsWord() const = 0;
|
in_memory_url_index_types.cc | 142 if (break_on_space || iter.IsWord()) {
|
/external/llvm/lib/Support/ |
regengine.inc | 541 !ISWORD(*(sp-1))) ) && 542 (sp < m->endp && ISWORD(*sp)) ) 551 (sp < m->endp && !ISWORD(*sp)) ) && 552 (sp > m->beginp && ISWORD(*(sp-1))) ) 729 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) && 730 (c != OUT && ISWORD(c)) ) { 733 if ( (lastc != OUT && ISWORD(lastc)) && 734 (flagch == EOL || (c != OUT && !ISWORD(c))) ) { 812 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) && 813 (c != OUT && ISWORD(c)) ) [all...] |
regex2.h | 157 #define ISWORD(c) (isalnum(c&0xff) || (c) == '_')
|
/ndk/sources/host-tools/ndk-stack/regex/ |
engine.c | 532 !ISWORD(*(sp-1))) ) && 533 (sp < m->endp && ISWORD(*sp)) ) 542 (sp < m->endp && !ISWORD(*sp)) ) && 543 (sp > m->beginp && ISWORD(*(sp-1))) ) 719 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) && 720 (c != OUT && ISWORD(c)) ) { 723 if ( (lastc != OUT && ISWORD(lastc)) && 724 (flagch == EOL || (c != OUT && !ISWORD(c))) ) { 801 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) && 802 (c != OUT && ISWORD(c)) ) [all...] |
/external/chromium_org/third_party/re2/re2/ |
nfa.cc | 492 int isword = 0; local 494 isword = Prog::IsWordChar(p[0] & 0xFF); 496 if (isword != wasword) 502 fprintf(stderr, "%c[%#x/%d/%d]:", p > text.end() ? '$' : p == bp ? '^' : c, flag, isword, wasword); 575 isword = 0; 577 isword = Prog::IsWordChar(p[0] & 0xFF); 600 wasword = isword;
|
/external/regex-re2/re2/ |
nfa.cc | 492 int isword = 0; local 494 isword = Prog::IsWordChar(p[0] & 0xFF); 496 if (isword != wasword) 502 fprintf(stderr, "%c[%#x/%d/%d]:", p > text.end() ? '$' : p == bp ? '^' : c, flag, isword, wasword); 575 isword = 0; 577 isword = Prog::IsWordChar(p[0] & 0xFF); 600 wasword = isword;
|
/bionic/libc/upstream-netbsd/libc/regex/ |
engine.c | 629 !ISWORD(*(sp-1))) ) && 630 (sp < m->endp && ISWORD(*sp)) ) 639 (sp < m->endp && !ISWORD(*sp)) ) && 640 (sp > m->beginp && ISWORD(*(sp-1))) ) 826 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) && 827 (c != OUT && ISWORD(c)) ) { 830 if ( (lastc != OUT && ISWORD(lastc)) && 831 (flagch == EOL || (c != OUT && !ISWORD(c))) ) { 919 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) && 920 (c != OUT && ISWORD(c)) ) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
TextUtils.js | 67 isWord: function(word)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
SearchEngine.py | 39 def isword(self): member in class:SearchEngine 54 if self.isword():
|
SearchDialogBase.py | 102 if self.engine.isword():
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
SearchEngine.py | 39 def isword(self): member in class:SearchEngine 54 if self.isword():
|
SearchDialogBase.py | 102 if self.engine.isword():
|
/external/chromium_org/chrome/browser/autocomplete/ |
contact_provider_chromeos.cc | 130 if (break_iterator.IsWord())
|