/external/webkit/WebKit/chromium/src/ |
ChromeClientImpl.cpp | 148 const Frame* frame = m_webView->focusedWebCoreFrame(); local 149 if (!frame) 152 Document* doc = frame->document(); 211 Frame* frame, const FrameLoadRequest& r, const WindowFeatures& features) 217 m_webView->client()->createView(WebFrameImpl::fromFrame(frame))); 369 bool ChromeClientImpl::runBeforeUnloadConfirmPanel(const String& message, Frame* frame) 373 WebFrameImpl::fromFrame(frame), message) [all...] |
/dalvik/hit/src/com/android/hit/ |
StackTrace.java | 25 * For subsets of the stack frame we'll reference the parent list of frames 26 * but keep track of its offset into the parent's list of stack frame ids. 28 * list of stack frame ids.
|
/external/srec/srec/include/ |
fpi_tgt.h | 75 * Frame Buffer * 80 volatile int isCollecting; /* Frame buffer is collecting */ 81 featdata* frameStack; /* Pointer to Frame Stack */ 82 int frameSize; /* How many data items per frame? */ 87 featdata* lastFrameInStack; /* Pointer to last frame */ 96 featdata* volatile pushp; /* Ptr to frame being written */ 97 featdata* volatile pullp; /* Ptr to next frame to be read */ 102 unsigned long blockTime; /* Last time frame was blocked */ 103 unsigned long pushTime; /* Time of FEP frame */ 104 unsigned long pullTime; /* Time of REC frame */ [all...] |
/external/v8/src/ |
frames-inl.h | 171 inline JavaScriptFrame* JavaScriptFrameIteratorTemp<Iterator>::frame() const { function in class:v8::internal::JavaScriptFrameIteratorTemp 172 // TODO(1233797): The frame hierarchy needs to change. It's 174 // the JavaScript frame type, because we may encounter arguments 176 StackFrame* frame = iterator_.frame(); local 177 ASSERT(frame->is_java_script() || frame->is_arguments_adaptor()); 178 return static_cast<JavaScriptFrame*>(frame); 187 if (frame()->id() == id) return; 196 } while (!iterator_.done() && !iterator_.frame()->is_java_script()) [all...] |
jump-target.cc | 53 // the directionality of the block. Compute: an entry frame for the 60 VirtualFrame* frame = reaching_frames_[0]; local 63 if (!frame->Equals(reaching_frames_[i])) { 72 // Choose an initial frame. 75 // A list of pointers to frame elements in the entry frame. NULL 81 // frame. 109 // This is safe because we only use the frame for emitting merge code. 119 // Build the new frame. A freshly allocated frame has memory element [all...] |
/external/v8/test/mjsunit/ |
debug-evaluate-locals.js | 71 // Frame 0 has normal variables a and b. 72 var frame0 = exec_state.frame(0); 76 // Frame 1 has normal variable a (and the .arguments variable). 77 var frame1 = exec_state.frame(1); 81 // Frame 2 has normal variables a and b (and both the .arguments and 83 var frame2 = exec_state.frame(2); 90 assertEquals(1, exec_state.frame(0).evaluate('a').value()); 91 assertEquals(2, exec_state.frame(0).evaluate('b').value()); 92 assertEquals(3, exec_state.frame(1).evaluate('a').value()); 93 assertEquals(4, exec_state.frame(1).evaluate('b').value()) [all...] |
/external/webkit/WebCore/bindings/v8/ |
ScriptController.h | 51 class Frame; 60 ScriptController(Frame*); 108 // Creates a property of the global object of a frame. 109 void bindToWindowObject(Frame*, const String& key, NPObject*); 124 // Returns the frame for the entered context. See comments in 126 static Frame* retrieveFrameForEnteredContext(); 128 // Returns the frame for the current context. See comments in 130 static Frame* retrieveFrameForCurrentContext(); 132 // Check whether it is safe to access a frame in another domain. 133 static bool isSafeScript(Frame*); [all...] |
V8Proxy.cpp | 166 void logInfo(Frame* frame, const String& message, const String& url) 168 Page* page = frame->page(); 180 void V8Proxy::reportUnsafeAccessTo(Frame* target, DelayReporting delay) 187 Frame* source = V8Proxy::retrieveFrameForEnteredContext(); 195 String str = String::format("Unsafe JavaScript attempt to access frame " 196 "with URL %s from frame with URL %s. " 227 V8Proxy::V8Proxy(Frame* frame) 228 : m_frame(frame) 553 Frame* frame = window->frame(); local [all...] |
V8Helpers.cpp | 49 return V8Proxy::mainWorldContext(object->rootObject->frame()); 55 Frame* frame = object->rootObject->frame(); local 56 return V8Proxy::retrieve(frame);
|
/external/webkit/WebCore/bindings/v8/custom/ |
V8DatabaseCustom.cpp | 57 Frame* frame = V8Proxy::retrieveFrameForCurrentContext(); local 58 if (!frame) 66 callback = V8CustomSQLTransactionCallback::create(args[2], frame); 74 errorCallback = V8CustomSQLTransactionErrorCallback::create(args[3], frame); 82 successCallback = V8CustomVoidCallback::create(args[4], frame); 100 Frame* frame = V8Proxy::retrieveFrameForCurrentContext(); local 101 if (!frame) 104 RefPtr<V8CustomSQLTransactionCallback> callback = V8CustomSQLTransactionCallback::create(args[0], frame); [all...] |
V8DocumentLocationCustom.cpp | 28 #include "Frame.h" 38 if (!document->frame()) 41 DOMWindow* window = document->frame()->domWindow(); 48 if (!document->frame()) 51 DOMWindow* window = document->frame()->domWindow();
|
V8HTMLFrameSetElementCustom.cpp | 35 #include "Frame.h" 57 if (Frame* frame = doc->frame()) 58 return toV8(frame->domWindow());
|
/external/webkit/WebCore/manual-tests/ |
post-multi-file-upload.html | 14 var frame = document.getElementById('fr'); 15 frame.parentNode.removeChild(frame);
|
/external/webkit/WebCore/platform/graphics/gtk/ |
WebKitWebSourceGStreamer.h | 22 #include "Frame.h" 48 void webKitWebSrcSetFrame(WebKitWebSrc* src, WebCore::Frame* frame);
|
/external/webkit/WebKit/gtk/webkit/ |
webkitprivate.cpp | 28 #include "Frame.h" 57 WebKitWebView* getViewFromFrame(WebKitWebFrame* frame) 59 WebKitWebFramePrivate* priv = frame->priv; 63 WebCore::Frame* core(WebKitWebFrame* frame) 65 if (!frame) 68 WebKitWebFramePrivate* priv = frame->priv; 72 WebKitWebFrame* kit(WebCore::Frame* coreFrame) 221 WebCore::Frame* frame = d->m_frame [all...] |
/external/webkit/WebKit/mac/WebView/ |
WebRenderNode.mm | 32 #import <WebCore/Frame.h> 45 - (id)_initWithCoreFrame:(Frame *)frame 49 if (!frame->loader()->client()->hasHTMLView()) 52 RenderObject* renderer = frame->contentRenderer(); 59 - (id)_initWithName:(NSString *)n position:(NSPoint)p rect:(NSRect)r coreFrame:(Frame*)coreFrame children:(NSArray *)c 99 Frame* frame = frameView ? frameView->frame() : 0; 125 coreFrame:frame children:children] [all...] |
WebFrameView.mm | 61 #import <WebCore/Frame.h> 116 - (Frame*)_web_frame 263 Frame* frame = core(_private->webFrame); 265 ASSERT(frame); 266 ASSERT(frame->page()); 268 // If this isn't the main frame, it must have an owner element set, or it 270 ASSERT(frame == frame->page()->mainFrame() || frame->ownerElement()) [all...] |
WebScriptDebugDelegate.mm | 35 #import <WebCore/Frame.h> 65 WebScriptCallFrame *caller; // previous stack frame 82 // One of these is created to represent each stack frame. Additionally, there is a "global" 83 // frame to represent the outermost scope. This global frame is always the last frame in 86 // The delegate can assign a "wrapper" to each frame object so it can relay calls through its 180 if (!scopeChain->next) // global frame 198 // Returns the name of the function for this frame, if available. 199 // Returns nil for anonymous functions and for the global frame [all...] |
/external/webkit/WebKit/win/WebCoreSupport/ |
WebChromeClient.h | 60 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&); 83 virtual bool runBeforeUnloadConfirmPanel(const WebCore::String& message, WebCore::Frame* frame); 87 virtual void runJavaScriptAlert(WebCore::Frame*, const WebCore::String&); 88 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WebCore::String&); 89 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WebCore::String& message, const WebCore::String& defaultValue, WebCore::String& result); 101 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const; 108 virtual void print(WebCore::Frame*); 111 virtual void exceededDatabaseQuota(WebCore::Frame*, const WebCore::String&); 125 virtual void runOpenPanel(WebCore::Frame*, PassRefPtr<WebCore::FileChooser>) [all...] |
/external/webkit/WebCore/page/ |
DragController.cpp | 44 #include "Frame.h" 158 Frame* mainFrame = m_page->mainFrame(); 182 RefPtr<Frame> mainFrame = m_page->mainFrame(); 261 float zoomFactor = documentUnderMouse->frame()->pageZoomFactor(); 315 VisibleSelection dragCaret = m_documentUnderMouse->frame()->visiblePositionForPoint(point); 319 Frame* innerFrame = element->document()->frame(); 338 if (doc && (m_didInitiateDrag || doc->isPluginDocument() || (doc->frame() && doc->frame()->editor()->clientIsEditable()))) 343 static bool setSelectionToDragCaret(Frame* frame, VisibleSelection& dragCaret, RefPtr<Range>& range, const IntPoint& point [all...] |
/external/webkit/WebKit/android/WebCoreSupport/ |
GeolocationPermissions.h | 40 class Frame; 51 // origin specifies the scheme, host and port of particular frame. An 55 // Each instance handles permissions for a given main frame. The class 57 // - Non-remembered permissions last for the dureation of the main frame. 59 // - All permissions are shared between child frames of a main frame. 66 // the specified main frame (i.e. tab). The WebViewCore is used to 68 GeolocationPermissions(WebViewCore* webViewCore, WebCore::Frame* mainFrame); 71 // Queries the permission state for the specified frame. If the 75 // the same origin as the requesting frame. 76 void queryPermissionState(WebCore::Frame* frame) [all...] |
/hardware/ti/wlan/wl1271/stad/src/Sta_Management/ |
ScanCncn.h | 80 /* 0 */ SCAN_CRS_RECEIVED_FRAME = 0, /**< Scan is still running; management frame information is passed. */ 101 * This structure contains a single frame information, returned by the result CB when a frame is available. 108 TMacAddr* bssId; /* BSSID (MAC address) of the AP from which the frame was received */ 109 mlmeFrameInfo_t* parsedIEs; /* Information elements in the frame, which is parsed */ 110 ERadioBand band; /* Band on which the frame was received */ 111 TI_UINT8 channel; /* Channel on which the frame was received */ 112 TI_UINT32 staTSF; /* TSF of the station when the frame was received */ 113 TI_INT8 rssi; /* RSSI level at which frame was received */ 114 TI_INT8 snr; /* SNR level at which frame was received * [all...] |
/system/wlan/ti/wilink_6_1/stad/src/Sta_Management/ |
ScanCncn.h | 78 /* 0 */ SCAN_CRS_RECEIVED_FRAME = 0, /**< Scan is still running; management frame information is passed. */ 99 * This structure contains a single frame information, returned by the result CB when a frame is available. 106 TMacAddr* bssId; /* BSSID (MAC address) of the AP from which the frame was received */ 107 mlmeFrameInfo_t* parsedIEs; /* Information elements in the frame, which is parsed */ 108 ERadioBand band; /* Band on which the frame was received */ 109 TI_UINT8 channel; /* Channel on which the frame was received */ 110 TI_UINT32 staTSF; /* TSF of the station when the frame was received */ 111 TI_INT8 rssi; /* RSSI level at which frame was received */ 112 TI_INT8 snr; /* SNR level at which frame was received * [all...] |
/external/opencore/codecs_v2/video/m4v_h263/enc/src/ |
mp4lib_int.h | 47 Int frame; /* frame number */ member in struct:tagVOP 55 Int padded; /* flag whether this frame has been padded */ 176 //float FrameRate; /* Input Frame Rate */ 183 float LayerFrameRate[4]; /* Encoded Frame Rate */ 186 float LayerMaxFrameRate[4]; /* Maximum Encoded Frame Rate */ 208 Int Refresh; /* Number of MBs refresh in each frame */ 211 Bool FineFrameSkip_Enabled; /* src rate resolution frame skipping */ 213 Bool NoFrameSkip_Enabled; /* do not allow frame skip */ 230 Int maxFrameSize; /* maximum frame size(bits) for H263/Short header mode, k*16384 * [all...] |
/external/webkit/WebCore/history/ |
CachedFrame.h | 55 CachedFrameBase(Frame*); 72 static PassRefPtr<CachedFrame> create(Frame* frame) { return adoptRef(new CachedFrame(frame)); } 89 CachedFrame(Frame*);
|