HomeSort by relevance Sort by last modified time
    Searched refs:constant (Results 1 - 25 of 573) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Preprocessor/
expr_multichar.c 5 #error Bad multichar constant calculation!
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
ICONSTANTVisitor.java 9 package com.vladium.jcd.cls.constant;
20 //Object visit (CONSTANT_info constant, Object ctx);
22 Object visit (CONSTANT_Class_info constant, Object ctx);
24 Object visit (CONSTANT_InterfaceMethodref_info constant, Object ctx);
25 Object visit (CONSTANT_Methodref_info constant, Object ctx);
26 Object visit (CONSTANT_Fieldref_info constant, Object ctx);
28 Object visit (CONSTANT_Double_info constant, Object ctx);
29 Object visit (CONSTANT_Float_info constant, Object ctx);
30 Object visit (CONSTANT_Integer_info constant, Object ctx);
31 Object visit (CONSTANT_Long_info constant, Object ctx)
    [all...]
CONSTANT_literal_info.java 9 package com.vladium.jcd.cls.constant;
14 * in the constant pool.
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ConstantUnion.h 51 bool operator==(const ConstantUnion& constant) const
53 if (constant.type != type)
58 if (constant.iConst == iConst)
63 if (constant.fConst == fConst)
68 if (constant.bConst == bConst)
92 bool operator!=(const ConstantUnion& constant) const
94 return !operator==(constant);
97 bool operator>(const ConstantUnion& constant) const
99 assert(type == constant.type);
102 if (iConst > constant.iConst
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
TestingWeighers.java 25 * Returns a {@link Weigher} that returns the given {@code constant} for every request.
27 static Weigher<Object, Object> constantWeigher(int constant) {
28 return new ConstantWeigher(constant);
46 private final int constant; field in class:TestingWeighers.ConstantWeigher
48 ConstantWeigher(int constant) {
49 this.constant = constant;
54 return constant;
  /external/skia/legacy/src/animator/
SkDisplayNumber.cpp 35 SkScalar constant; local
38 constant = SK_ScalarMax;
41 constant = SK_ScalarMin;
44 constant = -SK_ScalarInfinity;
47 constant = SK_ScalarNaN;
50 constant = SK_ScalarInfinity;
56 value->fOperand.fScalar = constant;
  /external/skia/src/animator/
SkDisplayNumber.cpp 37 // (warning C4756: overflow in constant arithmetic)
42 SkScalar constant; local
45 constant = SK_ScalarMax;
48 constant = SK_ScalarMin;
51 constant = -SK_ScalarInfinity;
54 constant = SK_ScalarNaN;
57 constant = SK_ScalarInfinity;
63 value->fOperand.fScalar = constant;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CstInsn.java 21 import com.android.dexgen.rop.cst.Constant;
24 * Instruction which has a single constant argument in addition
28 /** {@code non-null;} the constant argument for this instruction */
29 private final Constant constant; field in class:CstInsn
32 * {@code >= -1;} the constant pool index for {@link #constant}, or
38 * {@code >= -1;} the constant pool index for the class reference in
39 * {@link #constant} if any, or {@code -1} if not yet set
45 * initially unknown ({@code -1}) as is the constant pool index
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CstInsn.java 21 import com.android.dx.rop.cst.Constant;
24 * Instruction which has a single constant argument in addition
28 /** {@code non-null;} the constant argument for this instruction */
29 private final Constant constant; field in class:CstInsn
32 * {@code >= -1;} the constant pool index for {@link #constant}, or
38 * {@code >= -1;} the constant pool index for the class reference in
39 * {@link #constant} if any, or {@code -1} if not yet set
45 * initially unknown ({@code -1}) as is the constant pool index
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
CstInsn.java 21 import com.android.dx.rop.cst.Constant;
24 * Instruction which has a single constant argument in addition
28 /** {@code non-null;} the constant argument for this instruction */
29 private final Constant constant; field in class:CstInsn
32 * {@code >= -1;} the constant pool index for {@link #constant}, or
38 * {@code >= -1;} the constant pool index for the class reference in
39 * {@link #constant} if any, or {@code -1} if not yet set
45 * initially unknown ({@code -1}) as is the constant pool index
    [all...]
  /external/proguard/src/proguard/classfile/visitor/
ClassForNameClassVisitor.java 24 import proguard.classfile.constant.*;
25 import proguard.classfile.constant.visitor.ConstantVisitor;
31 * constant classes involved in any <code>Class.forName</code> constructs that
58 public void visitAnyConstant(Clazz clazz, Constant constant) {}
  /external/proguard/src/proguard/classfile/constant/
Constant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
32 public abstract class Constant implements VisitorAccepter
46 * Returns the constant pool info tag that specifies the entry type.
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.
FieldrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a field reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
60 // 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.
InterfaceMethodrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a interface method reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
60 // 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.
MethodrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a method reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
60 // Implementations for Constant.
  /libcore/benchmarks/src/benchmarks/
AdditionBenchmark.java 36 int constant = 123; local
38 result += constant;
51 long constant = 123L; local
53 result += constant;
66 float constant = 123.0f; local
68 result += constant;
81 double constant = 123.0; local
83 result += constant;
  /external/emma/core/java12/com/vladium/jcd/cls/
IConstantCollection.java 11 import com.vladium.jcd.cls.constant.*;
16 * An abstraction of constant pool in .class format. This interface disallows
56 CONSTANT_info set (CONSTANT_info constant);
62 * A simple interface to express custom semantics of constant equality.
68 boolean equals (CONSTANT_info constant);
83 * @param index constant pool index [must be in [1, size()] range]
84 * @return CONSTANT_info constant pool entry at this index [never null]
103 * Searches the pool for a matching constant of given type with equality
148 * Appends 'constant' to the end of the collection. No duplicate checks
151 * @param constant new constant [may not be null; input unchecked
    [all...]
ConstantCollection.java 15 import com.vladium.jcd.cls.constant.*;
36 throw new IllegalStateException ("assertion failure: dereferencing an invalid constant pool slot " + index);
53 final CONSTANT_info constant = (CONSTANT_info) m_constants.get (i); local
55 if ((constant != null) && (constant.tag () == type) && comparator.equals (constant))
98 final CONSTANT_info constant = (CONSTANT_info) m_constants.get (c); local
99 _clone.m_constants.add (constant == null ? null : constant.clone ());
136 public CONSTANT_info set (final int index, final CONSTANT_info constant)
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
SimpleInstruction.java 29 * or constant pool references.
35 public int constant; field in class:SimpleInstruction
54 * Creates a new SimpleInstruction with the given opcode and constant.
56 public SimpleInstruction(byte opcode, int constant)
59 this.constant = constant;
71 this.constant = simpleInstruction.constant;
78 * Return the embedded constant of the given opcode, or 0 if the opcode
155 opcode = (byte)(InstructionConstants.OP_ICONST_0 + constant);
    [all...]
  /external/proguard/src/proguard/classfile/editor/
ConstantPoolEditor.java 24 import proguard.classfile.constant.*;
27 * This class can add constant pool entries to a given class.
49 * Finds or creates a IntegerConstant constant pool entry with the given
51 * @return the constant pool index of the Utf8Constant.
56 Constant[] constantPool = targetClass.constantPool;
61 Constant constant = constantPool[index]; local
63 if (constant != null &&
64 constant.getTag() == ClassConstants.CONSTANT_Integer)
66 IntegerConstant integerConstant = (IntegerConstant)constant;
90 Constant constant = constantPool[index]; local
120 Constant constant = constantPool[index]; local
150 Constant constant = constantPool[index]; local
182 Constant constant = constantPool[index]; local
287 Constant constant = constantPool[index]; local
394 Constant constant = constantPool[index]; local
501 Constant constant = constantPool[index]; local
546 Constant constant = constantPool[index]; local
579 Constant constant = constantPool[index]; local
610 Constant constant = constantPool[index]; local
    [all...]
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_collision_shapes_PlaneCollisionShape.cpp 50 (JNIEnv * env, jobject object, jobject normal, jfloat constant) {
54 btStaticPlaneShape* shape = new btStaticPlaneShape(norm, constant);

Completed in 589 milliseconds

1 2 3 4 5 6 7 8 91011>>