Searched defs:match (Results 1 - 4 of 4) sorted by relevance

/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.cc1345 static const struct { const char before; const char after; } match[] = { local
1349 for (unsigned int i = 0; i < sizeof(match)/sizeof(match[0]); i++) {
1350 std::replace(str.begin(), str.end(), match[i].before, match[i].after);
2104 // If it is not -1, we found a match, is it ssa_reg?
/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.h651 inline bool Class::DescriptorEquals(const char* match) { argument
653 return match[0] == '[' && GetComponentType()->DescriptorEquals(match + 1);
655 return strcmp(Primitive::Descriptor(GetPrimitiveType()), match) == 0;
657 return Runtime::Current()->GetClassLinker()->GetDescriptorForProxy(this) == match;
661 return strcmp(dex_file.GetTypeDescriptor(type_id), match) == 0;

Completed in 419 milliseconds