HomeSort by relevance Sort by last modified time
    Searched refs:inSection (Results 1 - 8 of 8) sorted by null

  /external/llvm/unittests/Support/
SpecialCaseListTest.cpp 54 EXPECT_TRUE(SCL->inSection("src", "hello"));
55 EXPECT_TRUE(SCL->inSection("src", "bye"));
56 EXPECT_TRUE(SCL->inSection("src", "hi", "category"));
57 EXPECT_TRUE(SCL->inSection("src", "zzzz", "category"));
58 EXPECT_FALSE(SCL->inSection("src", "hi"));
59 EXPECT_FALSE(SCL->inSection("fun", "hello"));
60 EXPECT_FALSE(SCL->inSection("src", "hello", "category"));
66 EXPECT_FALSE(SCL->inSection("global", "foo"));
67 EXPECT_FALSE(SCL->inSection("global", "bar"));
68 EXPECT_TRUE(SCL->inSection("global", "foo", "init"))
    [all...]
  /external/clang/lib/Basic/
SanitizerBlacklist.cpp 24 return SCL->inSection("global", GlobalName, Category);
29 return SCL->inSection("type", MangledTypeName, Category);
33 return SCL->inSection("fun", FunctionName);
38 return SCL->inSection("src", FileName, Category);
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportParser.java 26 boolean inSection = false;
32 if (inSection) {
44 inSection = true;
  /external/llvm/include/llvm/Support/
SpecialCaseList.h 82 bool inSection(StringRef Section, StringRef Query,
  /external/mesa3d/src/mesa/drivers/dri/common/
xmlconfig.c 492 GLboolean inSection;
626 if (data->inSection)
630 data->inSection = GL_TRUE;
633 if (!data->inSection && !data->inOption)
641 if (!data->inSection)
672 data->inSection = GL_FALSE;
720 userData.inSection = GL_FALSE;
    [all...]
  /external/llvm/lib/Support/
SpecialCaseList.cpp 157 bool SpecialCaseList::inSection(StringRef Section, StringRef Query,
  /external/llvm/tools/sancov/
sancov.cc 258 if (DefaultBlacklist && DefaultBlacklist->inSection("fun", AI.FunctionName))
260 if (DefaultBlacklist && DefaultBlacklist->inSection("src", AI.FileName))
262 if (UserBlacklist && UserBlacklist->inSection("fun", AI.FunctionName))
264 if (UserBlacklist && UserBlacklist->inSection("src", AI.FileName))
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 158 SCL->inSection("fun", F.getName(), Category);
170 return SCL->inSection("fun", GA.getName(), Category);
172 return SCL->inSection("global", GA.getName(), Category) ||
173 SCL->inSection("type", GetGlobalTypeString(GA), Category);
178 return SCL->inSection("src", M.getModuleIdentifier(), Category);
    [all...]

Completed in 492 milliseconds