HomeSort by relevance Sort by last modified time
    Searched refs:constant (Results 26 - 50 of 438) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/util/
StringReferenceInitializer.java 24 import proguard.classfile.constant.*;
25 import proguard.classfile.constant.visitor.ConstantVisitor;
29 * it visits. More specifically, it fills out the references of string constant
56 public void visitAnyConstant(Clazz clazz, Constant constant) {}
  /external/proguard/src/proguard/classfile/visitor/
ReferencedMemberVisitor.java 26 import proguard.classfile.constant.*;
27 import proguard.classfile.constant.visitor.ConstantVisitor;
52 public void visitAnyConstant(Clazz clazz, Constant constant) {}
ImplementedClassConstantFilter.java 24 import proguard.classfile.constant.visitor.ConstantVisitor;
25 import proguard.classfile.constant.ClassConstant;
ImplementingClassConstantFilter.java 24 import proguard.classfile.constant.visitor.ConstantVisitor;
25 import proguard.classfile.constant.ClassConstant;
DotClassClassVisitor.java 25 import proguard.classfile.constant.*;
26 import proguard.classfile.constant.visitor.ConstantVisitor;
83 public void visitAnyConstant(Clazz clazz, Constant constant) {}
  /external/proguard/src/proguard/optimize/info/
PackageVisibleMemberInvokingClassMarker.java 24 import proguard.classfile.constant.visitor.ConstantVisitor;
25 import proguard.classfile.constant.*;
40 public void visitAnyConstant(Clazz clazz, Constant constant) {}
  /external/proguard/src/proguard/classfile/constant/
ClassConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
28 * This Constant represents a class constant in the constant pool.
32 public class ClassConstant extends Constant
62 * @param u2nameIndex the index of the name in the constant pool.
82 // Implementations for Constant.
NameAndTypeConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a name and type constant in the constant pool.
31 public class NameAndTypeConstant extends Constant
47 * @param u2nameIndex the index of the name in the constant pool.
48 * @param u2descriptorIndex the index of the descriptor in the constant
108 // Implementations for Constant.
StringConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
28 * This Constant represents a string constant in the constant pool.
32 public class StringConstant extends Constant
76 * @param u2stringIndex the index of the string in the constant pool.
99 // Implementations for Constant.
  /external/proguard/src/proguard/classfile/editor/
ExceptionAdder.java 25 import proguard.classfile.constant.ClassConstant;
26 import proguard.classfile.constant.visitor.ConstantVisitor;
59 // Add a class constant to the constant pool.
62 // Add the index of the class constant to the list of exceptions.
InterfaceAdder.java 27 import proguard.classfile.constant.ClassConstant;
28 import proguard.classfile.constant.visitor.ConstantVisitor;
  /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...]
VariableInstruction.java 37 public int constant; field in class:VariableInstruction
67 int constant)
71 this.constant = constant;
86 this.constant = variableInstruction.constant;
274 constant = readSignedValue(code, offset, constantSize);
290 throw new IllegalArgumentException("Instruction has invalid constant size ("+this.toString(offset)+")");
294 writeSignedValue(code, offset, constant, constantSize);
317 (constantSize() > 0 ? ", "+constant : "")
    [all...]
  /external/clang/test/Misc/
ast-dump-templates.cpp 7 int constant; member in struct:foo
  /external/proguard/src/proguard/classfile/constant/visitor/
AllConstantVisitor.java 21 package proguard.classfile.constant.visitor;
28 * This ClassVisitor lets a given ConstantVisitor visit all constant pool
ConstantVisitor.java 21 package proguard.classfile.constant.visitor;
24 import proguard.classfile.constant.*;
28 * This interface specifies the methods for a visitor of <code>Constant</code>
  /external/webkit/Source/WebKit/wx/bindings/python/
webview.i 165 %constant wxEventType wxEVT_WEBVIEW_BEFORE_LOAD;
166 %constant wxEventType wxEVT_WEBVIEW_LOAD;
167 %constant wxEventType wxEVT_WEBVIEW_NEW_WINDOW;
168 %constant wxEventType wxEVT_WEBVIEW_RIGHT_CLICK;
169 %constant wxEventType wxEVT_WEBVIEW_CONSOLE_MESSAGE;
170 %constant wxEventType wxEVT_WEBVIEW_RECEIVED_TITLE;
171 %constant wxEventType wxEVT_WEBVIEW_CONTENTS_CHANGED;
172 %constant wxEventType wxEVT_WEBVIEW_SELECTION_CHANGED;
  /external/webkit/Source/WebCore/platform/mac/
SoftLinking.h 105 static type constant##name; \
109 return constant##name; \
114 void* constant = dlsym(framework##Library(), #name); \
115 ASSERT(constant); \
116 constant##name = *static_cast<type*>(constant); \
118 return constant##name; \
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_Fieldref_info.java 9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
CONSTANT_InterfaceMethodref_info.java 9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
CONSTANT_Methodref_info.java 9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
CONSTANT_info.java 9 package com.vladium.jcd.cls.constant;
31 * Returns the tag byte for this CONSTANT type [this data is
43 * Returns the number of constant pool index slots occupied by this
44 * CONSTANT type. This implementation defaults to returning '1'.
133 public static String tagToString (final CONSTANT_info constant)
135 switch (constant.tag ())
173 default: throw new IllegalStateException ("CONSTANT_info: invalid tag value [" + constant.tag () + ']');
  /dalvik/dx/src/com/android/dx/gen/
FieldId.java 33 final CstFieldRef constant; field in class:FieldId
43 this.constant = new CstFieldRef(declaringType.constant, nat);
  /external/dbus/dbus/
dbus-string-private.h 48 unsigned int constant : 1; /**< String data is not owned by DBusString */ member in struct:__anon5484
86 _dbus_assert (!(real)->constant); \
98 _dbus_assert (!(real)->constant)
  /external/proguard/src/proguard/obfuscate/
NameAndTypeUsageMarker.java 26 import proguard.classfile.constant.*;
27 import proguard.classfile.constant.visitor.ConstantVisitor;
32 * This ClassVisitor marks all NameAndType constant pool entries that are
45 // A visitor info flag to indicate the NameAndType constant pool entry is being used.
53 // Mark the NameAndType entries referenced by all other constant pool
65 public void visitAnyConstant(Clazz clazz, Constant constant) {}
109 * Marks the given UTF-8 constant pool entry of the given class.

Completed in 1010 milliseconds

12 3 4 5 6 7 8 91011>>