HomeSort by relevance Sort by last modified time
    Searched refs:Constant (Results 26 - 50 of 947) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
CstInsn.java 19 import com.android.dx.rop.cst.Constant;
22 * Instruction which contains an explicit reference to a constant.
26 /** {@code non-null;} the constant */
27 private final Constant cst;
36 * @param cst {@code non-null;} constant
39 RegisterSpecList sources, Constant cst) {
56 * Gets the constant.
58 * @return {@code non-null;} the constant
60 public Constant getConstant() {
FillArrayDataInsn.java 19 import com.android.dx.rop.cst.Constant;
28 * constant values.
34 private final ArrayList<Constant> initValues;
40 private final Constant arrayType;
53 ArrayList<Constant> initValues,
54 Constant cst) {
76 public ArrayList<Constant> getInitValues() {
84 public Constant getConstant() {
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/
RuleSetFactory.java 50 case Constant.JCL_TO_SLF4J:
52 case Constant.LOG4J_TO_SLF4J:
54 case Constant.JUL_TO_SLF4J:
56 case Constant.NOP_TO_SLF4J:
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
StdConstantPool.java 25 * an array of {@link Constant} objects and can be made immutable.
30 private final Constant[] entries;
37 * always at least one more than the actual size of the constant pool,
47 entries = new Constant[size];
56 public Constant getOrNull(int n) {
66 public Constant get0Ok(int n) {
75 public Constant get(int n) {
77 Constant result = entries[n];
94 * @param cst {@code null-ok;} the constant to store
96 public void set(int n, Constant cst)
    [all...]
CstArray.java 23 * Constant type to represent a fixed array of other constants. The contents
26 public final class CstArray extends Constant {
63 protected int compareTo0(Constant other) {
100 * List of {@link Constant} instances.
121 Constant thisItem = (Constant) get0(i);
122 Constant otherItem = (Constant) other.get0(i);
146 public Constant get(int n) {
147 return (Constant) get0(n)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstArray.java 22 * Constant type to represent a fixed array of other constants.
24 public final class CstArray extends Constant {
61 protected int compareTo0(Constant other) {
98 * List of {@link Constant} instances.
119 Constant thisItem = (Constant) get0(i);
120 Constant otherItem = (Constant) other.get0(i);
144 public Constant get(int n) {
145 return (Constant) get0(n)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
StdConstantPool.java 25 * an array of {@link Constant} objects and can be made immutable.
30 private final Constant[] entries;
37 * always at least one more than the actual size of the constant pool,
47 entries = new Constant[size];
56 public Constant getOrNull(int n) {
66 public Constant get0Ok(int n) {
75 public Constant get(int n) {
77 Constant result = entries[n];
94 * @param cst {@code null-ok;} the constant to store
96 public void set(int n, Constant cst)
    [all...]
CstArray.java 23 * Constant type to represent a fixed array of other constants.
25 public final class CstArray extends Constant {
62 protected int compareTo0(Constant other) {
99 * List of {@link Constant} instances.
120 Constant thisItem = (Constant) get0(i);
121 Constant otherItem = (Constant) other.get0(i);
145 public Constant get(int n) {
146 return (Constant) get0(n)
    [all...]
  /external/llvm/include/llvm/IR/
GlobalVariable.h 11 // represents a single global variable (or constant) in the VM.
13 // Global variables are constant pointers that refer to hunks of space that are
31 class Constant;
42 bool isConstantGlobal : 1; // Is this a global constant?
56 Constant *Initializer = nullptr, const Twine &Name = "",
62 LinkageTypes Linkage, Constant *Initializer,
121 inline const Constant *getInitializer() const {
123 return static_cast<Constant*>(Op<0>().get());
125 inline Constant *getInitializer() {
127 return static_cast<Constant*>(Op<0>().get())
    [all...]
GlobalAlias.h 36 const Twine &Name, Constant *Aliasee, Module *Parent);
48 Constant *Aliasee, Module *Parent);
68 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Constant);
81 void setAliasee(Constant *Aliasee);
82 const Constant *getAliasee() const {
85 Constant *getAliasee() {
120 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GlobalAlias, Constant)
  /frameworks/base/core/java/android/os/health/
PackageHealthStats.java 33 @HealthKeys.Constant(type=HealthKeys.TYPE_STATS)
42 @HealthKeys.Constant(type=HealthKeys.TYPE_MEASUREMENTS)
ServiceHealthStats.java 34 @HealthKeys.Constant(type=HealthKeys.TYPE_MEASUREMENT)
43 @HealthKeys.Constant(type=HealthKeys.TYPE_MEASUREMENT)
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
FillArrayDataInsn.java 19 import com.android.dexgen.rop.cst.Constant;
28 * constant values.
34 private final ArrayList<Constant> initValues;
40 private final Constant arrayType;
53 ArrayList<Constant> initValues,
54 Constant cst) {
76 public ArrayList<Constant> getInitValues() {
84 public Constant getConstant() {
  /dalvik/dx/src/com/android/dx/rop/code/
FillArrayDataInsn.java 19 import com.android.dx.rop.cst.Constant;
27 * constant values.
33 private final ArrayList<Constant> initValues;
39 private final Constant arrayType;
52 ArrayList<Constant> initValues,
53 Constant cst) {
75 public ArrayList<Constant> getInitValues() {
83 public Constant getConstant() {
  /external/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 70 Constant *get(ARCRuntimeEntryPointKind kind) {
106 Constant *AutoreleaseRV;
108 Constant *Release;
110 Constant *Retain;
112 Constant *RetainBlock;
114 Constant *Autorelease;
116 Constant *StoreStrong;
118 Constant *RetainRV;
120 Constant *RetainAutorelease;
122 Constant *RetainAutoreleaseRV
    [all...]
  /external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/
ProjectConverterTest.java 29 import org.slf4j.migrator.Constant;
41 ProjectConverter pc = new ProjectConverter(Constant.LOG4J_TO_SLF4J, new NopProgressListener());
  /external/llvm/lib/IR/
Constants.cpp 1 //===-- Constants.cpp - Implement Constant nodes --------------------------===//
10 // This file implements the Constant* classes.
40 // Constant Class
43 void Constant::anchor() { }
45 bool Constant::isNegativeZeroValue() const {
69 // Return true iff this constant is positive zero (floating point), negative
71 bool Constant::isZeroValue() const {
91 bool Constant::isNullValue() const {
100 // constant zero is zero for aggregates, cpnull is null for pointers, none for
106 bool Constant::isAllOnesValue() const
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.h 39 class Constant;
115 llvm::Constant *objc_autoreleasePoolPop;
118 llvm::Constant *objc_autoreleasePoolPush;
121 llvm::Constant *objc_autorelease;
124 llvm::Constant *objc_autoreleaseReturnValue;
127 llvm::Constant *objc_copyWeak;
130 llvm::Constant *objc_destroyWeak;
133 llvm::Constant *objc_initWeak;
136 llvm::Constant *objc_loadWeak;
139 llvm::Constant *objc_loadWeakRetained
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 31 /// \brief A single location or constant.
35 Constant.Int = i;
39 Constant.CFP = CFP;
43 Constant.CIP = CIP;
57 /// Either a constant,
62 } Constant;
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 thi
    [all...]
  /external/clang/test/Sema/
format-strings-enum-fixed-type.cpp 13 typedef enum : short { Constant = 0 } TestEnum;
14 // Note that in C (and Objective-C), the type of 'Constant' is 'short'.
20 printf("%hhd", Constant); // expected-warning{{format specifies type 'char'}}
23 printf("%hd", Constant); // no-warning
27 printf("%d", Constant); // no-warning
30 printf("%lld", Constant); // expected-warning{{format specifies type 'long long'}}
  /external/llvm/include/llvm/Analysis/
LazyValueInfo.h 22 class Constant;
51 /// Determine whether the specified value comparison with a constant is known
54 Tristate getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
58 /// Determine whether the specified value comparison with a constant is known
61 Tristate getPredicateAt(unsigned Pred, Value *V, Constant *C,
65 /// constant at the end of the specified block. Return null if not.
66 Constant *getConstant(Value *V, BasicBlock *BB, Instruction *CxtI = nullptr);
69 /// constant on the specified edge. Return null if not.
70 Constant *getConstantOnEdge(Value *V, BasicBlock *FromBB, BasicBlock *ToBB,
  /external/proguard/src/proguard/classfile/editor/
ConstantPoolSorter.java 24 import proguard.classfile.constant.Constant;
31 * This ClassVisitor sorts the constant pool entries of the program classes
32 * that it visits. The sorting order is based on the types of the constant pool
43 private Constant[] newConstantPool = new Constant[ClassConstants.TYPICAL_CONSTANT_POOL_SIZE];
54 // Sort the constant pool and set up an index map.
59 newConstantPool = new Constant[constantPoolCount];
66 Constant constant = programClass.constantPool[oldIndex] local
92 Constant constant = comparableConstant.getConstant(); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
HeaderSection.java 19 import com.android.dexgen.rop.cst.Constant;
48 public IndexedItem get(Constant cst) {
  /dalvik/dx/src/com/android/dx/dex/file/
HeaderSection.java 19 import com.android.dx.rop.cst.Constant;
47 public IndexedItem get(Constant cst) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
HeaderSection.java 19 import com.android.dx.rop.cst.Constant;
48 public IndexedItem get(Constant cst) {

Completed in 944 milliseconds

12 3 4 5 6 7 8 91011>>