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

  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCAtSyncChecker.cpp 40 const Expr *Ex = S->getSynchExpr();
42 SVal V = state->getSVal(Ex, C.getLocationContext());
52 bugreporter::trackNullOrUndefValue(N, Ex, *report);
75 bugreporter::trackNullOrUndefValue(N, Ex, *report);
UndefBranchChecker.cpp 36 const Expr *FindExpr(const Expr *Ex) {
37 if (!MatchesCriteria(Ex))
40 for (Stmt::const_child_iterator I = Ex->child_begin(),
41 E = Ex->child_end();I!=E;++I)
47 return Ex;
50 bool MatchesCriteria(const Expr *Ex) {
51 return St->getSVal(Ex, LCtx).isUndef();
88 const Expr *Ex = cast<Expr>(Condition);
94 if (PS->getStmt() == Ex)
98 Ex = FindIt.FindExpr(Ex)
    [all...]
UndefResultChecker.cpp 53 const Expr *Ex = NULL;
57 Ex = B->getLHS()->IgnoreParenCasts();
61 Ex = B->getRHS()->IgnoreParenCasts();
65 if (Ex) {
78 if (Ex) {
79 report->addRange(Ex->getSourceRange());
80 bugreporter::trackNullOrUndefValue(N, Ex, *report);
DeadStoresChecker.cpp 104 static const Expr *LookThroughTransitiveAssignments(const Expr *Ex) {
105 while (Ex) {
107 dyn_cast<BinaryOperator>(Ex->IgnoreParenCasts());
111 Ex = BO->getRHS();
116 return Ex;
202 void CheckVarDecl(const VarDecl *VD, const Expr *Ex, const Expr *Val,
217 PathDiagnosticLocation::createBegin(Ex, BR.getSourceManager(), AC);
300 const Expr *Ex = U->getSubExpr()->IgnoreParenCasts();
302 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex))
RetainCountChecker.cpp 963 // an assignment, ex: "self = [super init]".
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 59 bool ExplodedGraph::isInterestingLValueExpr(const Expr *Ex) {
60 if (!Ex->isLValue())
62 return isa<DeclRefExpr>(Ex) ||
63 isa<MemberExpr>(Ex) ||
64 isa<ObjCIvarRefExpr>(Ex);
132 const Expr *Ex = dyn_cast<Expr>(ps.getStmt());
133 if (!Ex)
139 if (isInterestingLValueExpr(Ex))
147 if (!PM.isConsumedExpr(Ex))
ExprEngineC.cpp 217 void ExprEngine::VisitCast(const CastExpr *CastE, const Expr *Ex,
229 evalLoad(Dst, CastE, CastE, subExprNode, state, state->getSVal(Ex, LCtx));
236 QualType ExTy = Ex->getType();
272 // Copy the SVal of Ex to CastE.
275 SVal V = state->getSVal(Ex, LCtx);
312 SVal V = state->getSVal(Ex, LCtx);
321 SVal val = state->getSVal(Ex, LCtx);
329 SVal val = state->getSVal(Ex, LCtx);
632 void ExprEngine::VisitGuardedExpr(const Expr *Ex,
674 B.generateNode(Ex, Pred, state->BindExpr(Ex, LCtx, V, true))
    [all...]
BugReporterVisitors.cpp 790 if (const Expr *Ex = dyn_cast<Expr>(S)) {
791 Ex = Ex->IgnoreParenCasts();
792 if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(Ex)) {
805 if (const Expr *Ex = dyn_cast<Expr>(S)) {
806 Ex = Ex->IgnoreParenCasts();
807 if (ExplodedGraph::isInterestingLValueExpr(Ex) || CallEvent::isCallStmt(Ex))
808 Inner = Ex;
    [all...]
ExprEngine.cpp 171 const Expr *Ex,
173 SVal V = State->getSVal(Ex, LC);
184 const Expr *Inner = Ex->IgnoreParens();
209 State = State->BindExpr(Result ? Result : Ex, LC, Reg);
731 const Expr *Ex = cast<Expr>(S);
732 QualType resultType = Ex->getType();
738 SVal result = svalBuilder.conjureSymbolVal(0, Ex, LCtx, resultType,
740 ProgramStateRef state = N->getState()->BindExpr(Ex, LCtx, result);
    [all...]
RegionStore.cpp 362 const Expr *Ex,
870 const Expr *Ex;
879 const Expr *ex, unsigned count,
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 553 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
557 SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR,
LegalizeIntegerTypes.cpp     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 265 /// headers and are considered modifiable by system calls (ex: errno).
283 /// (system or internal). Ex: Const global scalars would be modeled as part of
438 const Expr *Ex;
440 AllocaRegion(const Expr *ex, unsigned cnt, const MemRegion *superRegion)
441 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
445 const Expr *getExpr() const { return Ex; }
453 static void ProfileRegion(llvm::FoldingSetNodeID& ID, const Expr *Ex,
550 // TODO: We might want to return a different type here (ex: id (*ty)(...))
1034 Expr const *Ex;
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 239 ExprResult Ex = Owned(E);
244 bool TypeDependent = DestType->isDependentType() || Ex.get()->isTypeDependent();
    [all...]
SemaExprCXX.cpp 497 Sema::ActOnCXXThrow(Scope *S, SourceLocation OpLoc, Expr *Ex) {
499 if (Ex) {
511 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Ex->IgnoreParens()))
530 return BuildCXXThrow(OpLoc, Ex, IsThrownVarInScope);
533 ExprResult Sema::BuildCXXThrow(SourceLocation OpLoc, Expr *Ex,
540 if (Ex && !Ex->isTypeDependent()) {
541 ExprResult ExRes = CheckCXXThrowOperand(OpLoc, Ex, IsThrownVarInScope);
544 Ex = ExRes.take();
547 return Owned(new (Context) CXXThrowExpr(Ex, Context.VoidTy, OpLoc
    [all...]
SemaDeclAttr.cpp     [all...]
SemaChecking.cpp     [all...]
  /frameworks/base/core/java/android/hardware/
SensorManager.java 823 final float Ex = geomagnetic[0];
827 float Hy = Ez*Ax - Ex*Az;
828 float Hz = Ex*Ay - Ey*Ax;
862 final float invE = 1.0f / (float)Math.sqrt(Ex*Ex + Ey*Ey + Ez*Ez);
863 final float c = (Ex*Mx + Ey*My + Ez*Mz) * invE;
864 final float s = (Ex*Ax + Ey*Ay + Ez*Az) * invE;
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
pr29166.cpp 4 class Ex
9 Ex( int v )
79 throw Ex( sum );
86 } catch( Ex& ) { }
  /ndk/tests/device/test-stlport_static-exception/jni/
pr29166.cpp 4 class Ex
9 Ex( int v )
79 throw Ex( sum );
86 } catch( Ex& ) { }
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 744 const SCEV *Ex = SE->getExitCount(Lp, Lp->getLoopLatch());
745 const SCEV *ScEnd = AR->evaluateAtIteration(Ex, *SE);
    [all...]

Completed in 1386 milliseconds