Searched defs:Expr (Results 1 - 25 of 95) sorted by last modified time

1234

/external/sqlite/dist/orig/
H A Dsqlite3.c8788 typedef struct Expr Expr; typedef in typeref:struct:Expr
10776 Expr *pDflt; /* Default value of this column */
11167 Expr *pPartIdxWhere; /* WHERE clause for partial indices */
11230 ** If Expr.op==TK_AGG_COLUMN or TK_AGG_FUNCTION then Expr.pAggInfo is a
11231 ** pointer to this structure. The Expr.iColumn field is the index in
11255 Expr *pExpr; /* The original expression */
11262 Expr *pExpr; /* Expression encoding the function */
11274 ** it uses less memory in the Expr objec
11349 struct Expr { struct
[all...]
/external/sqlite/dist/
H A Dsqlite3.c8788 typedef struct Expr Expr; typedef in typeref:struct:Expr
10776 Expr *pDflt; /* Default value of this column */
11167 Expr *pPartIdxWhere; /* WHERE clause for partial indices */
11230 ** If Expr.op==TK_AGG_COLUMN or TK_AGG_FUNCTION then Expr.pAggInfo is a
11231 ** pointer to this structure. The Expr.iColumn field is the index in
11255 Expr *pExpr; /* The original expression */
11262 Expr *pExpr; /* Expression encoding the function */
11274 ** it uses less memory in the Expr objec
11349 struct Expr { struct
[all...]
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/llvm/utils/FileCheck/
H A DFileCheck.cpp149 bool EvaluateExpression(StringRef Expr, std::string &Value) const;
344 bool Pattern::EvaluateExpression(StringRef Expr, std::string &Value) const { argument
346 if (!Expr.startswith("@LINE"))
348 Expr = Expr.substr(StringRef("@LINE").size());
350 if (!Expr.empty()) {
351 if (Expr[0] == '+')
352 Expr = Expr.substr(1);
353 else if (Expr[
[all...]
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h655 const SCEV *visitTruncateExpr(const SCEVTruncateExpr *Expr) { argument
656 const SCEV *Operand = visit(Expr->getOperand());
657 return SE.getTruncateExpr(Operand, Expr->getType());
660 const SCEV *visitZeroExtendExpr(const SCEVZeroExtendExpr *Expr) { argument
661 const SCEV *Operand = visit(Expr->getOperand());
662 return SE.getZeroExtendExpr(Operand, Expr->getType());
665 const SCEV *visitSignExtendExpr(const SCEVSignExtendExpr *Expr) { argument
666 const SCEV *Operand = visit(Expr->getOperand());
667 return SE.getSignExtendExpr(Operand, Expr->getType());
670 const SCEV *visitAddExpr(const SCEVAddExpr *Expr) { argument
677 visitMulExpr(const SCEVMulExpr *Expr) argument
684 visitUDivExpr(const SCEVUDivExpr *Expr) argument
688 visitAddRecExpr(const SCEVAddRecExpr *Expr) argument
696 visitSMaxExpr(const SCEVSMaxExpr *Expr) argument
703 visitUMaxExpr(const SCEVUMaxExpr *Expr) argument
710 visitUnknown(const SCEVUnknown *Expr) argument
721 visitCouldNotCompute(const SCEVCouldNotCompute *Expr) argument
751 visitTruncateExpr(const SCEVTruncateExpr *Expr) argument
756 visitZeroExtendExpr(const SCEVZeroExtendExpr *Expr) argument
761 visitSignExtendExpr(const SCEVSignExtendExpr *Expr) argument
766 visitAddExpr(const SCEVAddExpr *Expr) argument
773 visitMulExpr(const SCEVMulExpr *Expr) argument
780 visitUDivExpr(const SCEVUDivExpr *Expr) argument
784 visitAddRecExpr(const SCEVAddRecExpr *Expr) argument
799 visitSMaxExpr(const SCEVSMaxExpr *Expr) argument
806 visitUMaxExpr(const SCEVUMaxExpr *Expr) argument
813 visitUnknown(const SCEVUnknown *Expr) argument
817 visitCouldNotCompute(const SCEVCouldNotCompute *Expr) argument
[all...]
/external/llvm/include/llvm/MC/
H A DMCExpr.h338 const MCExpr *Expr; member in class:llvm::MCUnaryExpr
341 : MCExpr(MCExpr::Unary), Op(_Op), Expr(_Expr) {}
347 static const MCUnaryExpr *Create(Opcode Op, const MCExpr *Expr,
349 static const MCUnaryExpr *CreateLNot(const MCExpr *Expr, MCContext &Ctx) { argument
350 return Create(LNot, Expr, Ctx);
352 static const MCUnaryExpr *CreateMinus(const MCExpr *Expr, MCContext &Ctx) { argument
353 return Create(Minus, Expr, Ctx);
355 static const MCUnaryExpr *CreateNot(const MCExpr *Expr, MCContext &Ctx) { argument
356 return Create(Not, Expr, Ctx);
358 static const MCUnaryExpr *CreatePlus(const MCExpr *Expr, MCContex argument
[all...]
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp2906 const SCEV *DependenceAnalysis::findCoefficient(const SCEV *Expr, argument
2908 const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Expr);
2910 return SE->getConstant(Expr->getType(), 0);
2922 const SCEV *DependenceAnalysis::zeroCoefficient(const SCEV *Expr, argument
2924 const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Expr);
2926 return Expr; // ignore
2936 // Given a linear SCEV Expr,
2941 const SCEV *DependenceAnalysis::addToCoefficient(const SCEV *Expr, argument
2944 const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Expr);
2946 return SE->getAddRecExpr(Expr,
[all...]
H A DPHITransAddr.cpp57 static bool VerifySubExpr(Value *Expr, argument
60 Instruction *I = dyn_cast<Instruction>(Expr);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1517 const MCExpr *Expr = MCSymbolRefExpr::Create(Label, OutContext); local
1519 Expr = MCBinaryExpr::CreateAdd(
1520 Expr, MCConstantExpr::Create(Offset, OutContext), OutContext);
1522 OutStreamer.EmitValue(Expr, Size);
H A DDIE.h298 const MCExpr *Expr; member in class:llvm::DIEExpr
301 explicit DIEExpr(const MCExpr *E) : DIEValue(isExpr), Expr(E) {}
309 const MCExpr *getValue() const { return Expr; }
H A DDwarfUnit.cpp237 void DwarfUnit::addExpr(DIELoc &Die, dwarf::Form Form, const MCExpr *Expr) { argument
238 DIEValue *Value = new (DIEValueAllocator) DIEExpr(Expr);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp33 bool evaluate(StringRef Expr) const {
35 Expr = Expr.trim();
36 size_t EQIdx = Expr.find('=');
39 StringRef LHSExpr = Expr.substr(0, EQIdx).rtrim();
45 return handleError(Expr, LHSResult);
47 return handleError(Expr, unexpectedToken(RemainingExpr, LHSExpr, ""));
50 StringRef RHSExpr = Expr.substr(EQIdx + 1).ltrim();
55 return handleError(Expr, RHSResult);
57 return handleError(Expr, unexpectedToke
126 handleError(StringRef Expr, const EvalResult &R) const argument
[all...]
/external/llvm/lib/IR/
H A DValue.cpp305 static bool contains(SmallPtrSet<ConstantExpr *, 4> &Cache, ConstantExpr *Expr, argument
307 if (!Cache.insert(Expr))
310 for (auto &O : Expr->operands()) {
322 static bool contains(Value *Expr, Value *V) { argument
323 if (Expr == V)
330 auto *CE = dyn_cast<ConstantExpr>(Expr);
/external/llvm/lib/MC/
H A DConstantPools.cpp92 const MCExpr *Expr) {
94 return getOrCreateConstantPool(Section).addEntry(Expr, Streamer.getContext());
91 addEntry(MCStreamer &Streamer, const MCExpr *Expr) argument
H A DELFObjectWriter.cpp799 const MCExpr *Expr = Sym.getVariableValue(); local
800 const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr);
917 const MCExpr *Expr = Symbol.getVariableValue(); local
918 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
H A DMCAssembler.cpp188 const MCExpr *Expr = Symbol.getVariableValue(); local
190 if (!Expr->EvaluateAsValue(Value, this))
389 const MCExpr *Expr = Symbol->getVariableValue(); local
390 const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr);
437 // Try to fully compute Expr to an absolute value and if that fails produce
440 static bool evaluate(const MCExpr &Expr, const MCAsmLayout &Layout, argument
442 if (Expr.EvaluateAsValue(Target, &Layout))
445 return Expr.EvaluateAsRelocatable(Target, &Layout);
456 const MCExpr *Expr = Fixup.getValue(); local
457 if (!evaluate(*Expr, Layou
[all...]
H A DMCExpr.cpp142 const MCUnaryExpr *MCUnaryExpr::Create(Opcode Opc, const MCExpr *Expr, argument
144 return new (Ctx) MCUnaryExpr(Opc, Expr);
H A DMCExternalSymbolizer.cpp112 const MCExpr *Expr; local
120 Expr = MCBinaryExpr::CreateAdd(LHS, Off, Ctx);
122 Expr = LHS;
125 Expr = MCBinaryExpr::CreateAdd(Add, Off, Ctx);
127 Expr = Add;
130 Expr = Off;
132 Expr = MCConstantExpr::Create(0, Ctx);
135 Expr = RelInfo->createExprForCAPIVariantKind(Expr, SymbolicOp.VariantKind);
136 if (!Expr)
[all...]
H A DMCStreamer.cpp71 const MCExpr *MCStreamer::ForceExpAbs(const MCExpr* Expr) { argument
72 assert(!isa<MCSymbolRefExpr>(Expr));
74 return Expr;
77 EmitAssignment(ABS, Expr);
623 void MCStreamer::visitUsedExpr(const MCExpr &Expr) { argument
624 switch (Expr.getKind()) {
626 cast<MCTargetExpr>(Expr).visitUsedExpr(*this);
633 const MCBinaryExpr &BE = cast<MCBinaryExpr>(Expr);
640 visitUsedSymbol(cast<MCSymbolRefExpr>(Expr).getSymbol());
644 visitUsedExpr(*cast<MCUnaryExpr>(Expr)
[all...]
H A DMachObjectWriter.cpp665 const MCExpr *Expr = SD.getSymbol().getVariableValue(); local
667 if (Expr->EvaluateAsRelocatable(Value, &Layout)) {
/external/llvm/lib/MC/MCAnalysis/
H A DMCObjectSymbolizer.cpp137 const MCExpr *Expr = MCSymbolRefExpr::Create(Sym, Ctx); local
138 MI.addOperand(MCOperand::CreateExpr(Expr));
173 const MCExpr *Expr = MCSymbolRefExpr::Create(Sym, Ctx); local
176 Expr = MCBinaryExpr::CreateAdd(Expr, Off, Ctx);
178 MI.addOperand(MCOperand::CreateExpr(Expr));
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp1066 const MCExpr *Expr; local
1069 if (parseExpression(Expr))
1072 if (!Expr->EvaluateAsAbsolute(Res))
4521 // Expr/Input or Output.
H A DELFAsmParser.cpp219 const MCExpr *Expr; local
220 if (getParser().parseExpression(Expr))
226 getStreamer().EmitELFSize(Sym, Expr);
/external/llvm/lib/TableGen/
H A DSetTheory.cpp30 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts,
32 ST.evaluate(Expr->arg_begin(), Expr->arg_end(), Elts, Loc);
38 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts,
40 if (Expr->arg_size() < 2)
42 Expr->getAsString());
44 ST.evaluate(*Expr->arg_begin(), Add, Loc);
45 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub, Loc);
54 void apply(SetTheory &ST, DagInit *Expr, RecSe
272 evaluate(Init *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) argument
[all...]

Completed in 561 milliseconds

1234