/external/javassist/src/main/javassist/convert/ |
TransformCall.java | 75 pos = match(c, pos, iterator, 107 protected int match(int c, int pos, CodeIterator iterator, method in class:TransformCall
|
/external/libvpx/libvpx/build/make/ |
version.sh | 30 git_version_id=`git describe --match=v[0-9]* 2>/dev/null`
|
/external/llvm/unittests/IR/ |
PatternMatch.cpp | 35 EXPECT_TRUE(m_OrdFMin(m_Value(MatchL), m_Value(MatchR)).match(Select)); 45 EXPECT_FALSE(m_OrdFMin(m_Value(MatchL), m_Value(MatchR)).match(Select)); 53 EXPECT_TRUE(m_OrdFMax(m_Value(MatchL), m_Value(MatchR)).match(Select)); 63 EXPECT_FALSE(m_OrdFMax(m_Value(MatchL), m_Value(MatchR)).match(Select)); 88 // Test no match on OGE. 93 // Test no match on OGT. 98 // Test match on OGE with inverted select. 103 // Test match on OGT with inverted select. 127 // Test no match on OLE. 132 // Test no match on OLT [all...] |
/external/llvm/utils/ |
findmisopt | 20 # findmisopt bcfile outdir progargs [match] 31 # match 38 echo "usage: findmisopt bcfile outdir progargs [match]" 59 match="$5" 111 if [ -n "$match" ] ; then
|
/external/mesa3d/src/glx/tests/ |
clientinfo_unittest.cpp | 686 char *match = strstr(haystack, needle); local 688 if (match[len] == '\0' || match[len] == ' ') { 693 haystack = match + len; 712 char *match = strstr(haystack, needle); local 714 if (match[len] == '\0' || match[len] == ' ') { 719 haystack = match + len;
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
StatusLine.java | 63 /** Match with a template. 64 * Match only the response class if the last two digits of the 65 * match templates are 0's 68 public boolean match(Object matchObj) { method in class:StatusLine 74 return sl.matchExpression.match(this.encode()); 96 /** set the flag on a match template.
|
/external/qemu/ |
offset_layout.py | 63 m_line = _RE_LINE.match(line) 83 m_xy = _RE_XY.match(line)
|
/external/skia/src/pathops/ |
SkDQuadImplicit.cpp | 92 * OPTIMIZATION -- since comparison short-circuits on no match, 96 bool SkDQuadImplicit::match(const SkDQuadImplicit& p2) const { function in class:SkDQuadImplicit 113 bool SkDQuadImplicit::Match(const SkDQuad& quad1, const SkDQuad& quad2) { 116 return i1.match(i2);
|
/frameworks/base/tools/preload/ |
sorttable.js | 81 if (!headrow[i].className.match(/\bsorttable_nosort\b/)) { // skip this col 82 mtch = headrow[i].className.match(/\bsorttable_([a-z0-9]+)\b/); 172 if (text.match(/^-?[?$?]?[\d,.]+%?$/)) { 178 possdate = text.match(sorttable.DATE_RE) 272 mtch = a[0].match(sorttable.DATE_RE); 277 mtch = b[0].match(sorttable.DATE_RE); 287 mtch = a[0].match(sorttable.DATE_RE); 292 mtch = b[0].match(sorttable.DATE_RE);
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_filter_unittest.py | 193 match = TEST_CASE_REGEX.match(line) 194 if match is not None: 195 test_case = match.group(1) 197 match = TEST_REGEX.match(line) 198 if match is not None: 199 test = match.group(1) 393 """Tests filters that match everything."""
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
CallLogProvider.java | 139 final int match = sURIMatcher.match(uri); local 140 switch (match) { 211 int match = sURIMatcher.match(uri); local 212 switch (match) { 263 final int matchedUriId = sURIMatcher.match(uri); 286 final int matchedUriId = sURIMatcher.match(uri);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_dict.py | 96 self.p1.match(node.parent.parent, results) and 107 return self.p2.match(node.parent, results) and results["node"] is node
|
fix_idioms.py | 79 def match(self, node): member in class:FixIdioms 80 r = super(FixIdioms, self).match(node) 98 raise RuntimeError("Invalid match")
|
fix_xrange.py | 68 self.p1.match(node.parent.parent, results) and 73 return self.p2.match(node.parent, results) and results["node"] is node
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_dict.py | 96 self.p1.match(node.parent.parent, results) and 107 return self.p2.match(node.parent, results) and results["node"] is node
|
fix_idioms.py | 79 def match(self, node): member in class:FixIdioms 80 r = super(FixIdioms, self).match(node) 98 raise RuntimeError("Invalid match")
|
fix_xrange.py | 68 self.p1.match(node.parent.parent, results) and 73 return self.p2.match(node.parent, results) and results["node"] is node
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
wbnf.cpp | 949 UBool match(TokenType expected){ function in class:Parser 962 match(NUMBER); 963 if (match(PERCENT)){ 980 match(QUESTION); 987 match(STAR); 993 match(PLUS); 999 match(LBRACE); 1004 match(NUMBER); 1006 match(RBRACE); 1010 match(COMMA) [all...] |
/external/icu4c/test/intltest/ |
wbnf.cpp | 949 UBool match(TokenType expected){ function in class:Parser 962 match(NUMBER); 963 if (match(PERCENT)){ 980 match(QUESTION); 987 match(STAR); 993 match(PLUS); 999 match(LBRACE); 1004 match(NUMBER); 1006 match(RBRACE); 1010 match(COMMA) [all...] |
/external/chromium_org/chrome/test/base/ |
ui_test_utils.cc | 302 size_t match, exe_size, src_size; 310 for (match = 0; match < exe_size && match < src_size; ++match) { 311 if (exe_parts[match] != src_parts[match]) 317 for (size_t tmp_itr = match; tmp_itr < src_size; ++tmp_itr) 319 for (; match < exe_size; ++match) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
telnetlib.py | 284 def read_until(self, match, timeout=None): 287 When no match is found, return whatever is available instead, 293 return self._read_until_with_poll(match, timeout) 295 return self._read_until_with_select(match, timeout) 297 def _read_until_with_poll(self, match, timeout): 302 n = len(match) 308 i = self.cookedq.find(match) 328 i = self.cookedq.find(match, i) 342 def _read_until_with_select(self, match, timeout=None): 347 n = len(match) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
telnetlib.py | 284 def read_until(self, match, timeout=None): 287 When no match is found, return whatever is available instead, 293 return self._read_until_with_poll(match, timeout) 295 return self._read_until_with_select(match, timeout) 297 def _read_until_with_poll(self, match, timeout): 302 n = len(match) 308 i = self.cookedq.find(match) 328 i = self.cookedq.find(match, i) 342 def _read_until_with_select(self, match, timeout=None): 347 n = len(match) [all...] |
/external/chromium_org/v8/src/ |
regexp.js | 104 // In JSC, it returns undefined. For compatibility with JSC, we match their 112 // the empty string. For compatibility with JSC, we match their 197 // Successful match. 292 // on the captures array of the last successful match and the subject string 293 // of the last successful match. 313 // We match the SpiderMonkey behavior: return the substring defined by the 350 var match = OVERRIDE_MATCH(override); 351 start_index = OVERRIDE_POS(override) + match.length; 358 // successful match, or ''. The function RegExpMakeCaptureGetter will be 379 // regexp match. The property lastMatchInfo includes the matchIndice [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/js/ |
jquery.js | 36 // Match a standalone tag 86 var match, elem, ret, doc; 114 match = [ null, selector, null ]; 117 match = quickExpr.exec( selector ); 120 // Verify a match, and that no context was specified for #id 121 if ( match && (match[1] || !context) ) { 124 if ( match[1] ) { 142 ret = jQuery.buildFragment( [ match[1] ], [ doc ] ); 150 elem = document.getElementById( match[2] ) [all...] |
/bionic/libc/kernel/common/linux/netfilter/ |
x_tables.h | 36 struct xt_match *match; member in struct:xt_entry_match::__anon446::__anon448
|