HomeSort by relevance Sort by last modified time
    Searched defs:constant (Results 51 - 75 of 195) sorted by null

1 23 4 5 6 7 8

  /external/proguard/src/proguard/classfile/io/
LibraryClassReader.java 24 import proguard.classfile.constant.*;
25 import proguard.classfile.constant.visitor.ConstantVisitor;
52 private Constant[] constantPool;
91 // Read the constant pool. Note that the first entry is not used.
94 // Create the constant pool array.
95 constantPool = new Constant[u2constantPoolCount];
99 Constant constant = createConstant(); local
100 constant.accept(libraryClass, this);
102 int tag = constant.getTag()
    [all...]
ProgramClassReader.java 30 import proguard.classfile.constant.*;
31 import proguard.classfile.constant.visitor.ConstantVisitor;
89 // Read the constant pool. Note that the first entry is not used.
92 programClass.constantPool = new Constant[programClass.u2constantPoolCount];
95 Constant constant = createConstant(); local
96 constant.accept(programClass, this);
97 programClass.constantPool[index] = constant;
100 // constant pool.
101 int tag = constant.getTag()
    [all...]
  /external/clang/test/SemaCXX/
cxx11-user-defined-literals.cpp 123 template<typename T, T v> struct constant { constexpr static T value = v; }; struct
125 return constant<unsigned, hash<Cs...>(0)>::value;
  /external/dexmaker/src/main/java/com/google/dexmaker/
TypeId.java 88 final CstType constant; field in class:TypeId
100 this.constant = CstType.intern(ropType);
  /external/emma/core/java12/com/vladium/jcd/cls/
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/guava/guava/src/com/google/common/base/
Functions.java 272 * @param value the constant value for the function to return
275 public static <E> Function<Object, E> constant(@Nullable E value) { method in class:Functions
304 return "constant(" + value + ")";
  /external/mesa3d/src/glsl/
ir_constant_expression.cpp 26 * Evaluate and process constant valued expressions
28 * In GLSL, constant valued expressions are used in several places. These
822 /* texture lookups aren't constant expressions */
864 * not the lifetime constant value of the uniform.
891 /* Offset in the constant matrix to the first element of the column
963 * cannot be used to form constant expressions."
970 /* Check if all parameters are constant */
973 ir_constant *constant = ((ir_rvalue *) n)->constant_expression_value(); local
974 if (constant == NULL)
977 op[num_parameters] = constant;
    [all...]
opt_constant_propagation.cpp 5 * constant of this software and associated documentation files (the "Software"),
7 * the rights to use, constant, modify, merge, publish, distribute, sublicense,
28 * usage of those constant channels with direct usage of the constants.
30 * This can lead to constant folding and algebraic optimizations in
33 * constant push buffer or as instruction immediate values) and
47 acp_entry(ir_variable *var, unsigned write_mask, ir_constant *constant)
50 assert(constant);
53 this->constant = constant;
57 ir_constant *constant; member in class:acp_entry
411 ir_constant *constant = ir->rhs->as_constant(); local
    [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...]
MemberReferenceFixer.java 28 import proguard.classfile.constant.*;
29 import proguard.classfile.constant.visitor.ConstantVisitor;
34 * This ClassVisitor fixes constant pool field and method references to fields
67 // Fix the constant pool entries.
70 Constant constant = programClass.constantPool[index]; local
71 if (constant != null)
76 constant.accept(programClass, this);
91 public void visitAnyConstant(Clazz clazz, Constant constant) {}
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
ConstantInstruction.java 25 import proguard.classfile.constant.*;
26 import proguard.classfile.constant.visitor.ConstantVisitor;
32 * constant pool.
40 public int constant; field in class:ConstantInstruction
55 * Creates a new ConstantInstruction with the given opcode and constant pool
65 * Creates a new ConstantInstruction with the given opcode, constant pool
66 * index, and constant.
68 public ConstantInstruction(byte opcode, int constantIndex, int constant)
72 this.constant = constant;
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Plane.java 40 * <code>Plane</code> defines a plane where Normal dot (x,y,z) = Constant.
67 * Constant of the plane. See formula in class definition.
69 protected float constant; field in class:Plane
73 * default object and contains a normal of (0,0,0) and a constant of 0.
80 * and constant values are set at creation.
84 * @param constant
85 * the constant of the plane.
87 public Plane(Vector3f normal, float constant) {
93 this.constant = constant;
    [all...]
  /external/proguard/src/proguard/classfile/constant/
Utf8Constant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
29 * This Constant represents a UTF-8 constant in the constant pool.
33 public class Utf8Constant extends Constant
139 // Implementations for Constant.
  /external/proguard/src/proguard/shrink/
ClassShrinker.java 28 import proguard.classfile.constant.*;
34 * This ClassVisitor removes constant pool entries and class members that
71 // Shrink the arrays for constant pool, interfaces, fields, methods,
78 // Shrinking the constant pool also sets up an index map.
96 // and remap their references to the constant pool.
101 // Remap all constant pool references.
319 * constant pool.
322 private int shrinkConstantPool(Constant[] constantPool, int length)
332 // Shift the used constant pool entries together.
337 Constant constant = constantPool[index] local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
c-pretty-print.h 82 c_pretty_print_fn constant; member in struct:c_pretty_print_info
133 pp_c_base (PP)->constant (pp_c_base (PP), E)
tree-ssa-sccvn.h 105 tree constant; member in struct:vn_constant_s
108 /* Hash the constant CONSTANT with distinguishing type incompatible
112 vn_hash_constant_with_type (tree constant)
114 tree type = TREE_TYPE (constant);
115 return (iterative_hash_expr (constant, 0)
133 /* Value number. This may be an SSA name or a constant. */
135 /* Representative expression, if not a direct constant. */
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 83 c_pretty_print_fn constant; member in struct:c_pretty_print_info
134 pp_c_base (PP)->constant (pp_c_base (PP), E)
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 75 /* Constant offset this op adds or -1 if it is variable. */
112 tree constant; member in struct:vn_constant_s
115 /* Hash the constant CONSTANT with distinguishing type incompatible
119 vn_hash_constant_with_type (tree constant)
121 tree type = TREE_TYPE (constant);
122 return (iterative_hash_expr (constant, 0)
140 /* Value number. This may be an SSA name or a constant. */
142 /* Representative expression, if not a direct constant. */
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 83 c_pretty_print_fn constant; member in struct:c_pretty_print_info
134 pp_c_base (PP)->constant (pp_c_base (PP), E)
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 75 /* Constant offset this op adds or -1 if it is variable. */
112 tree constant; member in struct:vn_constant_s
115 /* Hash the constant CONSTANT with distinguishing type incompatible
119 vn_hash_constant_with_type (tree constant)
121 tree type = TREE_TYPE (constant);
122 return (iterative_hash_expr (constant, 0)
140 /* Value number. This may be an SSA name or a constant. */
142 /* Representative expression, if not a direct constant. */
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 83 c_pretty_print_fn constant; member in struct:c_pretty_print_info
134 pp_c_base (PP)->constant (pp_c_base (PP), E)
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 75 /* Constant offset this op adds or -1 if it is variable. */
112 tree constant; member in struct:vn_constant_s
115 /* Hash the constant CONSTANT with distinguishing type incompatible
119 vn_hash_constant_with_type (tree constant)
121 tree type = TREE_TYPE (constant);
122 return (iterative_hash_expr (constant, 0)
140 /* Value number. This may be an SSA name or a constant. */
142 /* Representative expression, if not a direct constant. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
timex.h 42 long int constant; /* pll time constant */ member in struct:timex
69 #define ADJ_TIMECONST 0x0020 /* pll time constant */
114 /* Maximum time constant of the PLL. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
timex.h 42 long int constant; /* pll time constant */ member in struct:timex
69 #define ADJ_TIMECONST 0x0020 /* pll time constant */
114 /* Maximum time constant of the PLL. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
timex.h 42 long int constant; /* pll time constant */ member in struct:timex
69 #define ADJ_TIMECONST 0x0020 /* pll time constant */
114 /* Maximum time constant of the PLL. */

Completed in 3204 milliseconds

1 23 4 5 6 7 8