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

12

/external/clang/test/Sema/
H A Dformat-strings-enum.c15 typedef enum { Constant = 0 } TestEnum; enumerator in enum:__anon19113
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/proguard/src/proguard/classfile/constant/
H A DConstant.java32 public abstract class Constant implements VisitorAccepter class in inherits:VisitorAccepter
/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
110 Constant *getAggregateElemen
[all...]
/external/chromium_org/v8/src/compiler/
H A Djs-graph.cc115 Node* JSGraph::Constant(Handle<Object> value) { function in class:v8::internal::compiler::JSGraph
119 return Constant(value->Number());
136 Node* JSGraph::Constant(double value) { function in class:v8::internal::compiler::JSGraph
143 Node* JSGraph::Constant(int32_t value) { function in class:v8::internal::compiler::JSGraph
H A Dinstruction.h40 V(Constant, CONSTANT, 128) \
655 class Constant FINAL {
659 explicit Constant(int32_t v) : type_(kInt32), value_(v) {} function in class:v8::internal::compiler::FINAL
660 explicit Constant(int64_t v) : type_(kInt64), value_(v) {} function in class:v8::internal::compiler::FINAL
661 explicit Constant(double v) : type_(kFloat64), value_(bit_cast<int64_t>(v)) {} function in class:v8::internal::compiler::FINAL
662 explicit Constant(ExternalReference ref) function in class:v8::internal::compiler::FINAL
664 explicit Constant(Handle<HeapObject> obj) function in class:v8::internal::compiler::FINAL
785 OStream& operator<<(OStream& os, const Constant& constant);
787 typedef ZoneDeque<Constant> ConstantDeque;
788 typedef std::map<int, Constant, st
[all...]
/external/llvm/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp316 case MCExpr::Constant: {
320 const MCConstantExpr *Constant = cast<MCConstantExpr>(Expr); local
322 if (!Constant->EvaluateAsAbsolute(TargetAddress)) {
1055 // Constant shifts t2_so_reg is a 2-operand unit corresponding to the Thumb2
/external/chromium_org/tools/usb_gadget/
H A Dhid_descriptors.py103 Constant = (0, True) variable
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-machine-operator-reducer.cc61 maxuint32(Constant<int32_t>(kMaxUInt32)) {
78 Node* Constant(volatile T value) { function in class:ReducerTester
91 CheckFoldBinop<T>(expect, Constant<T>(a), Constant<T>(b));
168 Node* k = Constant<T>(constant);
193 Node* k = Constant<T>(constant);
223 Node* zero = R.Constant<int32_t>(0);
224 Node* minus_1 = R.Constant<int32_t>(-1);
249 Node* zero = R.Constant<int32_t>(0);
250 Node* minus_1 = R.Constant<int32_
[all...]
/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 nbRows, Index nbCols, 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(), val);
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(nbRow
[all...]
/external/llvm/include/llvm/CodeGen/
H A DStackMaps.h87 enum LocationType { Unprocessed, Register, Direct, Indirect, Constant, enumerator in enum:llvm::StackMaps::Location::LocationType
H A DISDOpcodes.h61 Constant, ConstantFP, enumerator in enum:llvm::ISD::NodeType
103 /// TargetConstant* - Like Constant*, but the DAG does not do any folding,
162 /// a Constant, which is required to be operand #1) half of the integer or
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h31 Constant.Int = i;
35 Constant.CFP = CFP;
39 Constant.CIP = CIP;
57 } Constant; member in struct:llvm::DebugLocEntry::Value
70 return Constant.Int == other.Constant.Int;
72 return Constant.CFP == other.Constant.CFP;
74 return Constant.CIP == other.Constant
[all...]
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dmodule.py169 class Constant(object): class in inherits:object
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h516 bool isOffsetOf(Type *&STy, Constant *&FieldNo) const;
651 const SCEV *visitConstant(const SCEVConstant *Constant) { argument
652 return Constant;
747 const SCEV *visitConstant(const SCEVConstant *Constant) { argument
748 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/chromium_org/v8/src/
H A Dtypes.h49 // Constant(x) < T iff instance_type(map(x)) < T
57 // and respective Constant types, since these types cannot be reconstructed
59 // Note also that Constant(x) < Class(map(x)) does _not_ hold, since x's map can
64 // considers the _current_ state only, i.e., Constant(x) <_now Class(map(x)).
100 // Constant(v) is considered a subtype of Range(x..y) if v happens to be an
330 static TypeHandle Constant(i::Handle<i::Object> value, Region* region) { function in class:v8::internal::TypeImpl
402 // Equivalent to Constant(val)->Is(this), but avoiding allocation.
744 // Constant types.
/external/chromium_org/v8/test/cctest/
H A Dtest-types.cc115 SmiConstant = Type::Constant(smi, region);
116 Signed32Constant = Type::Constant(signed32, region);
117 ObjectConstant1 = Type::Constant(object1, region);
118 ObjectConstant2 = Type::Constant(object2, region);
119 ArrayConstant = Type::Constant(array, region);
120 UninitializedConstant = Type::Constant(uninitialized, region);
129 types.push_back(Type::Constant(*it, region));
215 TypeHandle Constant(Handle<i::Object> value) { function in class:Types
216 return Type::Constant(value, region_);
282 return Type::Constant(value
507 void Constant() { function in struct:Tests
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h256 enum HowSpecified { NotSpecified, Constant, Arg, Invalid }; enumerator in enum:clang::analyze_format_string::OptionalAmount::HowSpecified
285 assert(hs == Constant);
295 assert(hs == Constant);
/external/llvm/include/llvm/MC/
H A DMCExpr.h37 Constant, ///< Constant expressions. enumerator in enum:llvm::MCExpr::ExprKind
125 : MCExpr(MCExpr::Constant), Value(_Value) {}
142 return E->getKind() == MCExpr::Constant;
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp133 bool Float, Signed, Void, Poly, Constant, Pointer; member in class:__anon19562::Type
142 : Float(false), Signed(false), Void(true), Poly(false), Constant(false),
148 Constant(false), Pointer(false), ScalarForMangling(false),
563 if (Constant)
603 if (Constant) S += "C";
882 Constant = true;
1021 // Constant indices are always just "int".
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp2194 if (const SCEVConstant *Constant = dyn_cast<SCEVConstant>(Product->getOperand(Op)))
2195 return Constant;
2235 const SCEVConstant *Constant = dyn_cast<SCEVConstant>(Coeff); local
2239 Constant = getConstantPart(Product);
2240 if (!Constant)
2242 APInt ConstCoeff = Constant->getValue()->getValue();
2256 const SCEVConstant *Constant = dyn_cast<SCEVConstant>(Coeff); local
2260 Constant = getConstantPart(Product);
2261 if (!Constant)
2263 APInt ConstCoeff = Constant
2272 const SCEVConstant *Constant = dyn_cast<SCEVConstant>(Delta); local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp58 case ISD::Constant: Res = PromoteIntRes_Constant(N); break;
1135 case ISD::Constant: ExpandIntRes_Constant(N, Lo, Hi); break;
1764 auto Constant = cast<ConstantSDNode>(N); local
1765 const APInt &Cst = Constant->getAPIntValue();
1766 bool IsTarget = Constant->isTargetOpcode();
1767 bool IsOpaque = Constant->isOpaque();

Completed in 6939 milliseconds

12