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

/openjdk7/langtools/test/tools/javac/
H A DDivByZero.java34 float fe = f1/0.0f; field in class:DivByZero
/openjdk7/jdk/test/java/awt/Focus/ClearGlobalFocusOwnerTest/
H A DClearGlobalFocusOwnerTest.java45 public void focusLost(FocusEvent fe) {
46 if (fe.isTemporary()) {
47 throw new TestFailedException("the FocusLost event is temporary: " + fe);
/openjdk7/jdk/test/sun/nio/cs/
H A DMalformedSurrogates.java36 String fe = System.getProperty("file.encoding");
37 if ( fe.equalsIgnoreCase("UTF8")
38 || fe.equalsIgnoreCase("UTF-8")
39 || fe.equalsIgnoreCase("UTF_8"))
/openjdk7/langtools/test/tools/javac/processing/filer/
H A DTestFilerConstraints.java188 } catch (FilerException fe) {;}
193 } catch (FilerException fe) {;}
200 } catch (FilerException fe) {;}
206 } catch (FilerException fe) {;}
H A DTestPackageInfo.java90 } catch(FilerException fe) {}
/openjdk7/jdk/src/share/classes/sun/font/
H A DFileFont.java180 } catch (FontScalerException fe) {
189 } catch (FontScalerException fe) {
198 } catch (FontScalerException fe) {
207 } catch (FontScalerException fe) {
216 } catch (FontScalerException fe) {
225 } catch (FontScalerException fe) {
234 } catch (FontScalerException fe) {
H A DType1GlyphMapper.java48 } catch (FontScalerException fe) {
H A DTrueTypeFont.java866 } catch(FontScalerException fe) {
1600 } catch(FontScalerException fe) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DDefaultKeyboardFocusManager.java117 private void restoreFocus(FocusEvent fe, Window newFocusedWindow) { argument
119 Component vetoedComponent = fe.getComponent();
126 } else if (fe.getOppositeComponent() != null &&
127 doRestoreFocus(fe.getOppositeComponent(), vetoedComponent, false)) {
453 FocusEvent fe = (FocusEvent)e;
454 CausedFocusEvent.Cause cause = (fe instanceof CausedFocusEvent) ?
455 ((CausedFocusEvent)fe).getCause() : CausedFocusEvent.Cause.UNKNOWN;
457 Component newFocusOwner = fe.getComponent();
475 fe.isTemporary(),
480 if (!fe
[all...]
H A DKeyboardFocusManager.java2654 static FocusEvent retargetUnexpectedFocusEvent(FocusEvent fe) { argument
2661 return (FocusEvent)retargetFocusEvent(fe);
2664 Component source = fe.getComponent();
2665 Component opposite = fe.getOppositeComponent();
2667 if (fe.getID() == FocusEvent.FOCUS_LOST &&
2672 return new CausedFocusEvent(source, fe.getID(), temporary, opposite,
2677 static FocusEvent retargetFocusGained(FocusEvent fe) { argument
2678 assert (fe.getID() == FocusEvent.FOCUS_GAINED);
2682 Component source = fe.getComponent();
2683 Component opposite = fe
2769 retargetFocusLost(FocusEvent fe) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXFileDialogPeer.java447 File fe = new File(d);
449 if (fe.isDirectory() && fe.canRead()) {
463 l = fe.list();
467 l = fe.list(ff);
583 File fe = new File(dir);
584 if (fe.canRead()) {
722 File fe = new File(dir).getAbsoluteFile();
723 log.fine("Current directory : " + fe);
725 if (!fe
[all...]
H A DXTextFieldPeer.java661 FocusEvent fe = CausedFocusEvent.retarget(e, this);
662 super.processFocusEvent(fe);
669 FocusEvent fe = CausedFocusEvent.retarget(e, this);
670 super.processFocusEvent(fe);
H A DXTextAreaPeer.java974 FocusEvent fe = CausedFocusEvent.retarget(e, this);
975 super.processFocusEvent(fe);
981 FocusEvent fe = CausedFocusEvent.retarget(e, this);
982 super.processFocusEvent(fe);
H A DXWindowPeer.java803 FocusEvent fe;
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DFieldExpression.java84 FieldExpression fe = (FieldExpression)e;
85 if (fe.id == idThis || fe.id == idClass) {
88 buf.insert(0, fe.id);
90 e = fe.right;
1128 FieldExpression fe = (FieldExpression) e;
1129 if ((fe.right != null) && (fe.right.op==THIS))
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/
H A DBeanGenerator.java711 JForEach fe = m.body().forEach(type, "c", type.staticInvoke("values"));
714 eq = fe.var().ref($value).eq($v);
716 eq = fe.var().ref($value).invoke("equals").arg($v);
719 fe.body()._if(eq)._then()._return(fe.var());
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/ftp/
H A DFtpURLConnection.java300 } catch (FtpProtocolException fe) {
301 throw new IOException(fe);
/openjdk7/jdk/test/java/awt/KeyboardFocusmanager/TypeAhead/
H A DTestDialogTypeAhead.java230 public void focusGained(FocusEvent fe) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DJavacPathFileManager.java360 // JavaFileObject fe =
362 // results.append(fe);
386 JavaFileObject fe =
389 results.append(fe);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWComponentPeer.java1220 FocusEvent fe = (FocusEvent) e;
1221 delegateEvent = new FocusEvent(getDelegateFocusOwner(), fe.getID(), fe.isTemporary());
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWComponentPeer.java361 void handleJavaFocusEvent(FocusEvent fe) { argument
362 if (focusLog.isLoggable(PlatformLogger.FINER)) focusLog.finer(fe.toString());
363 setFocus(fe.getID() == FocusEvent.FOCUS_GAINED);
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java226 public void focusGained(FocusEvent fe) {
227 repaintSelection(fe.getSource());
230 public void focusLost(FocusEvent fe) {
231 repaintSelection(fe.getSource());
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java305 JavaFileObject fe =
307 resultList.append(fe);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DJTextComponent.java4444 public void focusGained(FocusEvent fe) { argument
4446 fe.getSource());
4449 public void focusLost(FocusEvent fe) { argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java2431 protected void extraFileActions(PackageSymbol pack, JavaFileObject fe) { argument

Completed in 93 milliseconds