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

12

/external/clang/test/Sema/
H A Dformat-strings-enum.c15 typedef enum { Constant = 0 } TestEnum; enumerator in enum:__anon2355
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/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/
H A DConstant.java27 public class Constant { class
/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/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DUnicodeLabel.java45 public static class Constant extends UnicodeLabel { class in class:UnicodeLabel
47 public Constant(String value) { method in class:UnicodeLabel.Constant
58 public static final UnicodeLabel NULL = new Constant("");
/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 &) = delete;
43 Constant(const Constant &) = delete;
47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) function in class:llvm::Constant
51 void replaceUsesOfWithOnConstantImpl(Constant *Replacemen
[all...]
/external/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.cpp334 case MCExpr::Constant: {
338 const MCConstantExpr *Constant = cast<MCConstantExpr>(Expr); local
340 if (!Constant->EvaluateAsAbsolute(TargetAddress)) {
1176 // Constant shifts t2_so_reg is a 2-operand unit corresponding to the Thumb2
/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/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h33 Constant.Int = i;
37 Constant.CFP = CFP;
41 Constant.CIP = CIP;
64 } Constant; member in struct:llvm::DebugLocEntry::Value
73 int64_t getInt() const { return Constant.Int; }
74 const ConstantFP *getConstantFP() const { return Constant.CFP; }
75 const ConstantInt *getConstantInt() const { return Constant.CIP; }
121 /// share the same Loc/Constant and if Next immediately follows this
181 return A.Constant.Int == B.Constant
[all...]
/external/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/llvm/include/llvm/CodeGen/
H A DStackMaps.h134 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
108 /// TargetConstant* - Like Constant*, but the DAG does not do any folding,
167 /// a Constant, which is required to be operand #1) half of the integer or
/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/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.h269 enum HowSpecified { NotSpecified, Constant, Arg, Invalid }; enumerator in enum:clang::analyze_format_string::OptionalAmount::HowSpecified
298 assert(hs == Constant);
308 assert(hs == Constant);
/external/llvm/include/llvm/MC/
H A DMCExpr.h38 Constant, ///< Constant expressions. enumerator in enum:llvm::MCExpr::ExprKind
134 : MCExpr(MCExpr::Constant), Value(Value) {}
151 return E->getKind() == MCExpr::Constant;
/external/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/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/utils/TableGen/
H A DNeonEmitter.cpp133 bool Float, Signed, Void, Poly, Constant, Pointer; member in class:__anon2837::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/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h263 Constant
316 Constant, member in class:llvm::PDB_Checksum::PDB_Machine::PDB_Lang::PDB_LocType
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp2212 if (const SCEVConstant *Constant = dyn_cast<SCEVConstant>(Product->getOperand(Op)))
2213 return Constant;
2253 const SCEVConstant *Constant = dyn_cast<SCEVConstant>(Coeff); local
2257 Constant = getConstantPart(Product);
2258 if (!Constant)
2260 APInt ConstCoeff = Constant->getValue()->getValue();
2274 const SCEVConstant *Constant = dyn_cast<SCEVConstant>(Coeff); local
2278 Constant = getConstantPart(Product);
2279 if (!Constant)
2281 APInt ConstCoeff = Constant
2290 const SCEVConstant *Constant = dyn_cast<SCEVConstant>(Delta); local
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp51 llvm::Constant *Function;
78 operator llvm::Constant*() {
86 cast<llvm::Constant>(CGM->CreateRuntimeFunction(FTy, FunctionName));
94 return cast<llvm::Function>((llvm::Constant*)*this);
172 llvm::Constant *MakeConstantString(const std::string &Str,
182 llvm::Constant *ExportUniqueString(const std::string &Str,
187 llvm::Constant *value = llvm::ConstantDataArray::getString(VMContext,Str);
198 ArrayRef<llvm::Constant *> V,
202 llvm::Constant *C = llvm::ConstantStruct::get(Ty, V);
210 ArrayRef<llvm::Constant *>
[all...]

Completed in 2012 milliseconds

12