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/
UndefCapturedBlockVarChecker.cpp 77 const LocationContext *LC = C.getLocationContext();
78 VR = C.getSValBuilder().getRegionManager().getVarRegion(VD, LC);
AnalyzerStatsChecker.cpp 50 const LocationContext *LC = GraphRoot->getLocation().getLocationContext();
52 const Decl *D = LC->getDecl();
70 C = LC->getCFG();
133 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);
IteratorsChecker.cpp 123 const LocationContext *LC) const;
128 const LocationContext *LC) const;
140 const LocationContext *LC) const;
250 const Expr *lexp, const Expr *rexp, const LocationContext *LC) const {
257 SVal sv = state->getSVal(lexp, LC);
270 return handleAssign(state, MR, rexp, LC);
275 const MemRegion *MR, const Expr *rexp, const LocationContext *LC) const {
297 const MemRegion *IMR = state->getRegion(VD, LC);
322 const MemRegion *IMR = state->getRegion(VD, LC);
337 state = handleAssign( state, MR, OCE->getArg(0), LC);
    [all...]
MacOSKeychainAPIChecker.cpp 495 const LocationContext *LC = C.getLocationContext();
496 if (LC->getParent() != 0)
501 SymbolRef sym = state->getSVal(retExpr, LC).getAsLocSymbol();
MallocChecker.cpp     [all...]
RetainCountChecker.cpp 752 const LocationContext *LC);
    [all...]
  /external/clang/test/Parser/
cxx-casting.cpp 59 #define LC <:
61 test1::A LC:B> c; // expected-error {{cannot refer to class template 'A' without a template argument list}} expected-error 2{{}} expected-note{{}}
62 (void)static_cast LC:c>(&x); // expected-error {{expected '<' after 'static_cast'}} expected-error 2{{}} expected-note{{}}
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 138 const LocationContext *LC = Pred->getLocationContext();
141 state = invalidateArguments(state, CallOrObjCMessage(E, state, LC), LC);
CoreEngine.cpp 288 const LocationContext *LC = Pred->getLocationContext();
290 LC->getDecl(),
291 LC->getCFG()->getNumBlockIDs());
325 const LocationContext *LC = Pred->getLocationContext();
328 Counter = BCounterFactory.IncrementCount(Counter, LC->getCurrentStackFrame(),
ExprEngineC.cpp 367 const LocationContext *LC = Pred->getLocationContext();
368 state = state->bindCompoundLiteral(CL, LC, ILV);
371 B.generateNode(CL, Pred, state->BindExpr(CL, LC, state->getLValue(CL, LC)));
373 B.generateNode(CL, Pred, state->BindExpr(CL, LC, ILV));
404 const LocationContext *LC = N->getLocationContext();
425 InitVal = svalBuilder.getConjuredSymbolVal(NULL, InitEx, LC, Ty,
430 evalBind(Dst2, DS, N, state->getLValue(VD, LC), InitVal, true);
434 B.generateNode(DS, N,state->bindDeclWithNoInit(state->getRegion(VD, LC)));
PathDiagnostic.cpp 310 PathDiagnosticLocation::createDeclBegin(const LocationContext *LC,
314 dyn_cast_or_null<CompoundStmt>(LC->getDecl()->getBody()))
324 PathDiagnosticLocation::createDeclEnd(const LocationContext *LC,
326 SourceLocation L = LC->getDecl()->getBodyRBrace();
355 const LocationContext *LC = P.getLocationContext();
357 return PathDiagnosticLocation(PS->getStmt(), SM, LC);
361 return PathDiagnosticLocation(Term, SM, LC);
BugReporter.cpp 192 const LocationContext *LC;
198 R(r), PDC(pdc), NMC(Backmap), LC(r->getErrorNode()->getLocationContext())
210 ParentMap& getParentMap() { return LC->getParentMap(); }
233 return PathDiagnosticLocation(S, getSourceManager(), LC);
305 return PathDiagnosticLocation(S, SMgr, LC);
310 return PathDiagnosticLocation(S, SMgr, LC);
315 return PathDiagnosticLocation(Parent, SMgr, LC);
317 return PathDiagnosticLocation(S, SMgr, LC);
323 return PathDiagnosticLocation(Parent, SMgr, LC);
325 return PathDiagnosticLocation(S, SMgr, LC);
    [all...]
ExprEngine.cpp 239 const LocationContext *LC) {
259 ParentMap &PM = LC->getAnalysisDeclContext()->getParentMap();
279 const LocationContext *LC = EntryNode->getLocationContext();
280 SymbolReaper SymReaper(LC, currentStmt, SymMgr, getStoreManager());
282 if (shouldRemoveDeadBindings(AMgr, S, Pred, LC)) {
286 const StackFrameContext *SFC = LC->getCurrentStackFrame();
    [all...]
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 296 const LocationContext *LC = this;
297 while (LC) {
298 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC))
300 LC = LC->getParent();
307 const LocationContext *LC = this;
308 while (LC) {
309 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC)) {
313 LC = LC->getParent()
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 580 const LocationContext *LC; // Can be null */
583 BlockDataRegion(const BlockTextRegion *bc, const LocationContext *lc,
585 : SubRegion(sreg, BlockDataRegionKind), BC(bc), LC(lc), ReferencedVars(0) {}
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 531 const SCEVConstant *LC = cast<SCEVConstant>(LHS);
535 const APInt &LA = LC->getValue()->getValue();
575 const SCEVNAryExpr *LC = cast<SCEVNAryExpr>(LHS);
579 unsigned LNumOps = LC->getNumOperands(), RNumOps = RC->getNumOperands();
583 long X = compare(LC->getOperand(i), RC->getOperand(i));
591 const SCEVUDivExpr *LC = cast<SCEVUDivExpr>(LHS);
595 long X = compare(LC->getLHS(), RC->getLHS());
598 return compare(LC->getRHS(), RC->getRHS());
604 const SCEVCastExpr *LC = cast<SCEVCastExpr>(LHS);
608 return compare(LC->getOperand(), RC->getOperand())
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp 357 RTLIB::Libcall LC = RTLIB::getFPEXT(Op.getValueType(), N->getValueType(0));
358 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
359 return MakeLibCall(LC, NVT, &Op, 1, false, N->getDebugLoc());
374 RTLIB::Libcall LC = RTLIB::getFPROUND(Op.getValueType(), N->getValueType(0));
375 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
376 return MakeLibCall(LC, NVT, &Op, 1, false, N->getDebugLoc());
549 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
551 t <= MVT::LAST_INTEGER_VALUETYPE && LC == RTLIB::UNKNOWN_LIBCALL; ++t) {
555 LC = Signed ? RTLIB::getSINTTOFP(NVT, RVT):RTLIB::getUINTTOFP (NVT, RVT);
557 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported XINT_TO_FP!")
    [all...]
LegalizeIntegerTypes.cpp     [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.cpp 56 ExpandLibCall(RTLIB::Libcall LC, SDValue Op, SelectionDAG &DAG,
74 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
82 0, TLI.getLibcallCallingConv(LC),
    [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...]

Completed in 2028 milliseconds

1 2