Home
last modified time | relevance | path

Searched refs:IsIgnored (Results 1 – 14 of 14) sorted by relevance

/external/yapf/yapf/yapflib/
Dfile_resources.py122 if filename != '.' and exclude and IsIgnored(filename, exclude):
129 if dirpath != '.' and exclude and IsIgnored(dirpath, exclude):
136 if exclude and IsIgnored(filepath, exclude):
149 def IsIgnored(path, exclude): function
/external/yapf/yapftests/
Dfile_resources_test.py298 self.assertTrue(file_resources.IsIgnored('media', ['media']))
299 self.assertFalse(file_resources.IsIgnored('media', ['media/*']))
302 self.assertTrue(file_resources.IsIgnored('media/a', ['*/a']))
303 self.assertTrue(file_resources.IsIgnored('media/b', ['media/*']))
304 self.assertTrue(file_resources.IsIgnored('media/b/c', ['*/*/c']))
307 self.assertTrue(file_resources.IsIgnored('z', ['z']))
308 self.assertTrue(file_resources.IsIgnored('z', ['z/']))
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_libignore.h41 bool IsIgnored(uptr pc) const;
72 inline bool LibIgnore::IsIgnored(uptr pc) const { in IsIgnored() function
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_libignore.h46 bool IsIgnored(uptr pc, bool *pc_in_ignored_lib) const;
90 inline bool LibIgnore::IsIgnored(uptr pc, bool *pc_in_ignored_lib) const { in IsIgnored() function
/external/llvm-project/compiler-rt/lib/tsan/rtl/
Dtsan_external.cpp67 if (!caller_pc || !libignore()->IsIgnored(caller_pc, &in_ignored_lib)) { in ExternalAccess()
Dtsan_interceptors_posix.cpp261 libignore()->IsIgnored(pc, &in_ignored_lib_)); in ScopedInterceptor()
/external/protobuf/src/google/protobuf/util/
Dmessage_differencer.h328 virtual bool IsIgnored(
808 bool IsIgnored(const Message& message1, const Message& message2,
Dmessage_differencer.cc220 message_differencer_->IsIgnored(message1, message2, key, parent_fields); in IsMatch()
729 if (IsIgnored(message1, message2, field1, *parent_fields)) { in CompareWithFieldsInternal()
771 if (IsIgnored(message1, message2, field2, *parent_fields)) { in CompareWithFieldsInternal()
815 if (IsIgnored(message1, message2, field1, *parent_fields)) { in CompareWithFieldsInternal()
1156 bool MessageDifferencer::IsIgnored( in IsIgnored() function in google::protobuf::util::MessageDifferencer
1164 if (ignore_criteria_[i]->IsIgnored(message1, message2, field, in IsIgnored()
Dmessage_differencer_unittest.cc1767 virtual bool IsIgnored( in IsIgnored() function in google::protobuf::__anoneeafde5c0111::TestIgnorer
/external/clang/lib/Sema/
DSemaOpenMP.cpp8318 bool IsIgnored; member in __anon756b9f4d1e11::DiagsUninitializedSeveretyRAII
8322 bool IsIgnored) in DiagsUninitializedSeveretyRAII() argument
8323 : Diags(Diags), SavedLoc(Loc), IsIgnored(IsIgnored) { in DiagsUninitializedSeveretyRAII()
8324 if (!IsIgnored) { in DiagsUninitializedSeveretyRAII()
8330 if (!IsIgnored) in ~DiagsUninitializedSeveretyRAII()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_interceptors.cc266 if (!thr_->in_ignored_lib && libignore()->IsIgnored(pc)) { in ScopedInterceptor()
/external/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp13998 bool IsIgnored = false; member in __anon0bb9e2bb3d11::DiagsUninitializedSeveretyRAII
14002 bool IsIgnored) in DiagsUninitializedSeveretyRAII() argument
14003 : Diags(Diags), SavedLoc(Loc), IsIgnored(IsIgnored) { in DiagsUninitializedSeveretyRAII()
14004 if (!IsIgnored) { in DiagsUninitializedSeveretyRAII()
14010 if (!IsIgnored) in ~DiagsUninitializedSeveretyRAII()
DSemaDecl.cpp15195 auto IsIgnored = [&](const TagDecl *Tag) { in isAcceptableTagRedeclaration() local
15198 while (IsIgnored(Previous)) { in isAcceptableTagRedeclaration()
15233 if (IsIgnored(I)) in isAcceptableTagRedeclaration()
15255 if (PrevDef && IsIgnored(PrevDef)) in isAcceptableTagRedeclaration()
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp8509 …inline bool IsIgnored(uint32_t queue_family) const { return queue_family == VK_QUEUE_FAMILY_IGNORE… in IsIgnored() function in barrier_queue_families::ValidatorState
8554 const bool src_ignored = val.IsIgnored(src_queue_family); in Validate()
8555 const bool dst_ignored = val.IsIgnored(dst_queue_family); in Validate()