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

1 2 3 45 6 7 8 91011>>

  /external/proguard/src/proguard/shrink/
InnerUsageMarker.java 26 import proguard.classfile.constant.*;
27 import proguard.classfile.constant.visitor.ConstantVisitor;
125 // Is the class constant marked as being used?
135 // Mark the class constant and its Utf8 constant.
167 * Marks the given constant pool entry of the given class. This includes
168 * visiting any other referenced constant pool entries.
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...]
AnnotationUsageMarker.java 28 import proguard.classfile.constant.*;
29 import proguard.classfile.constant.visitor.ConstantVisitor;
264 public void visitAnyConstant(Clazz clazz, Constant constant)
266 usageMarker.markAsUsed(constant);
274 // Is the class constant marked as being used?
284 // Mark the class constant and its Utf8 constant.
350 * Marks the specified constant pool entry.
  /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...]
  /external/v8/test/mjsunit/regress/
regress-406.js 28 // Test of constant folding of boolean-valued expressions.
35 // The and and or truth tables with both operands constant.
46 // Same with just the left operand constant.
47 // Helper function to prevent simple constant folding.
60 // Same with just the right operand constant.
  /external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/
TocUpdator.pm 22 use constant TUT_TOKENTYPE_START => 0;
23 use constant TUT_TOKENTYPE_END => 1;
24 use constant TUT_TOKENTYPE_TEXT => 2;
25 use constant TUT_TOKENTYPE_COMMENT => 3;
27 use constant MODE_DO_NOTHING => 0; # 0b00
28 use constant MODE_DO_INSERT => 1; # 0b01
29 use constant MODE_DO_UPDATE => 3; # 0b11
TocInsertor.pm 27 use constant TIP_PREPOSITION_REPLACE => 'replace';
28 use constant TIP_PREPOSITION_BEFORE => 'before';
29 use constant TIP_PREPOSITION_AFTER => 'after';
31 use constant TIP_TOKEN_ID => 0;
32 use constant TIP_PREPOSITION => 1;
33 use constant TIP_INCLUDE_ATTRIBUTES => 2;
34 use constant TIP_EXCLUDE_ATTRIBUTES => 3;
35 use constant TIP_TOC => 4;
37 use constant MODE_DO_NOTHING => 0; # 0b00
38 use constant MODE_DO_INSERT => 1; # 0b0
    [all...]
  /cts/tools/dasm/src/dasm/
DAsm.java 41 import com.android.dx.rop.cst.Constant;
680 Constant constant = new CstString(v2); local
683 constant);
703 Constant constant = CstType.intern(type); local
706 constant);
735 Constant constant; local
746 constant = CstType.intern(type)
809 Constant constant; local
911 Constant constant; local
1038 Constant constant = new CstFieldRef(CstType.intern(Type local
1065 Constant constant = CstType.intern(type); local
1110 Constant constant = new CstFieldRef(CstType.intern(Type local
1156 Constant constant = CstType.intern(type); local
1250 Constant constant = CstInteger.make(v3); local
1299 Constant constant; local
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
InstructionSequenceReplacer.java 25 import proguard.classfile.constant.Constant;
26 import proguard.classfile.constant.visitor.ConstantVisitor;
69 public InstructionSequenceReplacer(Constant[] patternConstants,
96 public InstructionSequenceReplacer(Constant[] patternConstants,
227 instructionSequenceMatcher.matchedArgument(simpleInstruction.constant));
236 instructionSequenceMatcher.matchedArgument(variableInstruction.constant));
245 instructionSequenceMatcher.matchedArgument(constantInstruction.constant));
InstructionSequencesReplacer.java 23 import proguard.classfile.constant.Constant;
56 public InstructionSequencesReplacer(Constant[] patternConstants,
85 public InstructionSequencesReplacer(Constant[] patternConstants,
115 private static InstructionVisitor[] createInstructionSequenceReplacers(Constant[] patternConstants,
  /external/proguard/src/proguard/classfile/visitor/
ReferencedClassVisitor.java 28 import proguard.classfile.constant.*;
29 import proguard.classfile.constant.visitor.ConstantVisitor;
64 // Visit the constant pool entries.
109 public void visitAnyConstant(Clazz clazz, Constant constant) {}
114 // Let the visitor visit the class referenced in the string constant.
121 // Let the visitor visit the class referenced in the reference constant.
128 // Let the visitor visit the class referenced in the class constant.
231 // Let the visitor visit the classes referenced in the constant element value.
ClassCleaner.java 30 import proguard.classfile.constant.Constant;
31 import proguard.classfile.constant.visitor.ConstantVisitor;
79 public void visitAnyConstant(Clazz clazz, Constant constant)
81 clean(constant);
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 42 import com.android.dx.rop.cst.Constant;
185 * @param constant {@code non-null;} the constant in question
188 private static TypedConstant coerceConstant(TypedConstant constant,
190 Type constantType = constant.getType();
193 return constant;
198 return CstBoolean.make(((CstInteger) constant).getValue());
201 return CstByte.make(((CstInteger) constant).getValue());
204 return CstChar.make(((CstInteger) constant).getValue());
207 return CstShort.make(((CstInteger) constant).getValue())
    [all...]
  /external/proguard/src/proguard/classfile/util/
InstructionSequenceMatcher.java 25 import proguard.classfile.constant.*;
26 import proguard.classfile.constant.visitor.ConstantVisitor;
60 private final Constant[] patternConstants;
73 private Constant patternConstant;
83 public InstructionSequenceMatcher(Constant[] patternConstants,
192 matchingArguments(simpleInstruction.constant,
193 ((SimpleInstruction)patternInstruction).constant);
214 matchingArguments(variableInstruction.constant,
215 ((VariableInstruction)patternInstruction).constant);
237 matchingArguments(constantInstruction.constant,
    [all...]
  /external/proguard/src/proguard/optimize/
DuplicateInitializerInvocationFixer.java 26 import proguard.classfile.constant.*;
27 import proguard.classfile.constant.visitor.ConstantVisitor;
  /external/proguard/src/proguard/optimize/info/
ExceptionInstructionChecker.java 25 import proguard.classfile.constant.RefConstant;
26 import proguard.classfile.constant.visitor.ConstantVisitor;
  /bionic/libc/kernel/common/linux/
timex.h 50 long constant; member in struct:timex
  /development/ndk/platforms/android-3/include/linux/
timex.h 43 long constant; member in struct:timex
  /external/eigen/bench/
benchmarkSlice.cpp 33 m.block(r,c,nr,nc) -= Mat::constant(nr,nc,10);
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
ConstantValueAttribute_info.java 14 import com.vladium.jcd.cls.constant.CONSTANT_literal_info;
22 * attribute represents the value of a constant field that must be (explicitly or
26 * given Field_info structure. The constant field represented by the Field_info
39 * The value of the constantvalue_index item must be a valid index into the constant
40 * pool table. The constant pool entry at that index must give the constant value
43 * The constant pool entry must be of a type appropriate to the field, as shown below:
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_NameAndType_info.java 9 package com.vladium.jcd.cls.constant;
22 * The value of the name_index item must be a valid index into the constant pool
23 * table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
27 * The value of the descriptor_index item must be a valid index into the constant
28 * pool table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
  /external/emma/core/java12/com/vladium/jcd/compiler/
CodeGen.java 12 import com.vladium.jcd.cls.constant.CONSTANT_Integer_info;
85 else // we have to create an Integer constant in the constant pool:
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
PlaneCollisionShape.java 64 private native long createShape(Vector3f normal, float constant);
  /external/llvm/lib/IR/
Globals.cpp 84 GlobalVariable::GlobalVariable(Type *Ty, bool constant, LinkageTypes Link,
85 Constant *InitVal,
93 isConstantGlobal(constant), threadLocalMode(TLMode),
104 GlobalVariable::GlobalVariable(Module &M, Type *Ty, bool constant,
105 LinkageTypes Link, Constant *InitVal,
114 isConstantGlobal(constant), threadLocalMode(TLMode),
148 // If you call this, then you better know this GVar has a constant
156 "Attempt to replace wrong constant initializer in GVar");
158 // And, you better have a constant for the replacement value
159 assert(isa<Constant>(To) &
    [all...]
  /external/proguard/src/proguard/classfile/
Clazz.java 24 import proguard.classfile.constant.visitor.ConstantVisitor;
64 * Returns the tag value of the Constant at the specified index.
169 * Lets the given constant pool entry visitor visit all constant pool entries
175 * Lets the given constant pool entry visitor visit the constant pool entry
181 * Lets the given constant pool entry visitor visit the class constant pool
187 * Lets the given constant pool entry visitor visit the class constant poo
    [all...]

Completed in 540 milliseconds

1 2 3 45 6 7 8 91011>>