Searched refs:constant (Results 51 - 75 of 546) sorted by relevance

1234567891011>>

/external/mesa3d/src/glsl/tests/lower_jumps/
H A Dlower_returns_sub_false.opt_test11 ((if (expression bool > (var_ref a) (constant float (0.000000)))
12 ((if (expression bool > (var_ref b) (constant float (0.000000)))
H A Dlower_returns_sub_true.opt_test11 ((if (expression bool > (var_ref a) (constant float (0.000000)))
12 ((if (expression bool > (var_ref b) (constant float (0.000000)))
H A Dreturn_void_at_end_of_loop_lower_nothing.opt_test12 ((assign (x) (var_ref a) (constant float (1.000000))) (return)))
13 (assign (x) (var_ref b) (constant float (2.000000)))))))
H A Dreturn_void_at_end_of_loop_lower_return.opt_test12 ((assign (x) (var_ref a) (constant float (1.000000))) (return)))
13 (assign (x) (var_ref b) (constant float (2.000000)))))))
H A Dreturn_void_at_end_of_loop_lower_return_and_break.opt_test12 ((assign (x) (var_ref a) (constant float (1.000000))) (return)))
13 (assign (x) (var_ref b) (constant float (2.000000)))))))
H A Dlower_breaks_1.opt_test12 ((assign (x) (var_ref a) (constant float (1.000000))) break))))))
H A Dlower_returns_1.opt_test11 ((assign (x) (var_ref a) (constant float (1.000000))) (return)))))
H A Dremove_continue_at_end_of_loop.opt_test12 ((assign (x) (var_ref a) (constant float (1.000000))) continue))))))
/external/proguard/src/proguard/classfile/editor/
H A DConstantPoolEditor.java24 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.
61 Constant constant = constantPool[index];
63 if (constant != null &&
64 constant.getTag() == ClassConstants.CONSTANT_Integer)
66 IntegerConstant integerConstant = (IntegerConstant)constant;
79 * Finds or creates a LongConstant constant pool entry with the given value.
80 * @return the constant poo
748 addConstant(Constant constant) argument
[all...]
/external/proguard/src/proguard/classfile/constant/
H A DConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
46 * Returns the constant pool info tag that specifies the entry type.
H A DDoubleConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a double constant in the constant pool.
H A DFieldrefConstant.java21 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.
H A DFloatConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a float constant in the constant pool.
H A DIntegerConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a integer constant in the constant pool.
H A DInterfaceMethodrefConstant.java21 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.
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIConstantCollection.java11 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); argument
62 * A simple interface to express custom semantics of constant equality.
68 boolean equals (CONSTANT_info constant); argument
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 ne
154 add(CONSTANT_info constant) argument
172 set(int index, CONSTANT_info constant) argument
[all...]
H A DConstantCollection.java15 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);
55 if ((constant != null) && (constant.tag () == type) && comparator.equals (constant))
98 final CONSTANT_info constant = (CONSTANT_info) m_constants.get (c);
99 _clone.m_constants.add (constant == null ? null : constant.clone ());
136 public CONSTANT_info set (final int index, final CONSTANT_info constant) argument
170 add(final CONSTANT_info constant) argument
229 set(final CONSTANT_info constant) argument
[all...]
/external/proguard/src/proguard/classfile/constant/visitor/
H A DConstantTagFilter.java21 package proguard.classfile.constant.visitor;
24 import proguard.classfile.constant.*;
79 public void visitAnyConstant(Clazz clazz, Constant constant) argument
81 if (((1 << constant.getTag()) & constantTagMask) != 0)
83 constant.accept(clazz, constantVisitor);
H A DMethodrefTraveler.java21 package proguard.classfile.constant.visitor;
25 import proguard.classfile.constant.*;
30 * to their methodref constants, and applies a given constant visitor.
42 * Creates a new v that will delegate to the given constant visitor.
52 public void visitAnyConstant(Clazz clazz, Constant constant) {} argument
/external/proguard/src/proguard/classfile/instruction/
H A DSimpleInstruction.java29 * 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) argument
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/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
H A Dlower_breaks_1.opt_test12 ((assign (x) (var_ref a) (constant float (1.000000))) break))))))
H A Dlower_returns_1.opt_test11 ((assign (x) (var_ref a) (constant float (1.000000))) (return)))))
H A Dremove_continue_at_end_of_loop.opt_test12 ((assign (x) (var_ref a) (constant float (1.000000))) continue))))))
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/
H A Dinteger-warn.asm1 ; Tests warnings with integer constant handling (for output, not parsing)
H A Dinteger.asm1 ; Tests integer constant handling (for output, not parsing)

Completed in 995 milliseconds

1234567891011>>