Home
last modified time | relevance | path

Searched refs:NoMatch (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/Analysis/
DFormatString.cpp265 return NoMatch; in matchesType()
269 return NoMatch; in matchesType()
295 return NoMatch; in matchesType()
315 : NoMatch; in matchesType()
317 return T == C.UnsignedShortTy ? Match : NoMatch; in matchesType()
319 return T == C.ShortTy ? Match : NoMatch; in matchesType()
321 return T == C.UnsignedIntTy ? Match : NoMatch; in matchesType()
323 return T == C.IntTy ? Match : NoMatch; in matchesType()
325 return T == C.UnsignedLongTy ? Match : NoMatch; in matchesType()
327 return T == C.LongTy ? Match : NoMatch; in matchesType()
[all …]
/external/regex-re2/re2/
Dcompile.cc165 Frag NoMatch();
296 Frag Compiler::NoMatch() { in NoMatch() function in re2::Compiler
308 return NoMatch(); in Cat()
339 return NoMatch(); in Alt()
356 return NoMatch(); in Star()
379 return NoMatch(); in Quest()
395 return NoMatch(); in ByteRange()
414 return NoMatch(); in Nop()
423 return NoMatch(); in Match()
432 return NoMatch(); in EmptyWidth()
[all …]
Dprefilter.cc212 static Info* NoMatch();
429 Prefilter::Info* Prefilter::Info::NoMatch() { in NoMatch() function in re2::Prefilter::Info
543 info = NoMatch(); in PostVisit()
568 info = NoMatch(); in PostVisit()
/external/clang/unittests/AST/
DSourceLocationTest.cpp37 TEST(MatchVerifier, NoMatch) { in TEST() argument
/external/clang/include/clang/Analysis/Analyses/
DFormatString.h236 enum MatchKind { NoMatch = 0, Match = 1, NoMatchPedantic }; enumerator