/external/chromium_org/third_party/WebKit/Source/core/storage/ |
StorageArea.h | 46 virtual unsigned length(ExceptionState&, Frame* sourceFrame) = 0; 47 virtual String key(unsigned index, ExceptionState&, Frame* sourceFrame) = 0; 48 virtual String getItem(const String& key, ExceptionState&, Frame* sourceFrame) = 0; 49 virtual void setItem(const String& key, const String& value, ExceptionState&, Frame* sourceFrame) = 0; 50 virtual void removeItem(const String& key, ExceptionState&, Frame* sourceFrame) = 0; 51 virtual void clear(ExceptionState&, Frame* sourceFrame) = 0; 52 virtual bool contains(const String& key, ExceptionState&, Frame* sourceFrame) = 0;
|
/external/chromium_org/third_party/WebKit/Source/web/ |
StorageAreaProxy.h | 51 virtual unsigned length(ExceptionState&, Frame* sourceFrame); 52 virtual String key(unsigned index, ExceptionState&, Frame* sourceFrame); 53 virtual String getItem(const String& key, ExceptionState&, Frame* sourceFrame); 54 virtual void setItem(const String& key, const String& value, ExceptionState&, Frame* sourceFrame); 55 virtual void removeItem(const String& key, ExceptionState&, Frame* sourceFrame); 56 virtual void clear(ExceptionState&, Frame* sourceFrame); 57 virtual bool contains(const String& key, ExceptionState&, Frame* sourceFrame);
|
WebDOMMessageEvent.cpp | 48 void WebDOMMessageEvent::initMessageEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData, const WebString& origin, const WebFrame* sourceFrame, const WebString& lastEventId, const WebMessagePortChannelArray& webChannels) 53 if (sourceFrame) 54 window = toWebFrameImpl(sourceFrame)->frame()->domWindow(); 56 if (!webChannels.isEmpty() && sourceFrame) {
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
FileContentView.js | 71 var sourceFrame = /** @type {!WebInspector.SourceFrame} */ (this._innerView); 72 this._content.requestContent(sourceFrame.setContent.bind(sourceFrame)); 76 var sourceFrame = new WebInspector.SourceFrame(this._content); 77 sourceFrame.setHighlighterType(this._file.resourceType.canonicalMimeType()); 78 this._innerView = sourceFrame;
|
UISourceCodeFrame.js | 31 * @extends {WebInspector.SourceFrame} 37 WebInspector.SourceFrame.call(this, this._uiSourceCode); 55 WebInspector.SourceFrame.prototype.wasShown.call(this); 63 WebInspector.SourceFrame.prototype.willHide.call(this); 104 WebInspector.SourceFrame.prototype.onTextChanged.call(this, oldRange, newRange); 191 WebInspector.SourceFrame.prototype.populateTextAreaContextMenu.call(this, contextMenu, lineNumber); 201 __proto__: WebInspector.SourceFrame.prototype
|
RequestResponseView.js | 54 var sourceFrame = new WebInspector.ResourceSourceFrame(this.request); 55 sourceFrame.setHighlighterType(this.request.type.canonicalMimeType() || this.request.mimeType); 56 this._sourceView = sourceFrame;
|
SourcesPanel.js | 171 /** @type {!Map.<!WebInspector.UISourceCode, !WebInspector.SourceFrame>} */ 424 var sourceFrame = this.visibleView; 425 if (sourceFrame) { 426 var statusBarItems = sourceFrame.statusBarItems() || []; 429 var statusBarText = sourceFrame.statusBarText(); 514 var sourceFrame = this._showFile(uiSourceCode); 516 sourceFrame.highlightPosition(lineNumber, columnNumber); 517 sourceFrame.focus(); 528 * @return {!WebInspector.SourceFrame} 532 var sourceFrame = this._getOrCreateSourceFrame(uiSourceCode) [all...] |
ResourceView.js | 80 * @extends {WebInspector.SourceFrame} 87 WebInspector.SourceFrame.call(this, resource); 101 __proto__: WebInspector.SourceFrame.prototype
|
SourceFrame.js | 36 WebInspector.SourceFrame = function(contentProvider) 71 WebInspector.SourceFrame.createSearchRegex = function(query, modifiers) 93 WebInspector.SourceFrame.Events = { 98 WebInspector.SourceFrame.prototype = { 415 * @this {WebInspector.SourceFrame} 422 var regex = WebInspector.SourceFrame.createSearchRegex(query); 567 var regex = WebInspector.SourceFrame.createSearchRegex(query, "g"); 720 inheritScrollPositions: function(sourceFrame) 722 this._textEditor.inheritScrollPositions(sourceFrame._textEditor); 746 this.dispatchEventToListeners(WebInspector.SourceFrame.Events.SelectionChanged, textRange) [all...] |
TabbedEditorContainer.js | 37 * @return {!WebInspector.SourceFrame} 90 * @type {!WebInspector.SourceFrame} 139 this._currentView.addEventListener(WebInspector.SourceFrame.Events.ScrollChanged, this._scrollChanged, this); 140 this._currentView.addEventListener(WebInspector.SourceFrame.Events.SelectionChanged, this._selectionChanged, this); 147 this._currentView.removeEventListener(WebInspector.SourceFrame.Events.ScrollChanged, this._scrollChanged, this); 148 this._currentView.removeEventListener(WebInspector.SourceFrame.Events.SelectionChanged, this._selectionChanged, this);
|
JavaScriptSourceFrame.js | 748 * @param {!WebInspector.JavaScriptSourceFrame} sourceFrame 750 WebInspector.JavaScriptSourceFrame.StepIntoMarkup = function(rawPositions, editorRanges, firstToExecute, sourceFrame) 758 this._sourceFrame = sourceFrame; [all...] |
ResourcesPanel.js | [all...] |
inspector.html | 114 <script type="text/javascript" src="SourceFrame.js"></script>
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
DrawOverlayFilter.java | 69 Frame sourceFrame = pullInput("source"); 80 Frame output = env.getFrameManager().newFrame(sourceFrame.getFormat()); 81 output.setDataFromFrame(sourceFrame);
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
CropFilter.java | 100 FrameImage2D sourceFrame; 113 sourceFrame = mPow2Frame; 116 sourceFrame = inputImage; 122 mShader.process(sourceFrame, outputImage);
|
/external/chromium_org/third_party/WebKit/public/testing/ |
WebFrameTestProxy.h | 162 virtual bool willCheckAndDispatchMessageEvent(blink::WebFrame* sourceFrame, blink::WebFrame* targetFrame, blink::WebSecurityOrigin target, blink::WebDOMMessageEvent event) 164 if (m_baseProxy->willCheckAndDispatchMessageEvent(sourceFrame, targetFrame, target, event)) 166 return Base::willCheckAndDispatchMessageEvent(sourceFrame, targetFrame, target, event);
|
WebTestProxy.h | 217 bool willCheckAndDispatchMessageEvent(blink::WebFrame* sourceFrame, blink::WebFrame* targetFrame, blink::WebSecurityOrigin target, blink::WebDOMMessageEvent); 536 virtual bool willCheckAndDispatchMessageEvent(blink::WebFrame* sourceFrame, blink::WebFrame* targetFrame, blink::WebSecurityOrigin target, blink::WebDOMMessageEvent event) 538 if (WebTestProxyBase::willCheckAndDispatchMessageEvent(sourceFrame, targetFrame, target, event)) 540 return Base::willCheckAndDispatchMessageEvent(sourceFrame, targetFrame, target, event);
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebDOMMessageEvent.h | 50 BLINK_EXPORT void initMessageEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData, const WebString& origin, const WebFrame* sourceFrame, const WebString& lastEventId, const WebMessagePortChannelArray& channels = WebMessagePortChannelArray());
|
/external/chromium_org/chrome/browser/ui/cocoa/tabs/ |
tab_strip_drag_controller.mm | 318 NSRect sourceFrame = [dragWindow_ frame]; 320 (NSHeight(targetFrame) - NSHeight(sourceFrame));
|
/external/chromium_org/content/renderer/ |
render_frame_impl.h | 302 blink::WebFrame* sourceFrame,
|
render_frame_impl.cc | [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/ |
devtools.gypi | 164 'front_end/SourceFrame.js',
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
compile_frontend.py | 202 "SourceFrame.js",
|
/external/chromium/chrome/browser/ui/cocoa/tabs/ |
tab_view.mm | 531 NSRect sourceFrame = [dragWindow_ frame]; 533 (NSHeight(targetFrame) - NSHeight(sourceFrame)); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/ |
DragController.cpp | 784 static IntPoint dragLocationForSelectionDrag(Frame* sourceFrame) 786 IntRect draggingRect = enclosingIntRect(sourceFrame->selection().bounds()); [all...] |