HomeSort by relevance Sort by last modified time
    Searched defs:LC (Results 1 - 25 of 26) 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 57 const LocationContext *LC = N->getLocationContext();
61 SVal AssertionVal = State->getSVal(Assertion, LC);
86 const LocationContext *LC = N->getLocationContext();
90 if (LC->getCurrentStackFrame()->getParent() != 0)
103 const LocationContext *LC = N->getLocationContext();
110 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 409 const LocationContext *LC = Pred->getLocationContext();
410 state = state->bindCompoundLiteral(CL, LC, ILV);
421 B.generateNode(CL, Pred, state->BindExpr(CL, LC, state->getLValue(CL, LC)));
423 B.generateNode(CL, Pred, state->BindExpr(CL, LC, ILV));
460 const LocationContext *LC = N->getLocationContext();
472 SVal InitVal = state->getSVal(InitEx, LC);
498 InitVal = svalBuilder.conjureSymbolVal(0, InitEx, LC, Ty,
505 evalBind(Dst2, DS, UpdatedN, state->getLValue(VD, LC), InitVal, true);
    [all...]
PathDiagnostic.cpp 559 PathDiagnosticLocation::createDeclBegin(const LocationContext *LC,
563 dyn_cast_or_null<CompoundStmt>(LC->getDecl()->getBody()))
573 PathDiagnosticLocation::createDeclEnd(const LocationContext *LC,
575 SourceLocation L = LC->getDecl()->getBodyRBrace();
632 const LocationContext *LC = NI->getLocationContext();
634 return PathDiagnosticLocation(S, SM, LC);
635 return PathDiagnosticLocation(getValidSourceLocation(S, LC), SM);
    [all...]
BugReporter.cpp 318 const LocationContext *LC;
324 R(r), PDC(pdc), NMC(Backmap), LC(r->getErrorNode()->getLocationContext())
336 ParentMap& getParentMap() { return LC->getParentMap(); }
359 return PathDiagnosticLocation(S, getSourceManager(), LC);
431 return PathDiagnosticLocation(S, SMgr, LC);
436 return PathDiagnosticLocation(S, SMgr, LC);
441 return PathDiagnosticLocation(Parent, SMgr, LC);
443 return PathDiagnosticLocation(S, SMgr, LC);
449 return PathDiagnosticLocation(Parent, SMgr, LC);
451 return PathDiagnosticLocation(S, SMgr, LC);
    [all...]
ExprEngine.cpp 170 const LocationContext *LC,
173 SVal V = State->getSVal(Ex, LC);
199 SVal Reg = loc::MemRegionVal(MRMgr.getCXXTempObjectRegion(Inner, LC));
209 State = State->BindExpr(Result ? Result : Ex, LC, Reg);
272 const LocationContext *LC) {
292 ParentMap &PM = LC->getAnalysisDeclContext()->getParentMap();
298 const LocationContext *LC,
304 assert(LC && "Must pass the current (or expiring) LocationContext");
314 // LC is the location context being destroyed, but SymbolReaper wants a
320 LC = LC->getParent()
    [all...]
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 362 const LocationContext *LC = this;
363 while (LC) {
364 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC))
366 LC = LC->getParent();
375 bool LocationContext::isParentOf(const LocationContext *LC) const {
377 const LocationContext *Parent = LC->getParent();
381 LC = Parent;
382 } while (LC);
516 LocationContext *LC = &*I
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 183 const LocationContext *LC;
185 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
194 LC->getCurrentStackFrame(),
MemRegion.h 622 const LocationContext *LC; // Can be null */
626 BlockDataRegion(const BlockTextRegion *bc, const LocationContext *lc,
628 : 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, N->getDebugLoc());
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, N->getDebugLoc());
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();
591 long X = compare(LC->getOperand(i), RC->getOperand(i));
599 const SCEVUDivExpr *LC = cast<SCEVUDivExpr>(LHS);
603 long X = compare(LC->getLHS(), RC->getLHS());
606 return compare(LC->getRHS(), RC->getRHS());
612 const SCEVCastExpr *LC = cast<SCEVCastExpr>(LHS);
616 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...]
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 

Completed in 1655 milliseconds

1 2