Searched refs:te (Results 1 - 25 of 54) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/processing/model/util/
H A DGetTypeElemBadArg.java47 TypeElement te = elements.getTypeElement("Superless");
48 tellAbout(te);
50 te = elements.getTypeElement("Bo.o.o.gus");
51 if (te != null) {
52 tellAbout(te);
/openjdk7/langtools/test/tools/javac/6402516/
H A DCheckClass.java49 TypeElement te = s.getEnclosingClass();
51 if (te == null)
54 CharSequence name = te.getQualifiedName();
58 error(s, ref, "bad enclosing class found: " + te);
H A DCheckIsAccessible.java60 TypeElement te = getTypeElement(args[0]);
61 actual = trees.isAccessible(s, te);
63 error(s, ref, "accessible issue found: " + te + " " + actual);
82 TypeElement te = getElements().getTypeElement(name);
83 if (te == null)
85 return te;
96 TypeElement te = getTypeElement(tname);
97 for (Element e: te.getEnclosedElements()) {
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXBooleanStatic.java66 catch(javax.xml.transform.TransformerException te)
68 throw new com.sun.org.apache.xml.internal.utils.WrappedRuntimeException(te);
H A DXBoolean.java164 catch(javax.xml.transform.TransformerException te)
166 throw new com.sun.org.apache.xml.internal.utils.WrappedRuntimeException(te);
H A DXNumber.java411 catch(javax.xml.transform.TransformerException te)
413 throw new com.sun.org.apache.xml.internal.utils.WrappedRuntimeException(te);
H A DXRTreeFrag.java297 catch(javax.xml.transform.TransformerException te)
299 throw new com.sun.org.apache.xml.internal.utils.WrappedRuntimeException(te);
/openjdk7/langtools/test/tools/javac/
H A DT6411379.java46 for (Element te: renv.getRootElements()) {
47 System.err.println("te: " + te);
48 for (AnnotationMirror anno: te.getAnnotationMirrors()) {
49 // anno is an annotation on te, not on annoElem,
H A DT6403466.java81 for (TypeElement te: ElementFilter.typesIn(elts)) {
83 Writer out = filer.createSourceFile(te.getSimpleName() + "Wrapper").openWriter();
84 out.write("class " + te.getSimpleName() + "Wrapper { }");
/openjdk7/langtools/test/tools/javac/processing/model/util/directSupersOfErr/
H A DDirectSupersOfErr.java46 for (TypeElement te : typesIn(round.getRootElements())) {
47 TypeMirror sup = te.getSuperclass();
/openjdk7/langtools/test/tools/javac/processing/model/element/TestMissingElement/
H A DTestMissingElement.java44 for (TypeElement te: ElementFilter.typesIn(roundEnv.getRootElements())) {
45 if (isSimpleName(te, "InvalidSource")) {
46 for (Element c: te.getEnclosedElements()) {
72 private void checkInterfaces(TypeElement te, String expect) { argument
73 System.err.println("check interfaces: " + te + " -- " + expect);
74 String found = asString(te.getInterfaces(), ", ");
75 checkEqual("interfaces", te, found, expect);
78 private void checkSupertype(TypeElement te, String expect) { argument
79 System.err.println("check supertype: " + te + " -- " + expect);
80 String found = asString(te
84 checkEqual(String label, TypeElement te, String found, String expect) argument
[all...]
/openjdk7/langtools/test/tools/javac/processing/model/element/TestMissingElement2/
H A DGenerator.java36 for (TypeElement te: ElementFilter.typesIn(roundEnv.getRootElements())) {
37 System.err.println(te);
38 generateIfMissing(te.getSuperclass());
39 generateIfMissing(te.getInterfaces());
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPath.java341 catch (TransformerException te)
343 te.setLocator(this.getLocator());
347 el.error(te);
350 throw te;
367 TransformerException te = new TransformerException(msg,
370 // te.printStackTrace();
373 el.fatalError(te);
376 throw te;
416 catch (TransformerException te)
418 te
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiGen.java166 } catch (TransformerException te) {
169 System.out.println(" " + te.getMessage() );
172 Throwable x = te;
173 if (te.getException() != null)
174 x = te.getException();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.java253 Entry te = table[i];
254 if (te == e)
257 if (te.shadowed == e) {
258 te.shadowed = e.shadowed;
261 te = te.shadowed;
265 te = elems;
266 if (te == e)
269 if (te.sibling == e) {
270 te
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/
H A DXPathExpressionImpl.java173 } catch (TransformerException te) {
175 throw new XPathException(XPathException.INVALID_EXPRESSION_ERR,te.getMessageAndLocation());
H A DXPathResultImpl.java145 } catch (TransformerException te) {
163 } catch (TransformerException te) {
263 } catch (TransformerException te) {
264 throw new XPathException(XPathException.TYPE_ERR,te.getMessage());
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/jaxp/
H A DXPathImpl.java277 } catch ( javax.xml.transform.TransformerException te ) {
278 Throwable nestedException = te.getException();
284 throw new XPathExpressionException ( te );
396 } catch ( javax.xml.transform.TransformerException te ) {
397 throw new XPathExpressionException ( te ) ;
471 } catch ( javax.xml.transform.TransformerException te ) {
472 Throwable nestedException = te.getException();
476 throw new XPathExpressionException ( te );
H A DXPathExpressionImpl.java193 } catch ( javax.xml.transform.TransformerException te ) {
194 Throwable nestedException = te.getException();
200 throw new XPathExpressionException( te);
/openjdk7/jdk/test/java/net/URLConnection/
H A DChunkedEncoding.java147 long te = System.currentTimeMillis();
154 if ( (te-ts) > 2000) {
/openjdk7/jdk/test/java/net/Socket/
H A DInheritTimeout.java76 } catch (SocketTimeoutException te) {
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/operations/
H A DVariable.java148 TransformerException te = new TransformerException(msg, this);
150 throw new com.sun.org.apache.xml.internal.utils.WrappedRuntimeException(te);
/openjdk7/jdk/src/share/classes/java/util/
H A DXMLUtils.java173 } catch (TransformerException te) {
175 ioe.initCause(te);
/openjdk7/jdk/src/share/classes/java/beans/
H A DStatement.java304 Throwable te = ite.getTargetException();
305 if (te instanceof Exception) {
306 throw (Exception)te;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPrinterJob.java602 Throwable te = (Throwable)ite.getTargetException();
603 if (te instanceof PrinterException) throw (PrinterException)te;
604 else te.printStackTrace();

Completed in 75 milliseconds

123