Home
last modified time | relevance | path

Searched refs:claz (Results 1 – 16 of 16) sorted by relevance

/external/doclava/src/com/google/doclava/
DSinceTagger.java238 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 …]
DArtifactTagger.java145 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/
DUberspectPublicFields.java77 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()
DUberspectImpl.java369 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/
DClassUtils.java118 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/
DEventHandlerUtil.java97 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()
DMethodExceptionEventHandler.java51 Object methodException(Context context, Class<?> claz, String method, Exception e, Info info); in methodException() argument
DEventCartridge.java308 …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/
DPrintExceptions.java70 …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/
DExceptionGeneratingEventHandler.java47 …public Object methodException(Context context, Class<?> claz, String method, Exception e, Info inf… in methodException() argument
/external/apache-commons-bcel/src/examples/
DPackage.java189 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/
DHandler2.java55 …public Object methodException(Context context, Class<?> claz, String method, Exception e, Info inf… in methodException() argument
DHandler1.java55 …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/
DEventHandlingTestCase.java239 … 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/
DEventExample.java307 …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/
DConversionHandlerTestCase.java303 Class claz, in methodException() argument