HomeSort by relevance Sort by last modified time
    Searched defs:SCL (Results 1 - 3 of 3) sorted by null

  /external/llvm/unittests/Support/
SpecialCaseListTest.cpp 27 SpecialCaseList *SCL = makeSpecialCaseList(List, Error);
28 assert(SCL);
30 return SCL;
35 std::unique_ptr<SpecialCaseList> SCL(
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"))
    [all...]
  /external/clang/lib/CodeGen/
SanitizerBlacklist.h 32 std::unique_ptr<llvm::SpecialCaseList> SCL;
35 SanitizerBlacklist(llvm::SpecialCaseList *SCL) : SCL(SCL) {}
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 135 std::unique_ptr<SpecialCaseList> SCL;
138 DFSanABIList(SpecialCaseList *SCL) : SCL(SCL) {}
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 243 milliseconds