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

  /external/clang/include/clang/Basic/
SanitizerBlacklist.h 27 std::unique_ptr<llvm::SpecialCaseList> SCL;
  /external/llvm/unittests/Support/
SpecialCaseListTest.cpp 29 auto SCL = makeSpecialCaseList(List, Error);
30 assert(SCL);
32 return SCL;
47 std::unique_ptr<SpecialCaseList> SCL =
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"))
    [all...]
  /external/ImageMagick/coders/
wpg.c 683 const unsigned char TPR=1,TRN=2,SKW=4,SCL=8,ROT=0x10,OID=0x20,LCK=0x80;
707 if(Flags & (ROT|SCL))
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 147 std::unique_ptr<SpecialCaseList> SCL;
152 void set(std::unique_ptr<SpecialCaseList> List) { SCL = std::move(List); }
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 113 milliseconds