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

123

/external/clang/test/Sema/
H A Dformat-strings-enum.c15 typedef enum { Constant = 0 } TestEnum; enumerator in enum:__anon2597
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/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
100 Constant *getAggregateElemen
[all...]
/external/proguard/src/proguard/classfile/constant/
H A DConstant.java32 public abstract class Constant implements VisitorAccepter class in inherits:VisitorAccepter
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DUnicodeLabel.java46 public static class Constant extends UnicodeLabel { class in class:UnicodeLabel
48 public Constant(String value) { method in class:UnicodeLabel.Constant
59 public static final UnicodeLabel NULL = new Constant("");
/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/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
H A DConstant.java20 public final class Constant { class
31 public final static Constant LINEBR = new Constant(LINEBR_S);
32 public final static Constant FULL_LINEBR = new Constant(FULL_LINEBR_S);
33 public final static Constant NULL_OR_LINEBR = new Constant(NULL_OR_LINEBR_S);
34 public final static Constant NULL_BL_LINEBR = new Constant(NULL_BL_LINEBR_S);
35 public final static Constant NULL_BL_T_LINEB
45 private Constant(String content) { method in class:Constant
[all...]
/external/llvm/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp335 case MCExpr::Constant: {
339 const MCConstantExpr *Constant = cast<MCConstantExpr>(Expr); local
341 if (!Constant->evaluateAsAbsolute(TargetAddress)) {
1178 // Constant shifts t2_so_reg is a 2-operand unit corresponding to the Thumb2
/external/v8/src/compiler/
H A Djs-graph.cc86 Node* JSGraph::Constant(Handle<Object> value) { function in class:v8::internal::compiler::JSGraph
90 return Constant(value->Number());
107 Node* JSGraph::Constant(double value) { function in class:v8::internal::compiler::JSGraph
114 Node* JSGraph::Constant(int32_t value) { function in class:v8::internal::compiler::JSGraph
H A Dinstruction.cc500 Constant::Constant(int32_t v) : type_(kInt32), value_(v) {} function in class:v8::internal::compiler::Constant
503 std::ostream& operator<<(std::ostream& os, const Constant& constant) {
505 case Constant::kInt32:
507 case Constant::kInt64:
509 case Constant::kFloat32:
511 case Constant::kFloat64:
513 case Constant::kExternalReference:
516 case Constant::kHeapObject:
518 case Constant
[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.h138 Constant, enumerator in enum:llvm::StackMaps::Location::LocationType
H A DMIRYamlMapping.h288 static void mapping(IO &YamlIO, MachineConstantPoolValue &Constant) { argument
289 YamlIO.mapRequired("id", Constant.ID);
290 YamlIO.mapOptional("value", Constant.Value);
291 YamlIO.mapOptional("alignment", Constant.Alignment);
400 std::vector<MachineConstantPoolValue> Constants; /// Constant pool.
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h35 Constant.Int = i;
39 Constant.CFP = CFP;
43 Constant.CIP = CIP;
62 } Constant; member in struct:llvm::DebugLocEntry::Value
71 int64_t getInt() const { return Constant.Int; }
72 const ConstantFP *getConstantFP() const { return Constant.CFP; }
73 const ConstantInt *getConstantInt() const { return Constant.CIP; }
111 /// share the same Loc/Constant and if Next immediately follows this
163 return A.Constant.Int == B.Constant
[all...]
/external/v8/test/cctest/compiler/
H A Dtest-machine-operator-reducer.cc65 maxuint32(Constant<int32_t>(kMaxUInt32)) {
82 Node* Constant(volatile T value) { function in class:v8::internal::compiler::ReducerTester
95 CheckFoldBinop<T>(expect, Constant<T>(a), Constant<T>(b));
174 Node* k = Constant<T>(constant);
199 Node* k = Constant<T>(constant);
238 Node* zero = R.Constant<int32_t>(0);
239 Node* minus_1 = R.Constant<int32_t>(-1);
264 Node* zero = R.Constant<int32_t>(0);
265 Node* minus_1 = R.Constant<int32_
[all...]
/external/v8/test/unittests/compiler/
H A Descape-analysis-unittest.cc72 Node* Constant(int num) { function in class:v8::internal::compiler::EscapeAnalysisTest
121 graph()->NewNode(common()->Branch(), Constant(0), control_);
185 Node* object1 = Constant(1);
187 Node* allocation = Allocate(Constant(kPointerSize));
206 Node* object1 = Constant(1);
208 Node* allocation = Allocate(Constant(kPointerSize));
228 Node* object1 = Constant(1);
231 Node* allocation1 = Allocate(Constant(kPointerSize));
236 Node* allocation2 = Allocate(Constant(kPointerSize));
256 Node* object1 = Constant(
[all...]
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h439 bool isOffsetOf(Type *&STy, Constant *&FieldNo) const;
565 const SCEV *visitConstant(const SCEVConstant *Constant) { argument
566 return 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/llvm/include/llvm/Object/
H A DStackMapParser.h101 Register = 1, Direct = 2, Indirect = 3, Constant = 4, ConstantIndex = 5 member in class:llvm::StackMapV1Parser::LocationKind
121 /// Get the small-constant for this location. (Kind must be Constant).
123 assert(getKind() == LocationKind::Constant && "Not a small constant.");
/external/opencv3/modules/core/include/opencv2/core/
H A Docl.hpp328 static KernelArg Constant(const Mat& m);
329 template<typename _Tp> static KernelArg Constant(const _Tp* arr, size_t n) function in class:cv::ocl::KernelArg
/external/v8/test/cctest/
H A Dtypes-fuzz.h77 SmiConstant = Type::Constant(smi, region);
78 Signed32Constant = Type::Constant(signed32, region);
80 ObjectConstant1 = Type::Constant(object1, region);
81 ObjectConstant2 = Type::Constant(object2, region);
82 ArrayConstant = Type::Constant(array, region);
83 UninitializedConstant = Type::Constant(uninitialized, region);
92 types.push_back(Type::Constant(*it, region));
188 TypeHandle Constant(Handle<i::Object> value) { function in class:v8::internal::Types
189 return Type::Constant(value, region_);
275 return Type::Constant(value
[all...]
H A Dtest-types.cc343 void Constant() { function in struct:Tests
347 TypeHandle type = T.Constant(value);
354 TypeHandle type = T.Constant(value);
358 // Functionality & Injectivity: Constant(V1) = Constant(V2) iff V1 = V2
363 TypeHandle type1 = T.Constant(value1);
364 TypeHandle type2 = T.Constant(value2);
371 CHECK(T.Constant(fac->NewNumber(0))->Is(T.UnsignedSmall));
372 CHECK(T.Constant(fac->NewNumber(1))->Is(T.UnsignedSmall));
373 CHECK(T.Constant(fa
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_context.h226 GLuint Constant[I915_CONSTANT_SIZE]; member in struct:i915_hw_state

Completed in 6609 milliseconds

123