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

/external/clang/test/Sema/
H A Dformat-strings-enum.c15 typedef enum { Constant = 0 } TestEnum; enumerator in enum:__anon16305
16 // Note that in C, the type of 'Constant' is 'int'. In C++ it is 'TestEnum'.
21 printf("%d", Constant); // no-warning
24 printf("%lld", Constant); // expected-warning{{format specifies type 'long long'}}
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3-nodeduct.cpp9 template<typename T, T* Address> struct Constant { }; struct
10 Constant<void(int), &f<int> > constant0;
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DConstant.java24 public abstract class Constant class in inherits:ToHuman,Comparable
25 implements ToHuman, Comparable<Constant> {
48 public final int compareTo(Constant other) {
67 protected abstract int compareTo0(Constant other);
/external/llvm/include/llvm/IR/
H A DConstant.h1 //===-- llvm/Constant.h - Constant class definition -------------*- C++ -*-===//
10 // This file contains the declaration of the Constant class.
40 /// @brief LLVM Constant Representation
41 class Constant : public User { class in namespace:llvm
42 void operator=(const Constant &) LLVM_DELETED_FUNCTION;
43 Constant(const Constant &) LLVM_DELETED_FUNCTION;
47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) function in class:llvm::Constant
104 Constant *getAggregateElemen
[all...]
/external/proguard/src/proguard/classfile/constant/
H A DConstant.java32 public abstract class Constant implements VisitorAccepter class in inherits:VisitorAccepter
/external/llvm/include/llvm/Support/
H A DIntegersSubset.h48 Constant *NewVal = ConstantInt::get(ConstantIntVal->getContext(), res); \
55 Constant *NewVal = ConstantInt::get(ConstantIntVal->getContext(), res); \
63 Constant *NewVal = ConstantInt::get(ConstantIntVal->getContext(), res); \
72 Constant *NewVal = ConstantInt::get(ConstantIntVal->getContext(), res); \
81 Constant *NewVal = ConstantInt::get(ConstantIntVal->getContext(), res); \
147 Constant *NewVal = ConstantInt::get(ConstantIntVal->getContext(), res);
456 /// that also supports conversion to/from Constant* object.
461 Constant *Holder;
463 static unsigned getNumItemsFromConstant(Constant *C) {
467 static Range getItemFromConstant(Constant *
[all...]
/external/chromium_org/v8/tools/testrunner/local/
H A Dold_statusfile.py60 class Constant(Expression): class in inherits:Expression
253 return Constant(True)
256 return Constant(False)
/external/eigen/Eigen/src/Core/
H A DCwiseNullaryOp.h24 * It is the return type of the Ones(), Zero(), Constant(), Identity() and Random() methods,
179 DenseBase<Derived>::Constant(Index rows, Index cols, const Scalar& value) function in class:Eigen::DenseBase
201 DenseBase<Derived>::Constant(Index size, const Scalar& value) function in class:Eigen::DenseBase
217 DenseBase<Derived>::Constant(const Scalar& value) function in class:Eigen::DenseBase
319 * \sa setConstant(), Constant(), class CwiseNullaryOp
329 * \sa fill(), setConstant(Index,const Scalar&), setConstant(Index,Index,const Scalar&), setZero(), setOnes(), Constant(), class CwiseNullaryOp, setZero(), setOnes()
334 return derived() = Constant(rows(), cols(), value);
344 * \sa MatrixBase::setConstant(const Scalar&), setConstant(Index,Index,const Scalar&), class CwiseNullaryOp, MatrixBase::Constant(const Scalar&)
363 * \sa MatrixBase::setConstant(const Scalar&), setConstant(Index,const Scalar&), class CwiseNullaryOp, MatrixBase::Constant(const Scalar&)
430 return Constant(row
[all...]
/external/chromium_org/v8/src/
H A Dtypes.h66 // Constant(x) < T iff instance_type(map(x)) < T
68 // Note that Constant(x) < Class(map(x)) does _not_ hold, since x's map can
91 // Constant's, or unions containing Class'es or Constant's, require allocation.
147 static Type* Constant(Handle<HeapObject> value) { function in class:v8::internal::Type
148 return Constant(value, value->GetIsolate());
150 static Type* Constant(Handle<v8::internal::Object> value, Isolate* isolate) { function in class:v8::internal::Type
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h434 bool isOffsetOf(Type *&STy, Constant *&FieldNo) const;
561 virtual const SCEV *visitConstant(const SCEVConstant *Constant) { argument
562 return Constant;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_context.h226 GLuint Constant[I915_CONSTANT_SIZE]; member in struct:i915_hw_state
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_context.h226 GLuint Constant[I915_CONSTANT_SIZE]; member in struct:i915_hw_state
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h248 enum HowSpecified { NotSpecified, Constant, Arg, Invalid }; enumerator in enum:clang::analyze_format_string::OptionalAmount::HowSpecified
277 assert(hs == Constant);
287 assert(hs == Constant);
/external/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h61 Constant, ConstantFP, enumerator in enum:llvm::ISD::NodeType
98 /// TargetConstant* - Like Constant*, but the DAG does not do any folding,
157 /// a Constant, which is required to be operand #1) half of the integer or
/external/llvm/include/llvm/MC/
H A DMCExpr.h35 Constant, ///< Constant expressions. enumerator in enum:llvm::MCExpr::ExprKind
114 : MCExpr(MCExpr::Constant), Value(_Value) {}
131 return E->getKind() == MCExpr::Constant;
/external/v8/tools/
H A Dtest.py766 class Constant(Expression): class in inherits:Expression
979 return Constant(True)
982 return Constant(False)
1141 current_section = Section(Constant(True))
/external/clang/lib/CodeGen/
H A DCodeGenModule.cpp495 SmallVector<llvm::Constant*, 8> Ctors;
497 llvm::Constant *S[] = {
773 SmallVector<llvm::Constant*, 8> UsedArray;
777 llvm::ConstantExpr::getBitCast(cast<llvm::Constant>(&*LLVMUsed[i]),
972 llvm::Constant *Array = llvm::ConstantArray::get(llvm::ArrayType::get(
980 llvm::Constant *CodeGenModule::EmitAnnotationString(StringRef Str) {
981 llvm::StringMap<llvm::Constant*>::iterator i = AnnotationStrings.find(Str);
986 llvm::Constant *s = llvm::ConstantDataArray::getString(getLLVMContext(), Str);
995 llvm::Constant *CodeGenModule::EmitAnnotationUnit(SourceLocation Loc) {
1003 llvm::Constant *CodeGenModul
2686 bool Constant = false; local
[all...]
H A DCGObjCGNU.cpp51 llvm::Constant *Function;
77 operator llvm::Constant*() {
85 cast<llvm::Constant>(CGM->CreateRuntimeFunction(FTy, FunctionName));
93 return cast<llvm::Function>((llvm::Constant*)*this);
171 llvm::Constant *MakeConstantString(const std::string &Str,
173 llvm::Constant *ConstStr = CGM.GetAddrOfConstantCString(Str, Name.c_str());
180 llvm::Constant *ExportUniqueString(const std::string &Str,
183 llvm::Constant *ConstStr = TheModule.getGlobalVariable(name);
185 llvm::Constant *value = llvm::ConstantDataArray::getString(VMContext,Str);
195 ArrayRef<llvm::Constant *>
[all...]
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp2189 if (const SCEVConstant *Constant = dyn_cast<SCEVConstant>(Product->getOperand(Op)))
2190 return Constant;
2230 const SCEVConstant *Constant = dyn_cast<SCEVConstant>(Coeff); local
2234 Constant = getConstantPart(Product);
2235 if (!Constant)
2237 APInt ConstCoeff = Constant->getValue()->getValue();
2251 const SCEVConstant *Constant = dyn_cast<SCEVConstant>(Coeff); local
2255 Constant = getConstantPart(Product);
2256 if (!Constant)
2258 APInt ConstCoeff = Constant
2267 const SCEVConstant *Constant = dyn_cast<SCEVConstant>(Delta); local
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp2767 Amt.getHowSpecified() == analyze_printf::OptionalAmount::Constant
3344 if (Amt.getHowSpecified() == OptionalAmount::Constant) {
4738 Expr *Constant, Expr *Other,
4747 QualType ConstantT = Constant->getType();
4830 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Constant))
4737 DiagnoseOutOfRangeComparison(Sema &S, BinaryOperator *E, Expr *Constant, Expr *Other, llvm::APSInt Value, bool RhsConstant) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp563 N.getOperand(2).getOpcode() == ISD::Constant &&
564 N.getOperand(3).getOpcode() == ISD::Constant &&
763 case ISD::Constant: {
1238 // Constant operands are canonicalized to RHS.
2565 APInt Constant = APInt::getNullValue(1); local
2567 Constant = C->getAPIntValue();
2595 Constant = APInt::getAllOnesValue(BitWidth);
2597 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2610 Constant =
2611 Constant
[all...]
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 692 milliseconds