/external/chromium_org/v8/tools/ |
gen-postmortem-metadata.py | 219 match = re.match('class (\w[^\s:]*)(: public (\w[^\s{]*))?\s*{', 222 if (match): 223 klass = match.group(1); 224 pklass = match.group(3);
|
ll_prof.py | 337 match = SnapshotLogReader._SNAPSHOT_CODE_NAME_RE.match(line) 338 if match: 339 pos = int(match.group(1)) 340 name = match.group(2) 718 if OBJDUMP_SKIP_RE.match(mmap_info.filename): 720 if PERF_KERNEL_ALLSYMS_RE.match(mmap_info.filename): 754 match = OBJDUMP_SECTION_HEADER_RE.match(line) 755 if match [all...] |
/external/doclava/res/assets/templates/assets/ |
search_autocomplete.js | 22 function set_row_values(toroot, row, match) 25 link.innerHTML = match.__hilabel || match.label; 26 link.href = toroot + match.link 27 // row.cells[1].innerHTML = match.type; 191 var queryAlnum = (queryLower.match(/\w+/) || [''])[0]; 198 // match (i.e. favoring classes and deep package names) 204 // exact part match 210 // part prefix match 237 var queryAlnumDot = (queryLower.match(/[\w\.]+/) || [''])[0] [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineAndOrXor.cpp | 551 if (match(L1, m_And(m_Value(L11), m_Value(L12)))) { 552 if (!match(L2, m_And(m_Value(L21), m_Value(L22)))) 555 if (!match(L2, m_And(m_Value(L11), m_Value(L12)))) 579 } else if (match(R1, m_And(m_Value(R11), m_Value(R12)))) { 592 if (!ok && match(R2, m_And(m_Value(R11), m_Value(R12)))) { 753 if (match(Val2, m_Trunc(m_Value(V))) && 754 match(Val, m_And(m_Specific(V), m_ConstantInt(AndCst)))) { 757 } else if (match(Val, m_Trunc(m_Value(V))) && 758 match(Val2, m_And(m_Specific(V), m_ConstantInt(AndCst)))) { [all...] |
InstCombineMulDivRem.cpp | 37 if (match(V, m_LShr(m_OneUse(m_Shl(m_Value(PowerOf2), m_Value(A))), 109 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2()) 127 if (match(Op1, m_AllOnes())) // X * -1 == 0 - X 135 if (match(&I, m_Mul(m_Shl(m_Value(NewOp), m_Constant(C2)), 137 match(C1, m_APInt(IVal))) 141 if (match(&I, m_Mul(m_Value(NewOp), m_Constant(C1)))) { 143 if (match(C1, m_APInt(IVal)) && IVal->isPowerOf2()) 164 match(Op0, m_Add(m_Value(X), m_ConstantInt(C1)))) { 181 if (match(Op0, m_Sub(m_Value(Y), m_Value(X)))) 183 else if (match(Op0, m_Add(m_Value(Y), m_ConstantInt(C1))) [all...] |
/external/markdown/markdown/extensions/ |
footnotes.py | 197 m = DEF_RE.match(line) 219 match = TABBED_RE.match(line) 220 if match: 221 return match.group(4)
|
/external/skia/src/animator/ |
SkDisplayEvent.cpp | 60 bool SkDisplayEvent::contains(SkDisplayable* match) { 62 if (fChildren[index] == match || fChildren[index]->contains(match)) 68 SkDisplayable* SkDisplayEvent::contains(const SkString& match) { 71 if (child->contains(match))
|
/external/v8/src/ |
hashmap.h | 45 TemplateHashMapImpl(MatchFun match, uint32_t initial_capacity = 8); 105 TemplateHashMapImpl<P>::TemplateHashMapImpl(MatchFun match, 107 match_ = match; 328 typename TemplateHashMapImpl<AllocationPolicy>::MatchFun match) 329 : TemplateHashMapImpl<AllocationPolicy>(match) { }
|
/external/v8/tools/ |
gen-postmortem-metadata.py | 209 match = re.match('class (\w[^\s:]*)(: public (\w[^\s{]*))?\s*{', 212 if (match): 213 klass = match.group(1); 214 pklass = match.group(3);
|
/frameworks/support/v4/java/android/support/v4/content/ |
LocalBroadcastManager.java | 126 * Register a receive for any local broadcasts that match the given IntentFilter. 231 int match = receiver.filter.match(action, type, scheme, data, local 233 if (match >= 0) { 234 if (debug) Log.v(TAG, " Filter matched! match=0x" + 235 Integer.toHexString(match)); 244 switch (match) { 251 Log.v(TAG, " Filter did not match: " + reason);
|
/packages/apps/UnifiedEmail/src/com/android/mail/photomanager/ |
ContactPhotoManager.java | 179 Long match; local 183 match = mPhotoIdCache.get(emailAddress); 184 if (match != null) { 185 photoIds.add(match); 186 photoIdMap.put(match, emailAddress);
|
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/ |
UserDictionaryProvider.java | 129 switch (sUriMatcher.match(uri)) { 164 switch (sUriMatcher.match(uri)) { 179 if (sUriMatcher.match(uri) != WORDS) { 224 switch (sUriMatcher.match(uri)) { 248 switch (sUriMatcher.match(uri)) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
platform.py | 273 m = _lsb_release_version.match(firstline) 279 m = _release_version.match(firstline) 322 m = _release_filename.match(file) 521 m = _ver_output.match(info) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
platform.py | 273 m = _lsb_release_version.match(firstline) 279 m = _release_version.match(firstline) 322 m = _release_filename.match(file) 521 m = _ver_output.match(info) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidXmlCharacterMatcher.java | 46 public IRegion match(IDocument doc, int offset) { method in class:AndroidXmlCharacterMatcher 51 IRegion match = findOppositeTag(doc, offset); local 52 if (match != null) { 53 return match; 56 return super.match(doc, offset);
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/ |
jquery-1.6.4.js | 53 // Match a standalone tag 103 var match, elem, ret, doc; 131 match = [ null, selector, null ]; 134 match = quickExpr.exec( selector ); 137 // Verify a match, and that no context was specified for #id 138 if ( match && (match[1] || !context) ) { 141 if ( match[1] ) { 159 ret = jQuery.buildFragment( [ match[1] ], [ doc ] ); 167 elem = document.getElementById( match[2] ) [all...] |
/external/chromium/chrome/browser/history/ |
in_memory_url_index.cc | 54 // and the quality of the string match). There is a matching value range for 101 int AccumulateMatchLength(int total, const TermMatch& match) { 102 return total + match.length; 365 // substring match, inserting those which pass in order by score. 449 // a final substring match in order to get the highlighting ranges later 705 ScoredHistoryMatch match(row); 708 return match; 715 match.prefix_adjust = strlen(chrome::kHttpScheme) + 3; // Allow for '://'. 716 url = url.substr(match.prefix_adjust); 727 return match; // A term was not found in either URL or title - reject [all...] |
/external/chromium_org/third_party/gtk+/gtk/ |
compose-parse.py | 13 from re import findall, match, split, sub namespace 259 if line == "" or not match('^#define GDK_KEY_', line): 267 if not match('^GDK_KEY_', components[1]): 272 if match('^0x[0-9a-fA-F]+$', components[2]): 326 if line == "" or match('^#', line): 334 if match('^U[0-9a-fA-F]+$', components[1]): 394 elif keysym[0] == 'U' and match('[0-9a-fA-F]+$', keysym[1:]): 396 elif keysym[:2] == '0x' and match('[0-9a-fA-F]+$', keysym[2:]): 411 elif keysym[0] == 'U' and match('[0-9a-fA-F]+$', keysym[1:]): 413 elif keysym[:2] == '0x' and match('[0-9a-fA-F]+$', keysym[2:]) [all...] |
/frameworks/base/core/java/android/content/ |
IntentFilter.java | 40 * match against actions, categories, and data (either via its type, scheme, 58 * only match intents that contain no data. 63 * specified must match the contents of the Intent. If you specify a scheme 65 * match; a content: URI will never match because they always have a MIME type 67 * has somewhat special meaning: it will match either an Intent with no URI 69 * then only an Intent with no data or type will match. To specify an authority, 82 * <p>A match is based on the following rules. Note that 83 * for an IntentFilter to match an Intent, three conditions must hold: 84 * the <strong>action</strong> and <strong>category</strong> must match, an 694 public int match(Uri data) { method in class:IntentFilter.AuthorityEntry 969 int match = ae.match(data); local 1019 int match = MATCH_CATEGORY_EMPTY; local 1196 public final int match(ContentResolver resolver, Intent intent, method in class:IntentFilter 1231 public final int match(String action, String type, String scheme, method in class:IntentFilter [all...] |
/device/asus/flo/camera/QCamera2/util/ |
QCameraQueue.cpp | 259 * @match : matching function 263 void QCameraQueue::flushNodes(match_fn match){ 268 if ( NULL == match ) { 279 if ( match(node->data, m_userData) ) {
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
AttributeCertificateIssuer.java | 141 public boolean match(Certificate cert) method in class:AttributeCertificateIssuer 199 public boolean match(Object obj) method in class:AttributeCertificateIssuer 206 return match((Certificate)obj);
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/ |
chrome_ex_oauthsimple.js | 176 if (action.match('[^A-Z]')) { 226 if (method.toUpperCase().match(/(PLAINTEXT|HMAC-SHA1)/) === undefined) { 287 if (!pName.match(/^oauth/)) { 418 if (paramName.match(/\w+_secret/)) {
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/ |
chrome_ex_oauthsimple.js | 176 if (action.match('[^A-Z]')) { 226 if (method.toUpperCase().match(/(PLAINTEXT|HMAC-SHA1)/) === undefined) { 287 if (!pName.match(/^oauth/)) { 418 if (paramName.match(/\w+_secret/)) {
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/wave/ |
chrome_ex_oauthsimple.js | 176 if (action.match('[^A-Z]')) { 226 if (method.toUpperCase().match(/(PLAINTEXT|HMAC-SHA1)/) === undefined) { 287 if (!pName.match(/^oauth/)) { 418 if (paramName.match(/\w+_secret/)) {
|
/external/chromium/testing/gtest/scripts/ |
fuse_gtest_files.py | 163 m = INCLUDE_GTEST_FILE_REGEX.match(line) 191 m = INCLUDE_GTEST_FILE_REGEX.match(line) 208 m = INCLUDE_SRC_FILE_REGEX.match(line)
|