/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/myfixes/ |
fix_first.py | 6 def match(self, node): return False member in class:FixFirst
|
fix_last.py | 7 def match(self, node): return False member in class:FixLast
|
fix_preorder.py | 6 def match(self, node): return False member in class:FixPreorder
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/ |
diff.rb | 3 Match = Struct.new(:start_in_old, :start_in_new, :size) 4 class Match 39 # an empty match at the end forces the loop below to handle the unmatched tails 41 matches << Match.new(@old_words.length, @new_words.length, 0) 43 matches.each_with_index do |match, i| 44 match_starts_at_current_position_in_old = (position_in_old == match.start_in_old) 45 match_starts_at_current_position_in_new = (position_in_new == match.start_in_new) 63 position_in_old, match.start_in_old, 64 position_in_new, match.start_in_new) 67 if match.size != [all...] |
/external/chromium_org/build/android/ |
symbolize.py | 36 match = re.search(TRACE_LINE, data) 37 if not match: 41 frame = match.group('frame') 42 lib = match.group('lib') 43 addr = match.group('addr') 61 post = match.end('addr') 66 pre = match.start('frame') 67 post = match.end('addr')
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
phonenumbermatch.cc | 17 // Implementation of a mutable match of a phone number within a piece of 78 bool PhoneNumberMatch::Equals(const PhoneNumberMatch& match) const { 79 return ExactlySameAs(match.number_, number_) && 80 match.raw_string_.compare(raw_string_) == 0 && 81 match.start_ == start_; 84 void PhoneNumberMatch::CopyFrom(const PhoneNumberMatch& match) { 85 raw_string_ = match.raw_string(); 86 start_ = match.start(); 87 number_ = match.number();
|
/external/linux-tools-perf/scripts/perl/bin/ |
failed-syscalls-report | 5 if ! expr match "$1" "-" > /dev/null ; then
|
/external/linux-tools-perf/scripts/python/bin/ |
syscall-counts-report | 5 if ! expr match "$1" "-" > /dev/null ; then
|
/cts/tests/tests/content/src/android/content/cts/ |
UriMatcherTest.java | 58 assertEquals(sCode1, mUriMatcher.match(uri1)); 59 assertEquals(sCode2, mUriMatcher.match(uri2)); 60 assertEquals(sCode3, mUriMatcher.match(uri3)); 61 assertEquals(sCode4, mUriMatcher.match(uri4)); 65 assertEquals(-1, mUriMatcher.match(unknown)); 70 mUriMatcher.match(null); 78 assertEquals(-1, mUriMatcher.match(uri1)); 79 assertEquals(-1, mUriMatcher.match(uri2)); 80 assertEquals(-1, mUriMatcher.match(uri3)); 81 assertEquals(-1, mUriMatcher.match(uri4)) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/ |
deps.py | 48 match = pattern.match(line) 49 if match: 50 return int(match.group("value")) 57 if pattern.match(line):
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
DateParser.java | 62 lexer.match(','); 63 lexer.match(' '); 65 lexer.match(' '); 67 lexer.match(' '); 71 this.lexer.match('\n');
|
AcceptParser.java | 78 this.lexer.match(TokenTypes.ID); 81 this.lexer.match('/'); 82 this.lexer.match(TokenTypes.ID); 91 this.lexer.match(','); 96 this.lexer.match(TokenTypes.ID); 99 this.lexer.match('/'); 100 this.lexer.match(TokenTypes.ID);
|
InReplyToParser.java | 78 this.lexer.match(TokenTypes.ID); 81 this.lexer.match('@'); 82 this.lexer.match(TokenTypes.ID); 95 this.lexer.match(','); 100 this.lexer.match(TokenTypes.ID); 103 this.lexer.match('@'); 104 this.lexer.match(TokenTypes.ID);
|
/external/robolectric/ |
update-downloads.rb | 19 match = /robolectric-?([0-9]\.[0-9](\.[0-9])?)?(-all)?(-src)?\.jar/.match(f) 20 version = match[1] if match 22 prerelease = /\.rc/.match(f)
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
vlc_encode_inline.h | 26 UInt end, match; local 31 match = 1 << 31; 37 while (match >= end) 39 if ((match&bitmapzz[0]) == 0) 43 match >>= 1; 47 match >>= 1; 72 match = 1 << 31; 74 while (match >= end) 76 if ((match&bitmapzz[1]) == 0) 80 match >>= 1 117 UInt end, match; local 125 ldr match, [bitmapzz] local 137 bic match, match, end \/* remove it from bitmap *\/ local 168 ldr match, [bitmapzz, #4] local 178 bic match, match, end \/* remove it from bitmap *\/ local 231 UInt end = 0, match; local [all...] |
/external/qemu/ |
acl.c | 82 if (fnmatch(entry->match, party, 0) == 0) 87 if (strcmp(entry->match, party) == 0) 106 free(entry->match); 115 const char *match) 120 entry->match = qemu_strdup(match); 132 const char *match, 142 return qemu_acl_append(acl, deny, match); 146 entry->match = qemu_strdup(match); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
sgmllib.py | 125 match = interesting.search(rawdata, i) 126 if match: j = match.start() 133 if starttagopen.match(rawdata, i): 183 match = charref.match(rawdata, i) 184 if match: 185 name = match.group(1) 187 i = match.end(0) 190 match = entityref.match(rawdata, i [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
sgmllib.py | 125 match = interesting.search(rawdata, i) 126 if match: j = match.start() 133 if starttagopen.match(rawdata, i): 183 match = charref.match(rawdata, i) 184 if match: 185 name = match.group(1) 187 i = match.end(0) 190 match = entityref.match(rawdata, i [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLPreloadScanner.cpp | 45 static bool match(const StringImpl* impl, const QualifiedName& qName) function in namespace:WebCore 50 static bool match(const AtomicString& name, const QualifiedName& qName) function in namespace:WebCore 56 static bool match(const String& name, const QualifiedName& qName) function in namespace:WebCore 81 if (match(tagImpl, imgTag)) 83 if (match(tagImpl, inputTag)) 85 if (match(tagImpl, linkTag)) 87 if (match(tagImpl, scriptTag)) 104 if (!match(m_tagImpl, imgTag) 105 && !match(m_tagImpl, inputTag) 106 && !match(m_tagImpl, linkTag [all...] |
/external/chromium_org/chrome/browser/autocomplete/ |
autocomplete_match.cc | 70 AutocompleteMatch::AutocompleteMatch(const AutocompleteMatch& match) 71 : provider(match.provider), 72 relevance(match.relevance), 73 typed_count(match.typed_count), 74 deletable(match.deletable), 75 fill_into_edit(match.fill_into_edit), 76 inline_autocompletion(match.inline_autocompletion), 77 allowed_to_be_default_match(match.allowed_to_be_default_match), 78 destination_url(match.destination_url), 79 stripped_destination_url(match.stripped_destination_url) [all...] |
/external/llvm/unittests/Support/ |
RegexTest.cpp | 23 EXPECT_TRUE(r1.match("916")); 24 EXPECT_TRUE(r1.match("9")); 25 EXPECT_FALSE(r1.match("9a")); 29 EXPECT_TRUE(r2.match("aa216b", &Matches)); 34 EXPECT_TRUE(r3.match("9a:513b", &Matches)); 40 EXPECT_TRUE(r3.match("9:513b", &Matches)); 49 EXPECT_FALSE(r4.match("abb")); 50 EXPECT_TRUE(r4.match(String, &Matches)); 58 EXPECT_FALSE(r5.match(String)); 59 EXPECT_FALSE(r5.match("X9")) [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
csrmbcs.h | 50 * Test the match of this charset with the input text data 57 * bits 0-7: the match confidence, ranging from 0-100 59 * bits 8-15: The match reason, an enum-like value. 74 int32_t match(InputText* det) = 0; 103 int32_t match(InputText *det); 125 int32_t match(InputText* det) = 0; 147 int32_t match(InputText *det); 162 int32_t match(InputText *det); 180 int32_t match(InputText *det); 199 int32_t match(InputText *det) [all...] |
csrsbcs.h | 61 virtual int32_t match(InputText *det) = 0; 129 int32_t match(InputText *textIn); 139 int32_t match(InputText *textIn); 149 int32_t match(InputText *textIn); 159 int32_t match(InputText *textIn); 169 int32_t match(InputText *textIn); 179 int32_t match(InputText *textIn); 189 int32_t match(InputText *textIn); 199 int32_t match(InputText *textIn); 209 int32_t match(InputText *textIn) [all...] |
/external/icu4c/samples/csdet/ |
csdet.c | 29 int32_t inputLength, match, matchCount = 0; local 56 for(match = 0; match < matchCount; match += 1) { 57 const char *name = ucsdet_getName(csm[match], &status); 58 const char *lang = ucsdet_getLanguage(csm[match], &status); 59 int32_t confidence = ucsdet_getConfidence(csm[match], &status);
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
bug-regex7.c | 39 int match, n; local 53 match = re_search (®ex, "baobab", 6, 0, 6, ®s); 55 if (match != 1) 57 printf ("re_search returned %d, expected 1\n", match); 78 match = re_match (®ex, "apl", 3, 0, ®s); 80 if (match != 1) 82 printf ("re_match returned %d, expected 1\n", match);
|