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

1 2

  /external/clang/test/CodeGenCXX/
mangle-extern-local.cpp 29 struct LC { int localfunc() { extern int var4; return var4; } };
30 LC localobj;
  /external/clang/examples/analyzer-plugin/
MainCallChecker.cpp 20 const LocationContext *LC = C.getLocationContext();
22 const FunctionDecl *FD = state->getSVal(Callee, LC).getAsFunctionDecl();
  /external/clang/lib/StaticAnalyzer/Checkers/
ExprInspectionChecker.cpp 59 const LocationContext *LC = N->getLocationContext();
63 SVal AssertionVal = State->getSVal(Assertion, LC);
88 const LocationContext *LC = N->getLocationContext();
92 if (LC->getCurrentStackFrame()->getParent() != 0)
105 const LocationContext *LC = N->getLocationContext();
112 if (LC->getCurrentStackFrame()->getParent() == 0)
AnalyzerStatsChecker.cpp 50 const LocationContext *LC = GraphRoot->getLocation().getLocationContext();
52 const Decl *D = LC->getDecl();
70 C = LC->getCFG();
133 PathDiagnosticLocation::createBegin(CS->getStmt(), SM, LC));
UnreachableCodeChecker.cpp 64 const LocationContext *LC = 0;
69 LC = P.getLocationContext();
72 D = LC->getAnalysisDeclContext()->getDecl();
75 C = LC->getAnalysisDeclContext()->getUnoptimizedCFG();
77 PM = &LC->getParentMap();
152 DL = PathDiagnosticLocation::createBegin(S, B.getSourceManager(), LC);
VLASizeChecker.cpp 145 const LocationContext *LC = C.getLocationContext();
147 state->getRegion(VD, LC)->getExtent(svalBuilder);
MallocChecker.cpp     [all...]
RetainCountChecker.cpp     [all...]
  /external/clang/test/Parser/
cxx-casting.cpp 59 #define LC <:
61 test1::A LC:B> c; // expected-error {{class template 'test1::A' requires template arguments}} expected-error 2{{}}
62 (void)static_cast LC:c>(&x); // expected-error {{expected '<' after 'static_cast'}} expected-error 2{{}} expected-note{{}}
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 289 const LocationContext *LC = Pred->getLocationContext();
291 LC->getDecl(),
292 LC->getCFG()->getNumBlockIDs());
326 const LocationContext *LC = Pred->getLocationContext();
329 Counter = BCounterFactory.IncrementCount(Counter, LC->getCurrentStackFrame(),
ExprEngineC.cpp 454 const LocationContext *LC = N->getLocationContext();
461 SVal InitVal = state->getSVal(InitEx, LC);
487 InitVal = svalBuilder.conjureSymbolVal(0, InitEx, LC, Ty,
494 evalBind(Dst2, DS, UpdatedN, state->getLValue(VD, LC), InitVal, true);
    [all...]
PathDiagnostic.cpp 630 PathDiagnosticLocation::createDeclBegin(const LocationContext *LC,
634 dyn_cast_or_null<CompoundStmt>(LC->getDecl()->getBody()))
644 PathDiagnosticLocation::createDeclEnd(const LocationContext *LC,
646 SourceLocation L = LC->getDecl()->getBodyRBrace();
736 const LocationContext *LC = N->getLocationContext();
747 return PathDiagnosticLocation::createEnd(S, SM, LC);
750 return PathDiagnosticLocation(S, SM, LC);
751 return PathDiagnosticLocation(getValidSourceLocation(S, LC), SM);
    [all...]
ExprEngine.cpp 172 const LocationContext *LC,
175 SVal V = State->getSVal(Ex, LC);
222 TR = MRMgr.getCXXTempObjectRegion(Inner, LC);
227 V = getSValBuilder().conjureSymbolVal(Result, LC, TR->getValueType(),
238 State = State->BindExpr(Result, LC, Reg);
301 const LocationContext *LC) {
321 ParentMap &PM = LC->getAnalysisDeclContext()->getParentMap();
327 const LocationContext *LC,
333 assert(LC && "Must pass the current (or expiring) LocationContext");
343 // LC is the location context being destroyed, but SymbolReaper wants
    [all...]
BugReporter.cpp 289 const LocationContext *LC;
295 R(r), PDC(pdc), NMC(Backmap), LC(r->getErrorNode()->getLocationContext())
307 ParentMap& getParentMap() { return LC->getParentMap(); }
330 return PathDiagnosticLocation(S, getSourceManager(), LC);
391 const LocationContext *LC, bool allowNestedContexts) {
400 return PathDiagnosticLocation(allowNestedContexts ? B : S, SMgr, LC);
405 return PathDiagnosticLocation(S, SMgr, LC);
410 return PathDiagnosticLocation(Parent, SMgr, LC);
412 return PathDiagnosticLocation(S, SMgr, LC);
419 return PathDiagnosticLocation(Parent, SMgr, LC);
    [all...]
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 388 const LocationContext *LC = this;
389 while (LC) {
390 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC))
392 LC = LC->getParent();
401 bool LocationContext::isParentOf(const LocationContext *LC) const {
403 const LocationContext *Parent = LC->getParent();
407 LC = Parent;
408 } while (LC);
571 LocationContext *LC = &*I
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 187 const LocationContext *LC;
189 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
198 LC->getCurrentStackFrame(),
MemRegion.h 637 const LocationContext *LC; // Can be null */
641 BlockDataRegion(const BlockTextRegion *bc, const LocationContext *lc,
643 : TypedRegion(sreg, BlockDataRegionKind), BC(bc), LC(lc),
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp 373 RTLIB::Libcall LC = RTLIB::getFPEXT(Op.getValueType(), N->getValueType(0));
374 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
375 return TLI.makeLibCall(DAG, LC, NVT, &Op, 1, false, SDLoc(N));
390 RTLIB::Libcall LC = RTLIB::getFPROUND(Op.getValueType(), N->getValueType(0));
391 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
392 return TLI.makeLibCall(DAG, LC, NVT, &Op, 1, false, SDLoc(N));
573 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
575 t <= MVT::LAST_INTEGER_VALUETYPE && LC == RTLIB::UNKNOWN_LIBCALL; ++t) {
579 LC = Signed ? RTLIB::getSINTTOFP(NVT, RVT):RTLIB::getUINTTOFP (NVT, RVT);
581 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported XINT_TO_FP!")
    [all...]
LegalizeIntegerTypes.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 539 const SCEVConstant *LC = cast<SCEVConstant>(LHS);
543 const APInt &LA = LC->getValue()->getValue();
583 const SCEVNAryExpr *LC = cast<SCEVNAryExpr>(LHS);
587 unsigned LNumOps = LC->getNumOperands(), RNumOps = RC->getNumOperands();
594 long X = compare(LC->getOperand(i), RC->getOperand(i));
602 const SCEVUDivExpr *LC = cast<SCEVUDivExpr>(LHS);
606 long X = compare(LC->getLHS(), RC->getLHS());
609 return compare(LC->getRHS(), RC->getRHS());
615 const SCEVCastExpr *LC = cast<SCEVCastExpr>(LHS);
619 return compare(LC->getOperand(), RC->getOperand())
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
ArraysTest.java     [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ArraysTest.java     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 

Completed in 669 milliseconds

1 2