Lines Matching refs:used
7 Layoutlib_create generates a JAR library used by the Eclipse graphical layout editor to perform
20 Layoutlib_create uses a few jars from the framework containing the Java code used by Android as
23 These jars can't be used directly in Eclipse as:
38 The ASM library is used to do the bytecode modification using its visitor pattern API.
45 The resulting JAR is used by layoutlib_bridge (a.k.a. "the bridge"), also part of the platform, that
91 layoutlib_create and will be used to interface with the renderer in Eclipse.
106 The TransformClassAdapter is then used to process the potentially renamed class. All protected or
122 references in all classes. This is used to update the references of classes in the java package that
128 class version (version of the JDK used to compile the class) to 50 (corresponding to Java 6), if the
172 - OverrideMethod and its associated MethodListener and MethodAdapter are used to intercept calls to
174 - CreateInfo class, which configured the generator. Not used yet, but could in theory help us track
204 replacement version of Paint which will be used by the rest of the Android stack. The replacement
225 inner static classes are used to pass around attributes (e.g. FontMetrics, or the Style enum) and
235 This strategy is used to override method implementations. Given a method SomeClass.MethodName(), 1