Home
last modified time | relevance | path

Searched refs:match (Results 1 – 8 of 8) sorted by relevance

/art/tools/
Dcpplint.py416 return _regexp_compile_cache[pattern].match(s)
1028 if not _RE_PATTERN_INCLUDE.match(elided):
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:
1885 fncall = match.group(1) # look inside the parens for function calls
2031 match = _RE_PATTERN_TODO.match(comment)
2032 if match:
[all …]
/art/test/064-field-access/
Dinfo.txt5 IllegalAccessException, while passing in a data type that doesn't match
/art/compiler/dex/quick/
Dralloc_util.cc1016 bool match = true; in UpdateLoc() local
1018 match &= !reg.IsPair(); in UpdateLoc()
1019 match &= !info->IsWide(); in UpdateLoc()
1020 if (match) { in UpdateLoc()
1041 bool match = true; in UpdateLocWide() local
1046 match &= info_lo->IsWide(); in UpdateLocWide()
1047 match &= info_hi->IsWide(); in UpdateLocWide()
1048 match &= (info_lo->Partner().ExactlyEquals(info_hi->GetReg())); in UpdateLocWide()
1049 match &= (info_hi->Partner().ExactlyEquals(info_lo->GetReg())); in UpdateLocWide()
1052 match &= info->IsWide(); in UpdateLocWide()
[all …]
/art/runtime/mirror/
Dclass-inl.h672 inline bool Class::DescriptorEquals(const char* match) { in DescriptorEquals() argument
674 return match[0] == '[' && GetComponentType()->DescriptorEquals(match + 1); in DescriptorEquals()
676 return strcmp(Primitive::Descriptor(GetPrimitiveType()), match) == 0; in DescriptorEquals()
678 return Runtime::Current()->GetClassLinker()->GetDescriptorForProxy(this) == match; in DescriptorEquals()
682 return strcmp(dex_file.GetTypeDescriptor(type_id), match) == 0; in DescriptorEquals()
Dclass.h986 bool DescriptorEquals(const char* match) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/compiler/dex/
Dfrontend.cc670 bool match = use_match && (cu.compiler_flip_match ^ in CompileMethod() local
672 if (!use_match || match) { in CompileMethod()
Dmir_graph.cc1347 static const struct { const char before; const char after; } match[] = { in ReplaceSpecialChars() local
1351 for (unsigned int i = 0; i < sizeof(match)/sizeof(match[0]); i++) { in ReplaceSpecialChars()
1352 std::replace(str.begin(), str.end(), match[i].before, match[i].after); in ReplaceSpecialChars()
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S422 cbnz r3, .Lslow_unlock @ do lock word and self thread id's match?