Searched refs:Match (Results 1 – 2 of 2) sorted by relevance
/art/tools/ |
D | cpplint.py | 413 def Match(pattern, s): function 738 if Match(r'T(EST|est)', self.current_function): 1484 and not Match(r'};*\s*(//|/\*).*\bnamespace\b', line)): 1501 if not Match((r'};*\s*(//|/\*).*\bnamespace\s+' + re.escape(self.name) + 1509 if not Match(r'};*\s*(//|/\*).*\bnamespace[\*/\.\\\s]*$', line): 1582 if Match(r'^\s*#\s*(if|ifdef|ifndef)\b', line): 1586 elif Match(r'^\s*#\s*(else|elif)\b', line): 1601 elif Match(r'^\s*#\s*endif\b', line): 1662 namespace_decl_match = Match(r'^\s*namespace\b\s*([:\w]+)?(.*)$', line) 1695 class_decl_match = Match( [all …]
|
/art/runtime/quick/ |
D | inline_method_analyser.cc | 46 static bool Match(const DexFile::CodeItem* code_item, MatchFn* const (&pattern)[size]); 80 bool Matcher::Match(const DexFile::CodeItem* code_item, MatchFn* const (&pattern)[size]) { in Match() function in art::__anon8023c6a50111::Matcher 297 !Matcher::Match(code_item, kConstructorPattern)) { in DoAnalyseConstructor()
|