HomeSort by relevance Sort by last modified time
    Searched defs:ER (Results 1 - 25 of 29) sorted by null

1 2

  /external/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundChecker.cpp 43 const ElementRegion *ER = dyn_cast<ElementRegion>(R);
44 if (!ER)
48 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>();
59 = C.getStoreManager().getSizeInElements(state, ER->getSuperRegion(),
60 ER->getValueType());
ReturnPointerRangeChecker.cpp 46 const ElementRegion *ER = dyn_cast_or_null<ElementRegion>(R);
47 if (!ER)
50 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>();
59 = C.getStoreManager().getSizeInElements(state, ER->getSuperRegion(),
60 ER->getValueType());
CStringChecker.cpp 288 const ElementRegion *ER = dyn_cast<ElementRegion>(R);
289 if (!ER)
292 assert(ER->getValueType() == C.getASTContext().CharTy &&
296 const SubRegion *superReg = cast<SubRegion>(ER->getSuperRegion());
303 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>();
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPIChecker.cpp 34 const ElementRegion *const ER = dyn_cast<ElementRegion>(MR);
37 if (!isa<TypedRegion>(MR) || (ER && !isa<TypedRegion>(ER->getSuperRegion())))
63 const ElementRegion *const ER = dyn_cast<ElementRegion>(MR);
66 if (!isa<TypedRegion>(MR) || (ER && !isa<TypedRegion>(ER->getSuperRegion())))
154 if (const ElementRegion *const ER = MR->getAs<ElementRegion>()) {
155 SuperRegion = ER->getSuperRegion();
172 const ElementRegion *const ER = RegionManager->getElementRegion(
176 ReqRegions.push_back(ER->getAs<MemRegion>())
    [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 181 ExprResult ER = CheckPlaceholderExpr(Exprs[i]);
182 if (ER.isInvalid())
184 Exprs[i] = ER.get();
262 ExprResult ER = CheckPlaceholderExpr(Exprs[i]);
263 if (ER.isInvalid())
265 Exprs[i] = ER.get();
SemaExprCXX.cpp     [all...]
SemaStmt.cpp     [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVDecorate.h 114 auto ER = BaseType::equal_range(Dec);
115 for (auto I = ER.first, E = ER.second; I != E; ++I) {
SPIRVModule.cpp 398 auto ER = DecorateSet.equal_range(D);
399 SPIRVDBG(spvdbgs() << " equal range " << **ER.first
401 if (ER.second != DecorateSet.end())
402 spvdbgs() << **ER.second;
406 if (std::distance(ER.first, ER.second) < 2) {
407 I = ER.second;
417 for (I = ER.first; I != ER.second; ++I) {
428 DecorateSet.erase(ER.first, ER.second)
    [all...]
  /external/clang/lib/CodeGen/
CGValue.h 86 RValue ER;
87 ER.V1.setPointer(V);
88 ER.V1.setInt(Scalar);
89 ER.V2.setInt(false);
90 return ER;
93 RValue ER;
94 ER.V1.setPointer(V1);
95 ER.V2.setPointer(V2);
96 ER.V1.setInt(Complex);
97 ER.V2.setInt(false)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 643 const ElementRegion *ER = nullptr;
644 while ((ER = R->getAs<ElementRegion>())) {
646 if (auto CI = ER->getIndex().getAs<nonloc::ConcreteInt>()) {
654 std::string Idx = ER->getDescriptiveName(false);
659 R = ER->getSuperRegion();
    [all...]
RegionStore.cpp     [all...]
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 104 IN, SN, SB, TE, I, XE, CS, BA, LA, CE, PR, ND, PM, SM, EU, GD, TB, DY, HO, ER, TM, YB, LU,
  /external/llvm/include/llvm/ProfileData/
InstrProf.h     [all...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp 215 std::string GetReduceResultTypeName(const RSExportReduce *ER) {
216 return GetReduceResultTypeName(ER->getResultType());
698 const RSExportReduce *ER = *I;
700 const RSExportType *RT = ER->getResultType();
707 const RSExportReduce::InTypeVec &InTypes = ER->getAccumulatorInTypes();
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProf.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProf.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProf.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProf.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProf.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProf.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProf.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProf.h     [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]

Completed in 1241 milliseconds

1 2