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

1 2 34 5 6 7 8 91011>>

  /external/clang/lib/CodeGen/
CGExprConstant.cpp 1 //===--- CGExprConstant.cpp - Emit LLVM Code from Constant Expressions ----===//
10 // This contains code to emit Constant Expr nodes as LLVM code.
44 SmallVector<llvm::Constant *, 32> Elements;
46 static llvm::Constant *BuildStruct(CodeGenModule &CGM, CodeGenFunction *CFG,
50 static llvm::Constant *BuildStruct(CodeGenModule &CGM, CodeGenFunction *CGF,
52 static llvm::Constant *BuildStruct(CodeGenModule &CGM, CodeGenFunction *CGF,
62 llvm::Constant *InitExpr);
64 void AppendBytes(CharUnits FieldOffsetInChars, llvm::Constant *InitCst);
80 llvm::Constant *Finalize(QualType Ty);
82 CharUnits getAlignment(const llvm::Constant *C) const
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java 39 private final ArrayList<Constant> values;
41 /** non-null: type of constant that initializes the array */
42 private final Constant arrayType;
60 ArrayList<Constant> values,
61 Constant arrayType) {
93 throw new IllegalArgumentException("Unexpected constant type");
122 Constant cst = values.get(i);
129 Constant cst = values.get(i);
136 Constant cst = values.get(i);
143 Constant cst = values.get(i)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstAnnotation.java 22 * Constant type that represents an annotation.
24 public final class CstAnnotation extends Constant {
61 protected int compareTo0(Constant other) {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstAnnotation.java 22 * Constant type that represents an annotation.
24 public final class CstAnnotation extends Constant {
61 protected int compareTo0(Constant other) {
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3-nodeduct.cpp 9 template<typename T, T* Address> struct Constant { };
10 Constant<void(int), &f<int> > constant0;
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
ArrayData.java 39 private final ArrayList<Constant> values;
41 /** non-null: type of constant that initializes the array */
42 private final Constant arrayType;
60 ArrayList<Constant> values,
61 Constant arrayType) {
93 throw new IllegalArgumentException("Unexpected constant type");
122 Constant cst = values.get(i);
129 Constant cst = values.get(i);
136 Constant cst = values.get(i);
143 Constant cst = values.get(i)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstAnnotation.java 22 * Constant type that represents an annotation.
24 public final class CstAnnotation extends Constant {
61 protected int compareTo0(Constant other) {
  /external/llvm/include/llvm/AsmParser/
Parser.h 21 class Constant;
83 /// Parse a type and a constant value in the given string.
85 /// The constant value can be any LLVM constant, including a constant
91 Constant *parseConstantValue(StringRef Asm, SMDiagnostic &Err, const Module &M,
  /external/llvm/include/llvm/Transforms/Utils/
ModuleUtils.h 27 class Constant;
52 Function *checkSanitizerInterfaceFunction(Constant *FuncOrBitcast);
  /external/llvm/lib/Target/Mips/
MipsTargetObjectFile.h 38 /// Return true if this constant should be placed into small data section.
39 bool IsConstantInSmallSection(const DataLayout &DL, const Constant *CN,
43 const Constant *C) const override;
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 31 SmallVector<Constant *, 16> CurrentCtors;
38 if (Constant *Init = GVCtor->getInitializer()) {
42 CurrentCtors.push_back(cast<Constant>(Init->getOperand(i)));
52 Constant *CSVals[3];
57 CSVals[2] = llvm::Constant::getNullValue(IRB.getInt8PtrTy());
58 Constant *RuntimeCtorInit =
65 Constant *NewInit = ConstantArray::get(AT, CurrentCtors);
98 Function *llvm::checkSanitizerInterfaceFunction(Constant *FuncOrBitcast) {
  /external/proguard/src/proguard/classfile/constant/visitor/
ConstantTagFilter.java 21 package proguard.classfile.constant.visitor;
24 import proguard.classfile.constant.Constant;
79 public void visitAnyConstant(Clazz clazz, Constant constant)
81 if (((1 << constant.getTag()) & constantTagMask) != 0)
83 constant.accept(clazz, constantVisitor);
MethodrefTraveler.java 21 package proguard.classfile.constant.visitor;
24 import proguard.classfile.constant.*;
29 * to their methodref constants, and applies a given constant visitor.
41 * Creates a new v that will delegate to the given constant visitor.
51 public void visitAnyConstant(Clazz clazz, Constant constant) {}
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
PlainInsn.java 19 import com.android.dexgen.rop.cst.Constant;
112 Constant cst = (Constant) lastType;
119 getResult(), newSources, (Constant)lastType);
  /external/eigen/doc/examples/
Tutorial_BlockOperations_block_assignment.cpp 12 Array44f a = Array44f::Constant(0.6);
  /external/llvm/include/llvm/CodeGen/
MachineConstantPool.h 1 //===-- CodeGen/MachineConstantPool.h - Abstract Constant Pool --*- C++ -*-===//
12 /// constant pool to keep track of constants referenced by a function.
27 class Constant;
66 /// the constant pool.
70 /// The constant itself.
72 const Constant *ConstVal;
80 MachineConstantPoolEntry(const Constant *V, unsigned A)
92 /// Constant.
116 /// Instructions reference the address of these constant pool constants through
119 /// address of the function constant pool values
    [all...]
  /external/llvm/include/llvm/IR/
MDBuilder.h 27 class Constant;
41 /// \brief Return the given constant as metadata.
42 ConstantAsMetadata *createConstant(Constant *C);
77 MDNode *createRange(Constant *Lo, Constant *Hi);
  /external/proguard/src/proguard/classfile/constant/
DoubleConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a double constant in the constant pool.
31 public class DoubleConstant extends Constant
71 // Implementations for Constant.
FloatConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a float constant in the constant pool.
31 public class FloatConstant extends Constant
71 // Implementations for Constant.
IntegerConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a integer constant in the constant pool.
31 public class IntegerConstant extends Constant
71 // Implementations for Constant.
LongConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a long constant in the constant pool.
31 public class LongConstant extends Constant
71 // Implementations for Constant.
  /dalvik/dx/src/com/android/dx/cf/code/
Machine.java 20 import com.android.dx.rop.cst.Constant;
158 * argument, with the value based on the given constant.
161 * constant auxiliary arguments.</p>
163 * @param cst {@code non-null;} the constant containing / referencing
166 public void auxCstArg(Constant cst);
192 * @param initValues {@code non-null;} the list of constant values to initialize
195 public void auxInitValues(ArrayList<Constant> initValues);
  /dalvik/dx/src/com/android/dx/rop/code/
ThrowingCstInsn.java 19 import com.android.dx.rop.cst.Constant;
25 * Instruction which contains an explicit reference to a constant
40 * @param cst {@code non-null;} the constant
44 TypeList catches, Constant cst) {
61 Constant cst = getConstant();
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
ThrowingCstInsn.java 19 import com.android.dx.rop.cst.Constant;
25 * Instruction which contains an explicit reference to a constant
40 * @param cst {@code non-null;} the constant
44 TypeList catches, Constant cst) {
61 Constant cst = getConstant();
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
UnicodeLabel.java 46 public static class Constant extends UnicodeLabel {
48 public Constant(String value) {
59 public static final UnicodeLabel NULL = new Constant("");

Completed in 6268 milliseconds

1 2 34 5 6 7 8 91011>>