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 42 EXPECT_TRUE(SCL->inSection("src", "hello"));
43 EXPECT_TRUE(SCL->inSection("src", "bye"));
44 EXPECT_TRUE(SCL->inSection("src", "hi", "category"));
45 EXPECT_TRUE(SCL->inSection("src", "zzzz", "category"));
46 EXPECT_FALSE(SCL->inSection("src", "hi"));
47 EXPECT_FALSE(SCL->inSection("fun", "hello"));
48 EXPECT_FALSE(SCL->inSection("src", "hello", "category"));
54 EXPECT_FALSE(SCL->inSection("global", "foo"));
55 EXPECT_FALSE(SCL->inSection("global", "bar"));
56 EXPECT_TRUE(SCL->inSection("global", "foo", "init"))
    [all...]
  /external/clang/lib/CodeGen/
SanitizerBlacklist.cpp 35 return SCL->inSection("src", M.getModuleIdentifier(), Category);
40 SCL->inSection("fun", F.getName(), "");
46 SCL->inSection("global", G.getName(), Category) ||
47 SCL->inSection("type", GetGlobalTypeString(G), 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 78 bool inSection(const StringRef Section, const StringRef Query,
  /external/chromium_org/third_party/mesa/src/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/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 160 bool SpecialCaseList::inSection(const StringRef Section, const StringRef Query,
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 144 SCL->inSection("fun", F.getName(), Category);
156 return SCL->inSection("fun", GA.getName(), Category);
158 return SCL->inSection("global", GA.getName(), Category) ||
159 SCL->inSection("type", GetGlobalTypeString(GA), Category);
164 return SCL->inSection("src", M.getModuleIdentifier(), Category);
    [all...]

Completed in 1566 milliseconds