HomeSort by relevance Sort by last modified time
    Searched full:frame (Results 76 - 100 of 3803) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.cpp 38 #include "Frame.h"
242 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
243 if (!frame || !frame->document()->focusedNode())
250 Node* start = frame->selection()->start().node();
257 frame->editor()->deleteWithDirection(SelectionController::BACKWARD,
262 frame->editor()->deleteWithDirection(SelectionController::FORWARD,
267 frame->selection()->modify(kevent->shiftKey() ? SelectionController::EXTEND : SelectionController::MOVE,
273 frame->selection()->modify(kevent->shiftKey() ? SelectionController::EXTEND : SelectionController::MOVE
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSControlExtras.m 35 NSRect frame = [self frame];
37 NSSize bestSize = [[self cell] cellSizeForBounds:NSMakeRect(0.0f, 0.0f, frame.size.width, 10000.0f)];
39 float heightDelta = bestSize.height - frame.size.height;
41 frame.size.height += heightDelta;
42 frame.origin.y -= heightDelta;
43 [self setFrame:frame];
46 NSRect windowFrame = [window frame];
  /external/webkit/WebCore/page/
Chrome.cpp 29 #include "Frame.h"
95 void Chrome::contentsSizeChanged(Frame* frame, const IntSize& size) const
97 m_client->contentsSizeChanged(frame, size);
162 Page* Chrome::createWindow(Frame* frame, const FrameLoadRequest& request, const WindowFeatures& features) const
164 Page* newPage = m_client->createWindow(frame, request, features);
253 bool Chrome::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
259 return m_client->runBeforeUnloadConfirmPanel(message, frame);
    [all...]
FocusController.cpp 40 #include "Frame.h"
79 void FocusController::setFocusedFrame(PassRefPtr<Frame> frame)
81 if (m_focusedFrame == frame || m_isChangingFocusedFrame)
86 RefPtr<Frame> oldFrame = m_focusedFrame;
87 RefPtr<Frame> newFrame = frame;
91 // Now that the frame is updated, fire events and update the selection focused states of both frames.
105 Frame* FocusController::focusedOrMainFrame()
107 if (Frame* frame = focusedFrame()
156 Frame* frame = focusedOrMainFrame(); local
266 Frame* frame = node->document()->frame(); local
    [all...]
  /external/webkit/WebCore/html/
HTMLPlugInImageElement.cpp 24 #include "Frame.h"
46 if (Frame* frame = document()->frame()) {
47 KURL completedURL = frame->loader()->completeURL(m_url);
48 return frame->loader()->client()->objectContentType(completedURL, m_serviceType) == ObjectContentImage;
  /external/webkit/WebCore/loader/
PlaceholderDocument.h 35 static PassRefPtr<PlaceholderDocument> create(Frame* frame)
37 return adoptRef(new PlaceholderDocument(frame));
43 PlaceholderDocument(Frame* frame) : Document(frame, false, false) { }
ProgressTracker.cpp 30 #include "Frame.h"
98 void ProgressTracker::progressStarted(Frame* frame)
100 // LOG (Progress, "frame %p(%@), _private->numProgressTrackedFrames %d, _private->originatingProgressFrame %p", frame, [frame name], _private->numProgressTrackedFrames, _private->originatingProgressFrame);
102 frame->loader()->client()->willChangeEstimatedProgress();
104 if (m_numProgressTrackedFrames == 0 || m_originatingProgressFrame == frame) {
107 m_originatingProgressFrame = frame;
113 frame->loader()->client()->didChangeEstimatedProgress()
137 RefPtr<Frame> frame = m_originatingProgressFrame.release(); local
    [all...]
  /external/webkit/WebCore/plugins/
MimeTypeArray.h 32 class Frame;
37 static PassRefPtr<MimeTypeArray> create(Frame* frame) { return adoptRef(new MimeTypeArray(frame)); }
48 MimeTypeArray(Frame*);
51 Frame* m_frame;
PluginArray.h 32 class Frame;
37 static PassRefPtr<PluginArray> create(Frame* frame) { return adoptRef(new PluginArray(frame)); }
50 PluginArray(Frame*);
53 Frame* m_frame;
  /frameworks/base/core/java/android/view/animation/
package.html 8 View; and <strong>frame-by-frame animation</strong>, which loads a series of Drawable resources
11 Tweened animation is handled by this package (android.view.animation); frame-by-frame animation is
15 <p>For more information on creating tweened or frame-by-frame animations, read the discussion in the
  /external/opencore/fileformats/id3parcom/include/
pv_id3_parcom.h 184 * Retrieve an ID3 frame of the specified type in the ID3 tag.
186 * @param aFrameType Type of ID3 frame to be retrieved
187 * @param aFrame Output parameter to store key-value pair containing data of requested ID3 frame.
188 * @return Status of completion. Returns PVMFFailure if a frame of the specified
194 * Check if frame of aFrameType is available
195 * @param aFrameType Type of ID3 frame
196 * @return true if frame is available otherwise false
214 * Sets an ID3 frame in the ID3 tag.
216 * If the frame does not already exist, a new frame will be created and adde
    [all...]
  /external/srec/srec/ca/
utt_data.c 48 if ((gap = getBlockGap(hUtt->data.gen_utt.frame)) > 0)
49 (void) setRECframePtr(hUtt->data.gen_utt.frame, gap, 1);
50 if (hUtt->data.gen_utt.frame->holdOffPeriod > 0)
51 setRECframePtr(hUtt->data.gen_utt.frame, -MIN(hUtt->data.gen_utt.frame->holdOffPeriod, getFrameGap(hUtt->data.gen_utt.frame)), 1);
52 while (!(rec_frame_voicing_status(hUtt->data.gen_utt.frame) & VOICE_BIT))
54 incRECframePtr(hUtt->data.gen_utt.frame);
55 if (getFrameGap(hUtt->data.gen_utt.frame) == 0)
58 setRECframePtr(hUtt->data.gen_utt.frame, MIN(hUtt->data.gen_utt.start_windback, getBlockGap(hUtt->data.gen_utt.frame)), 1)
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebFormDelegate.idl 75 //- (void)textFieldDidBeginEditing:(DOMHTMLInputElement *)element inFrame:(WebFrame *)frame;
76 HRESULT textFieldDidBeginEditing([in] IDOMHTMLInputElement* element, [in] IWebFrame* frame);
78 //- (void)textFieldDidEndEditing:(DOMHTMLInputElement *)element inFrame:(WebFrame *)frame;
79 HRESULT textFieldDidEndEditing([in] IDOMHTMLInputElement* element, [in] IWebFrame* frame);
81 //- (void)textDidChangeInTextField:(DOMHTMLInputElement *)element inFrame:(WebFrame *)frame;
82 HRESULT textDidChangeInTextField([in] IDOMHTMLInputElement* element, [in] IWebFrame* frame);
84 //- (void)textDidChangeInTextArea:(DOMHTMLTextAreaElement *)element inFrame:(WebFrame *)frame;
85 HRESULT textDidChangeInTextArea([in] IDOMHTMLTextAreaElement* element, [in] IWebFrame* frame);
87 //- (BOOL)textField:(DOMHTMLInputElement *)element doCommandBySelector:(SEL)commandSelector inFrame:(WebFrame *)frame;
88 HRESULT doPlatformCommand([in] IDOMHTMLInputElement* element, [in] BSTR command, [in] IWebFrame* frame, [out, retval] BOOL* result)
    [all...]
IWebFrameLoadDelegatePrivate.idl 44 //- (void)webView:(WebView *)sender didFinishDocumentLoadForFrame:(WebFrame *)frame;
45 HRESULT didFinishDocumentLoadForFrame([in] IWebView* sender, [in] IWebFrame* frame);
47 //- (void)webView:(WebView *)sender didFirstLayoutInFrame:(WebFrame *)frame;
48 HRESULT didFirstLayoutInFrame([in] IWebView* sender, [in] IWebFrame* frame);
51 //- (void)webView:(WebView *)sender didHandleOnloadEventsForFrame:(WebFrame *)frame;
52 HRESULT didHandleOnloadEventsForFrame([in] IWebView* sender, [in] IWebFrame* frame);
54 HRESULT didFirstVisuallyNonEmptyLayoutInFrame([in] IWebView* sender, [in] IWebFrame* frame);
  /external/webkit/WebKit/qt/Api/
qwebframe.cpp 31 #include "Frame.h"
98 Frame* frame = QWebFramePrivate::core(qframe); local
99 InspectorController* controller = frame->page()->inspectorController();
114 Frame* frame = QWebFramePrivate::core(qframe); local
115 if (!frame)
118 AnimationController* controller = frame->animation();
122 Document* doc = frame->document();
134 Frame* frame = QWebFramePrivate::core(qframe) local
180 Frame* frame = QWebFramePrivate::core(qframe); local
193 Frame* frame = QWebFramePrivate::core(qFrame); local
215 Frame* frame = QWebFramePrivate::core(qFrame); local
225 Frame* frame = QWebFramePrivate::core(qFrame); local
239 Frame* frame = QWebFramePrivate::core(qFrame); local
247 Frame* frame = QWebFramePrivate::core(qFrame); local
1086 Frame* frame = d->frame; local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Machine.java 27 * upon a {@link Frame}. A machine conceptually contains four arbitrary-value
51 * @param frame {@code non-null;} frame to operate on
54 public void popArgs(Frame frame, int count);
64 * @param frame {@code non-null;} frame to operate on
67 public void popArgs(Frame frame, Prototype prototype);
74 * @param frame {@code non-null;} frame to operate o
    [all...]
Simulator.java 87 * the passed-in frame to represent the end result.
90 * @param frame {@code non-null;} frame to operate on
92 public void simulate(ByteBlock bb, Frame frame) {
95 visitor.setFrame(frame);
104 frame.annotate(ex);
111 * making appropriate calls on the given frame.
114 * @param frame {@code non-null;} frame to operate o
145 private Frame frame; field in class:Simulator.SimVisitor
    [all...]
  /external/webkit/WebCore/bindings/js/
ScriptState.cpp 34 #include "Frame.h"
41 ScriptState* mainWorldScriptState(Frame* frame)
43 JSDOMWindowShell* shell = frame->script()->windowShell(mainThreadNormalWorld());
54 Frame* frame = document->frame();
55 if (!frame)
57 if (!frame->script()->canExecuteScripts())
59 return frame->script()->globalObject(world)->globalExec()
    [all...]
  /external/webkit/WebCore/bindings/v8/
ScriptCachedFrameData.cpp 29 #include "Frame.h"
35 ScriptCachedFrameData::ScriptCachedFrameData(Frame* frame)
40 ASSERT(V8Proxy::mainWorldContext(frame) == V8Proxy::context(frame));
41 m_context.set(V8Proxy::mainWorldContext(frame));
46 m_domWindow = frame->domWindow();
54 void ScriptCachedFrameData::restore(Frame* frame)
63 V8Proxy* proxy = V8Proxy::retrieve(frame);
    [all...]
  /external/quake/quake/src/QW/progs/
models.qc 16 $frame shot1
25 $frame shot1
34 $frame shot2
43 $frame shot1
52 $frame shot1
60 $frame shot1
75 $frame frame1 frame2 frame3 frame4 frame5 frame6 frame7 frame8 frame9
83 $frame shot1 shot2 shot3 shot4 shot5 shot6 shot7
91 $frame shot1 shot2 shot3 shot4 shot5 shot6 shot7
99 $frame shot1 shot2 shot3 shot4 shot5 shot6 shot
    [all...]
  /external/webkit/WebCore/editing/
EditCommand.cpp 37 #include "Frame.h"
49 ASSERT(m_document->frame());
50 setStartingSelection(avoidIntersectionWithNode(m_document->frame()->selection()->selection(), m_document->frame()->editor()->deleteButtonController()->containerElement()));
61 ASSERT(m_document->frame());
63 Frame* frame = m_document->frame(); local
89 DeleteButtonController* deleteButtonController = frame->editor()->deleteButtonController();
99 frame->editor()->appliedEditing(this)
108 Frame* frame = m_document->frame(); local
133 Frame* frame = m_document->frame(); local
    [all...]
  /external/webkit/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 33 #include "Frame.h"
203 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
205 if (frame) {
206 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
286 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
288 if (frame) {
289 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
298 Frame* frame = m_page->focusController()->focusedOrMainFrame() local
310 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
323 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
336 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
349 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
362 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
377 Frame* frame = node->document()->frame(); local
    [all...]
  /external/webkit/WebCore/page/win/
FrameCGWin.cpp 53 static HBITMAP imageFromRect(const Frame* frame, IntRect& ir)
55 PaintBehavior oldPaintBehavior = frame->view()->paintBehavior();
56 frame->view()->setPaintBehavior(oldPaintBehavior | PaintBehaviorFlattenCompositingLayers);
74 drawRectIntoContext(ir, frame->view(), &gc);
80 frame->view()->setPaintBehavior(oldPaintBehavior);
85 HBITMAP imageFromSelection(Frame* frame, bool forceBlackText)
87 frame->document()->updateLayout();
89 frame->view()->setPaintBehavior(PaintBehaviorSelectionOnly | (forceBlackText ? PaintBehaviorForceBlackTe (…)
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/dec/include/
pvm4vdecoder.h 43 the maximum decoded frame dimensions that should be handled by the decoder for H.263 and ShortHeader Modes (does
57 This function takes the compressed bitstreams of a multiple layer video and decodes the next YUV 4:2:0 frame to
58 be displayed. The application has to allocate memory for the output frame before this function is called, and
60 bitstream is decoded into this passed YUV buffer. The unpadded (non-multiple of 16) size of the frame can be
65 layer after consuming a frame worth of data from a particular layer. This is useful if multiple frame data is
66 passed into the video decoder at once. The decoder will decode one frame at a time. If there is no data at the
70 the data in this buffer before the decoding of the next frame. Note that the decoder may use more than one layer
74 The decoding operation requires at least 2 frame buffers. It is up to the user to manage the handling of frame
    [all...]
  /external/opencore/codecs_v2/omx/omx_amr/src/
d_homing.cpp 69 * In : input_frame[] one frame of encoded serial bits
76 * Return : 0 input frame does not match the decoder homing
77 * frame pattern (up to nparms)
78 * 1 input frame matches the decoder homing frame pattern
82 * with all parameters of the corresponding decoder homing frame.
99 of the corresponding decoder homing frame */
123 * In : input_frame[] one frame of encoded serial bits
129 * Return : 0 input frame does not match the decoder homing frame
    [all...]

Completed in 231 milliseconds

1 2 34 5 6 7 8 91011>>