Searched refs:match (Results 1 - 7 of 7) sorted by relevance

/art/tools/
H A Dcpplint.py302 # match those on a word boundary.
416 return _regexp_compile_cache[pattern].match(s)
929 line = line.replace(r'\\', 'XX') # after this, \\" does not match to \"
1028 if not _RE_PATTERN_INCLUDE.match(elided):
1202 '#ifndef and #define don\'t match, suggested CPP variable is: %s' %
1359 if _RE_PATTERN_INVALID_INCREMENT.match(line):
1616 _MATCH_ASM.match(line)):
1707 if _MATCH_ASM.match(line):
1883 match = Search(pattern, line)
1884 if match
[all...]
/art/compiler/dex/quick/
H A Dralloc_util.cc537 // Either not found, or something didn't match up. Clobber to prevent any stale instances.
1016 bool match = true; local
1018 match &= !reg.IsPair();
1019 match &= !info->IsWide();
1020 if (match) {
1041 bool match = true; local
1046 match &= info_lo->IsWide();
1047 match &= info_hi->IsWide();
1048 match &= (info_lo->Partner().ExactlyEquals(info_hi->GetReg()));
1049 match
[all...]
/art/runtime/mirror/
H A Dclass-inl.h672 inline bool Class::DescriptorEquals(const char* match) { argument
674 return match[0] == '[' && GetComponentType()->DescriptorEquals(match + 1);
676 return strcmp(Primitive::Descriptor(GetPrimitiveType()), match) == 0;
678 return Runtime::Current()->GetClassLinker()->GetDescriptorForProxy(this) == match;
682 return strcmp(dex_file.GetTypeDescriptor(type_id), match) == 0;
H A Dclass.h986 bool DescriptorEquals(const char* match) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/compiler/dex/
H A Dfrontend.cc670 bool match = use_match && (cu.compiler_flip_match ^ local
672 if (!use_match || match) {
H A Dmir_graph.cc1347 static const struct { const char before; const char after; } match[] = { local
1351 for (unsigned int i = 0; i < sizeof(match)/sizeof(match[0]); i++) {
1352 std::replace(str.begin(), str.end(), match[i].before, match[i].after);
2106 // If it is not -1, we found a match, is it ssa_reg?
/art/runtime/arch/arm/
H A Dquick_entrypoints_arm.S392 cbnz r2, .Lslow_lock @ lock word and self thread id's match -> recursive lock
422 cbnz r3, .Lslow_unlock @ do lock word and self thread id's match?
1283 * r1: char to match (known <= 0xFFFF)

Completed in 404 milliseconds