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

12345678

/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/javascripts/
H A Deffects.js300 var frame = Math.round(pos * this.options.fps * this.options.duration);
301 if(frame > this.currentFrame) {
303 this.currentFrame = frame;
/glassfish-3.1.2/tests/embedded/maven-plugin/websockets/src/main/java/com/sun/grizzly/samples/websockets/
H A DChatApplication.java63 public void onMessage(WebSocket socket, DataFrame frame) throws IOException { argument
64 final String data = frame.getTextPayload();
66 login((ChatWebSocket) socket, frame);
86 private void login(ChatWebSocket socket, DataFrame frame) throws IOException { argument
89 socket.setUser(frame.getTextPayload().split(":")[1].trim());
/glassfish-3.1.2/tests/quicklook/web/jruby/helloapp/public/javascripts/
H A Deffects.js288 frame = (pos * this.totalFrames).round();
289 if (frame > this.currentFrame) {
291 this.currentFrame = frame;
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/gui/
H A DMainPanel.java147 JFrame frame = (JFrame) SwingUtilities.getAncestorOfClass(cls, resultsPanel);
148 frame.setVisible(false);
150 //frame.dispose();
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/logger/
H A DIASLogger.java142 StackTraceElement frame = stack[ix];
143 _classname = frame.getClassName();
145 // We've found the relevant frame. Get Method Name.
146 _methodname = frame.getMethodName();
/glassfish-3.1.2/admingui/core/src/main/resources/css/
H A Dcss_ie5win.css751 .button-frame-enabled {background-color:#000}
756 .button-frame-disabled {background-color:#999}
759 .mini-button-frame-enabled {background-color:#000}
764 .mini-button-frame-disabled {background-color:#999}
768 .table-frame {background-color:#99C}
792 .alert-error-frame {background-color:#C00}
794 .alert-warning-frame {background-color:#FC0}
796 .alert-info-frame {background-color:#99C}
826 .wizard-tab-frame-forward {background-color:#000}
829 .wizard-tab-frame
[all...]
H A Dcss_ie6up.css751 .button-frame-enabled {background-color:#000}
756 .button-frame-disabled {background-color:#999}
759 .mini-button-frame-enabled {background-color:#000}
764 .mini-button-frame-disabled {background-color:#999}
768 .table-frame {background-color:#99C}
792 .alert-error-frame {background-color:#C00}
794 .alert-warning-frame {background-color:#FC0}
796 .alert-info-frame {background-color:#99C}
826 .wizard-tab-frame-forward {background-color:#000}
829 .wizard-tab-frame
[all...]
H A Dcss_ns4sol.css509 .button-frame-enabled {background-color:#000}
516 .button-frame-disabled {background-color:#999}
521 .mini-button-frame-enabled {background-color:#000}
528 .mini-button-frame-disabled {background-color:#999}
539 .table-frame {background-color:#99C}
576 .alert-error-frame {background-color:#C00}
578 .alert-warning-frame {background-color:#FC0}
580 .alert-info-frame {background-color:#99C}
626 .wizard-tab-frame-forward {background-color:#000}
629 .wizard-tab-frame
[all...]
H A Dcss_ns4win.css512 .button-frame-enabled {background-color:#000}
519 .button-frame-disabled {background-color:#999}
524 .mini-button-frame-enabled {background-color:#000}
531 .mini-button-frame-disabled {background-color:#999}
542 .table-frame {background-color:#99C}
579 .alert-error-frame {background-color:#C00}
581 .alert-warning-frame {background-color:#FC0}
583 .alert-info-frame {background-color:#99C}
629 .wizard-tab-frame-forward {background-color:#000}
632 .wizard-tab-frame
[all...]
H A Dcss_ns6up.css761 .button-frame-enabled {background-color:#000}
766 .button-frame-disabled {background-color:#999}
769 .mini-button-frame-enabled {background-color:#000}
774 .mini-button-frame-disabled {background-color:#999}
778 .table-frame {background-color:#99C}
802 .alert-error-frame {background-color:#C00}
804 .alert-warning-frame {background-color:#FC0}
806 .alert-info-frame {background-color:#99C}
836 .wizard-tab-frame-forward {background-color:#000}
839 .wizard-tab-frame
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/
H A DPrint.java74 ** printing the stack frame to avoid creating a print line which is excessively long)
98 ** To turn have 'printXXX' methods print the stack frame location, include system property:
143 /* Set the state to force prepending the stack frame to 'print' statements
151 /* return the current state of including the stack frame in 'print' statements
162 /* Set the state to include the module source file rather than the normal stack frame
174 ** @return the @see java.lang.StackTraceElement for the specified stack frame
175 ** @param the specified stack frame to retrieve.
185 ** @return the @see java.lang.String version of the specified stack frame
186 ** @param the specified stack frame to retrieve.
194 ** @return the @see java.lang.String version of the specified stack frame
449 _printStackTrace(PrintStream out, int frame, String title, String msg, Throwable excp) argument
501 printStackTrace(PrintStream out, int frame, String title, String msg, Throwable excp) argument
532 dprintStackTrace(PrintStream out, int frame, String title, String msg, Throwable excp) argument
618 printStackTrace(int frame, String msg) argument
629 dprintStackTrace(int frame, String msg) argument
[all...]
/glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/logging/
H A DLoggerJDK14.java476 // Search for the first frame before the "Logger" class.
478 StackTraceElement frame = stack[ix];
479 String cname = frame.getClassName();
481 // We've found the relevant frame.
483 sourceMethodName = frame.getMethodName();
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/
H A DGUILoginDialog.java127 private JFrame frame; field in class:PassphraseDialog
151 * Create a dialog box with a frame and title.
153 * @param frame The parent frame.
156 protected PassphraseDialog (JFrame frame, String title) { argument
157 super(frame, title, true);
158 this.frame = frame;
164 * Create a dialog box with a frame and title.
166 * @param frame Th
169 PassphraseDialog(JFrame frame, String title, Callback[] callbacks) argument
415 private JFrame frame; field in class:CertificateDialog
429 CertificateDialog(JFrame frame, String title) argument
[all...]
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DStackFrame.java34 * A single stack frame in a {@link StackValueRecord}.
48 new String[] {"frame"})
73 private final String frame; field in class:StackFrame
76 * Creates a single stack frame. Supports XML persistence.
78 * @param f human-readable string representation of this stack frame
85 frame = f;
92 if (frame == null) {
93 throw new NullPointerException("frame is null");
99 * frame. Supports XML persistence.
101 * @return the human-readable string representation of this stack frame
[all...]
/illumos-gate/usr/src/lib/libumem/common/
H A Dgetpcstack.c31 #include <sys/frame.h>
42 * dereference the entire frame structure.
44 #define UMEM_FRAMESIZE (sizeof (struct frame))
58 struct frame *fp;
59 struct frame *nextfp, *minfp;
91 * Since we only allow increasing frame pointers, and we
127 fp = (struct frame *)((caddr_t)getfp() + STACK_BIAS);
132 return (0); /* the frame pointer isn't in our stack */
138 nextfp = (struct frame *)((caddr_t)fp->fr_savfp + STACK_BIAS);
158 * punt, since we don't know where the frame pointe
[all...]
/illumos-gate/usr/src/lib/libbc/libc/sys/common/
H A Dcdioctl.h41 unsigned char cdmsf_frame0; /* starting frame */
44 unsigned char cdmsf_frame1; /* ending frame */
68 unsigned char frame; member in struct:cdrom_tocentry::__anon2821::__anon2822
86 unsigned char frame; member in struct:cdrom_subchnl::__anon2823::__anon2824
94 unsigned char frame; member in struct:cdrom_subchnl::__anon2825::__anon2826
/illumos-gate/usr/src/lib/libc/i386/unwind/
H A Dunwind_frame.s44 movl (%ebp), %edx / pop first frame [ back to f1() ]
45 movl (%edx), %ebp / pop second frame [ back to f2() ]
57 * Unwind one frame, call the cleanup handler with argument arg from the
58 * restored frame, then jump to _t_cancel(fp) again from the restored frame.
62 pushl %ebp / save current frame pointer
64 movl (%ebp), %ebp / pop out one frame
67 popl %eax / old frame pointer
68 lea 4(%eax), %esp / stk points to old frame
69 movl %ebp, 4(%esp) / _t_cancel() gets frame pointe
[all...]
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dwalkstack.c29 * stack frame. Special handling is provided to indicate
34 * A signal handler frame is essentially a set of data pushed on to the user
42 * counter and frame pointer as a separate frame.
44 * The stack layout for a signal handler frame is as follows:
58 * | struct frame | v | struct frame | v
71 * | struct frame | v
74 * The bottom-most struct frame is actually constructed by the kernel by
75 * copying the previous stack frame, allowin
[all...]
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dsiglongjmp.c37 #include <sys/frame.h>
93 struct frame *sp = (struct frame *)(bp->sjs_sp + STACK_BIAS);
94 sp->fr_savfp = (struct frame *)fp;
/illumos-gate/usr/src/lib/libc/sparc/unwind/
H A Dunwind_frame.s47 mov %fp, %o0 ! passing the frame pointer
54 * Unwind one frame, call the cleanup handler with argument arg from the
55 * restored frame, then jump to _t_cancel(fp) again from the restored frame.
65 mov %fp, %o0 ! passing the frame pointer
75 mov %fp, %o0 ! passing the frame pointer
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dsiglongjmp.c34 #include <sys/frame.h>
92 struct frame *sp = (struct frame *)(bp->sjs_sp + STACK_BIAS);
93 sp->fr_savfp = (struct frame *)fp;
/illumos-gate/usr/src/lib/brand/shared/brand/amd64/
H A Dcrt.s56 /* Make stack traces look pretty, build a fake stack frame. */
57 pushq $0 / Build a stack frame. retpc = NULL
59 movq %rsp, %rbp / first stack frame
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmAccess.java50 pmFrame frame = new pmFrame( field in class:pmAccess
76 frame.setClearButtonsOnClose(true);
90 * frame.getRootPane().setDefaultButton(okButton);
105 frame.setDefaultComponent(pnameText);
109 Component glass = frame.getGlassPane();
264 pmUtility.doLogin(mytop, frame);
295 frame.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
306 frame.setCursor(Cursor.getDefaultCursor());
345 pmOKCancelDialog d = new pmOKCancelDialog(frame,
351 pmMessageDialog m = new pmMessageDialog(frame,
[all...]
H A DpmLoad.java50 pmFrame frame = new pmFrame( field in class:pmLoad
213 frame.dispose();
224 frame.setVisible(false);
225 frame.repaint();
226 frame.dispose();
232 frame.repaint();
238 frame.setVisible(false);
239 frame.repaint();
240 frame.dispose();
251 frame
[all...]
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_frame.c29 * Utility routines to manage debugger frames and commands. A debugger frame
32 * Each frame has a list of commands (that is, a dcmd, argument list, and
122 mdb_dprintf(MDB_DBG_DSTK, "push frame <%u> mark=%p in=%s out=%s\n",
140 mdb_dprintf(MDB_DBG_DSTK, "pop frame <%u> status=%s\n",
162 mdb_frame_switch(mdb_frame_t *frame) argument
166 mdb.m_frame = frame;
168 mdb_dprintf(MDB_DBG_DSTK, "switch to frame <%u>\n", mdb.m_frame->f_id);
170 mdb_nv_set_value(mdb.m_dot, frame->f_dot);
174 mdb_frame_set_pipe(mdb_frame_t *frame) argument
176 frame
180 mdb_frame_clear_pipe(mdb_frame_t *frame) argument
188 mdb_frame_t *frame = mdb_list_prev(mdb.m_frame); local
[all...]

Completed in 233 milliseconds

12345678