Searched refs:inSection (Results 1 – 6 of 6) sorted by relevance
/external/llvm/unittests/Support/ |
D | SpecialCaseListTest.cpp | 54 EXPECT_TRUE(SCL->inSection("src", "hello")); in TEST_F() 55 EXPECT_TRUE(SCL->inSection("src", "bye")); in TEST_F() 56 EXPECT_TRUE(SCL->inSection("src", "hi", "category")); in TEST_F() 57 EXPECT_TRUE(SCL->inSection("src", "zzzz", "category")); in TEST_F() 58 EXPECT_FALSE(SCL->inSection("src", "hi")); in TEST_F() 59 EXPECT_FALSE(SCL->inSection("fun", "hello")); in TEST_F() 60 EXPECT_FALSE(SCL->inSection("src", "hello", "category")); in TEST_F() 66 EXPECT_FALSE(SCL->inSection("global", "foo")); in TEST_F() 67 EXPECT_FALSE(SCL->inSection("global", "bar")); in TEST_F() 68 EXPECT_TRUE(SCL->inSection("global", "foo", "init")); in TEST_F() [all …]
|
/external/clang/lib/Basic/ |
D | SanitizerBlacklist.cpp | 24 return SCL->inSection("global", GlobalName, Category); in isBlacklistedGlobal() 29 return SCL->inSection("type", MangledTypeName, Category); in isBlacklistedType() 33 return SCL->inSection("fun", FunctionName); in isBlacklistedFunction() 38 return SCL->inSection("src", FileName, Category); in isBlacklistedFile()
|
/external/mesa3d/src/mesa/drivers/dri/common/ |
D | xmlconfig.c | 492 GLboolean inSection; member 626 if (data->inSection) in optInfoStartElem() 630 data->inSection = GL_TRUE; in optInfoStartElem() 633 if (!data->inSection && !data->inOption) in optInfoStartElem() 641 if (!data->inSection) in optInfoStartElem() 672 data->inSection = GL_FALSE; in optInfoEndElem() 720 userData.inSection = GL_FALSE; in driParseOptionInfo()
|
/external/llvm/include/llvm/Support/ |
D | SpecialCaseList.h | 82 bool inSection(StringRef Section, StringRef Query,
|
/external/llvm/lib/Support/ |
D | SpecialCaseList.cpp | 157 bool SpecialCaseList::inSection(StringRef Section, StringRef Query, in inSection() function in llvm::SpecialCaseList
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | DataFlowSanitizer.cpp | 152 SCL->inSection("fun", F.getName(), Category); in isIn() 164 return SCL->inSection("fun", GA.getName(), Category); in isIn() 166 return SCL->inSection("global", GA.getName(), Category) || in isIn() 167 SCL->inSection("type", GetGlobalTypeString(GA), Category); in isIn() 172 return SCL->inSection("src", M.getModuleIdentifier(), Category); in isIn()
|