Searched defs:isConstant (Results 1 - 25 of 34) sorted by relevance

12

/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DTypedConstant.java46 public final boolean isConstant() { method in class:TypedConstant
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DTypeBearer.java73 public boolean isConstant(); method in interface:TypeBearer
H A DType.java563 public boolean isConstant() { method in class:Type
/external/llvm/include/llvm/IR/
H A DGlobalVariable.h57 GlobalVariable(Type *Ty, bool isConstant, LinkageTypes Linkage,
63 GlobalVariable(Module &M, Type *Ty, bool isConstant,
144 bool isConstant() const { return isConstantGlobal; } function in class:llvm::GlobalVariable
/external/llvm/lib/CodeGen/
H A DPseudoSourceValue.cpp78 bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const { function in class:PseudoSourceValue
105 bool FixedStackPseudoSourceValue::isConstant(const MachineFrameInfo *MFI) const{ function in class:FixedStackPseudoSourceValue
/external/llvm/lib/Target/Mips/
H A DMipsMachineFunction.cpp40 bool MipsCallEntry::isConstant(const MachineFrameInfo *) const { function in class:MipsCallEntry
/external/chromium_org/third_party/skia/src/animator/
H A DSkOperand2.h51 bool isConstant() const { return fIsConstant == kConstant; } function in struct:SkScriptValue2
/external/clang/lib/StaticAnalyzer/Core/
H A DSVals.cpp174 bool SVal::isConstant() const { function in class:SVal
178 bool SVal::isConstant(int I) const { function in class:SVal
187 return isConstant(0);
/external/llvm/lib/IR/
H A DMDBuilder.cpp85 bool isConstant) {
86 if (isConstant) {
84 createTBAANode(StringRef Name, MDNode *Parent, bool isConstant) argument
/external/skia/src/animator/
H A DSkOperand2.h51 bool isConstant() const { return fIsConstant == kConstant; } function in struct:SkScriptValue2
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegisterSpec.java317 public final boolean isConstant() { method in class:RegisterSpec
/external/doclava/src/com/google/doclava/
H A DFieldInfo.java54 return isConstant(isFinal, isStatic, constantValue) ? "constant" : "field";
67 static boolean isConstant(boolean isFinal, boolean isStatic, Object constantValue) method in class:FieldInfo
80 public boolean isConstant() { method in class:FieldInfo
81 return isConstant(isFinal(), isStatic(), mConstantValue);
/external/eigen/Eigen/src/Core/
H A DCwiseNullaryOp.h311 bool DenseBase<Derived>::isConstant function in class:Eigen::DenseBase
/external/clang/lib/CodeGen/
H A DCGBlocks.h158 bool isConstant() const { return !isIndex(); } function in class:clang::CodeGen::CGBlockInfo::Capture
161 assert(isConstant());
H A DCodeGenModule.cpp1175 /*isConstant=*/true, llvm::GlobalValue::LinkOnceODRLinkage, Init, Name);
1582 if (!Ty.isConstant(Context) && !Ty->isReferenceType())
1676 D->getType().isConstant(Context) &&
1707 GV = new llvm::GlobalVariable(getModule(), Ty, /*isConstant=*/true,
1928 getLLVMLinkageVarDefinition(D, GV->isConstant());
2524 new llvm::GlobalVariable(getModule(), C->getType(), /*isConstant=*/true,
2646 bool isConstant; local
2648 isConstant = !LangOpts.WritableStrings;
2650 auto *GV = new llvm::GlobalVariable(getModule(), C->getType(), isConstant,
/external/javassist/src/main/javassist/compiler/
H A DTypeChecker.java329 if (!isConstant(expr, token, left, right))
372 if (isConstant(expr, '+', left, right))
392 private boolean isConstant(BinExpr expr, int op, ASTree left, method in class:TypeChecker
590 if (!isConstant(expr, token, oprand))
597 private boolean isConstant(Expr expr, int op, ASTree oprand) { method in class:TypeChecker
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp23 /// is to leave as a vector operation. isConstant indicates whether we're
25 static bool CheapToScalarize(Value *V, bool isConstant) { argument
27 if (isConstant) return true;
43 if (I->getOpcode() == Instruction::InsertElement && isConstant &&
50 (CheapToScalarize(BO->getOperand(0), isConstant) ||
51 CheapToScalarize(BO->getOperand(1), isConstant)))
55 (CheapToScalarize(CI->getOperand(0), isConstant) ||
56 CheapToScalarize(CI->getOperand(1), isConstant)))
H A DInstCombineAddSub.cpp122 bool isConstant() const { return Val == nullptr; } function in class:__anon26243::FAddend
417 if (isConstant())
538 if (!Opnd0.isConstant())
542 if (OpndNum == 2 && !Opnd1.isConstant())
817 if (Opnd->isConstant())
847 if (Opnd.isConstant()) {
/external/llvm/lib/Analysis/
H A DLazyValueInfo.cpp107 bool isConstant() const { return Tag == constant; } function in class:__anon25686::LVILatticeVal
113 assert(isConstant() && "Cannot get the constant of a non-constant!");
144 assert((!isConstant() || getConstant() == V) &&
160 assert((!isConstant() || getConstant() != V) &&
164 assert(isUndefined() || isConstant());
203 if (isConstant()) {
204 if (RHS.isConstant()) {
236 if (RHS.isConstant()) {
1041 if (Result.isConstant())
1057 if (Result.isConstant())
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp88 bool isConstant() const { function in class:__anon26320::LatticeVal
94 assert(isConstant() && "Cannot get the constant of a non-constant!");
135 if (isConstant())
645 // 3. If V <- x (op) y && isConstant(x) && isConstant(y) V = Constant
751 else if (OpSt.isConstant()) // Propagate constant value
834 if (TVal.isConstant() && FVal.isConstant() &&
853 if (V1State.isConstant() && V2State.isConstant())
[all...]
/external/clang/lib/AST/
H A DType.cpp66 bool QualType::isConstant(QualType T, ASTContext &Ctx) { function in class:QualType
71 return AT->getElementType().isConstant(Ctx);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1886 bool isConstant = Record[1]; local
1914 new GlobalVariable(*TheModule, Ty, isConstant, Linkage, nullptr, "", nullptr,
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6725 bool BuildVectorSDNode::isConstant() const { function in class:BuildVectorSDNode
/external/clang/include/clang/AST/
H A DType.h669 bool isConstant(ASTContext& Ctx) const { function in class:clang::QualType
670 return QualType::isConstant(*this, Ctx);
985 static bool isConstant(QualType T, ASTContext& Ctx);
/external/clang/lib/Sema/
H A DSemaChecking.cpp2076 bool isConstant = false; local
2080 isConstant = AT->getElementType().isConstant(S.Context);
2082 isConstant = T.isConstant(S.Context) &&
2083 PT->getPointeeType().isConstant(S.Context);
2087 isConstant = T.isConstant(S.Context);
2090 if (isConstant) {

Completed in 830 milliseconds

12