/external/doclava/src/com/google/doclava/ |
D | SinceTagger.java | 238 for (ClassInfo claz : classDocs) { in warnForMissingVersions() 239 if (!checkLevelRecursive(claz)) { in warnForMissingVersions() 243 if (claz.getSince() == null) { in warnForMissingVersions() 244 Errors.error(Errors.NO_SINCE_DATA, claz.position(), "XML missing class " in warnForMissingVersions() 245 + claz.qualifiedName()); in warnForMissingVersions() 248 for (FieldInfo field : missingVersions(claz.fields())) { in warnForMissingVersions() 250 + claz.qualifiedName() + "#" + field.name()); in warnForMissingVersions() 253 for (MethodInfo constructor : missingVersions(claz.constructors())) { in warnForMissingVersions() 255 + claz.qualifiedName() + "#" + constructor.getHashableName()); in warnForMissingVersions() 258 for (MethodInfo method : missingVersions(claz.methods())) { in warnForMissingVersions() [all …]
|
D | ArtifactTagger.java | 145 for (ClassInfo claz : classDocs) { in warnForMissingArtifacts() 146 if (checkLevelRecursive(claz) && claz.getArtifact() == null) { in warnForMissingArtifacts() 147 Errors.error(Errors.NO_ARTIFACT_DATA, claz.position(), "XML missing class " in warnForMissingArtifacts() 148 + claz.qualifiedName()); in warnForMissingArtifacts() 157 private boolean checkLevelRecursive(ClassInfo claz) { in checkLevelRecursive() argument 158 for (ClassInfo c = claz; c != null; c = c.containingClass()) { in checkLevelRecursive()
|
/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/util/introspection/ |
D | UberspectPublicFields.java | 77 Class<?> claz = obj.getClass(); in getPropertyGet() local 79 PublicFieldExecutor executor = new PublicFieldExecutor(log, introspector, claz, identifier); in getPropertyGet() 100 Class<?> claz = obj.getClass(); in getPropertySet() local 102 …SetPublicFieldExecutor executor = new SetPublicFieldExecutor(log, introspector, claz, identifier, … in getPropertySet()
|
D | UberspectImpl.java | 369 Class<?> claz = obj.getClass(); in getPropertyGet() local 375 AbstractExecutor executor = new PropertyExecutor(log, introspector, claz, identifier); in getPropertyGet() 391 executor = new GetExecutor(log, introspector, claz, identifier); in getPropertyGet() 400 executor = new BooleanPropertyExecutor(log, introspector, claz, in getPropertyGet() 433 Class<?> claz = obj.getClass(); in getPropertySet() local 439 SetExecutor executor = new SetPropertyExecutor(log, introspector, claz, identifier, arg); in getPropertySet() 445 executor = new MapSetExecutor(log, claz, identifier); in getPropertySet() 454 executor = new PutExecutor(log, introspector, claz, arg, identifier); in getPropertySet()
|
/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/util/ |
D | ClassUtils.java | 118 public static InputStream getResourceAsStream(Class<?> claz, String name) in getResourceAsStream() argument 135 classLoader = claz.getClassLoader(); in getResourceAsStream() 149 classLoader = claz.getClassLoader(); in getResourceAsStream()
|
/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/app/event/ |
D | EventHandlerUtil.java | 97 InternalContextAdapter context, Class<?> claz, String method, in methodException() argument 105 return ev.methodException(context, claz, method, e, info); in methodException() 111 return contextCartridge.methodException(context, claz, method, e, info); in methodException()
|
D | MethodExceptionEventHandler.java | 51 Object methodException(Context context, Class<?> claz, String method, Exception e, Info info); in methodException() argument
|
D | EventCartridge.java | 308 …public Object methodException(Context context, Class<?> claz, String method, Exception e, Info inf… in methodException() argument 312 return methodExceptionHandler.methodException(context, claz, method, e, info); in methodException()
|
/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/app/event/implement/ |
D | PrintExceptions.java | 70 …public Object methodException(Context context, Class<?> claz, String method, Exception e, Info inf… in methodException() argument 76 … st.append("Exception while executing method ").append(claz.toString()).append(".").append(method); in methodException()
|
/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/misc/ |
D | ExceptionGeneratingEventHandler.java | 47 …public Object methodException(Context context, Class<?> claz, String method, Exception e, Info inf… in methodException() argument
|
/external/apache-commons-bcel/src/examples/ |
D | Package.java | 189 JavaClass claz = allClasses.get(name); in go() local 191 byte[] bytes = claz.getBytes(); in go()
|
/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/eventhandler/ |
D | Handler2.java | 55 …public Object methodException(Context context, Class<?> claz, String method, Exception e, Info inf… in methodException() argument
|
D | Handler1.java | 55 …public Object methodException(Context context, Class<?> claz, String method, Exception e, Info inf… in methodException() argument
|
/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/ |
D | EventHandlingTestCase.java | 239 … public Object methodException(Context context, Class claz, String method, Exception e, Info info ) in methodException() argument
|
/external/apache-velocity-engine/velocity-engine-examples/src/main/java/org/apache/velocity/example/ |
D | EventExample.java | 307 …public Object methodException(Context context, Class claz, String method, Exception e, Info info )… in methodException() argument
|
/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/util/introspection/ |
D | ConversionHandlerTestCase.java | 303 Class claz, in methodException() argument
|