OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sourceFrame
(Results
1 - 25
of
28
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/storage/
StorageArea.h
59
unsigned length(ExceptionState&, LocalFrame*
sourceFrame
);
60
String key(unsigned index, ExceptionState&, LocalFrame*
sourceFrame
);
61
String getItem(const String& key, ExceptionState&, LocalFrame*
sourceFrame
);
62
void setItem(const String& key, const String& value, ExceptionState&, LocalFrame*
sourceFrame
);
63
void removeItem(const String& key, ExceptionState&, LocalFrame*
sourceFrame
);
64
void clear(ExceptionState&, LocalFrame*
sourceFrame
);
65
bool contains(const String& key, ExceptionState&, LocalFrame*
sourceFrame
);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
EditingLocationHistoryManager.js
34
* @param {!function():?WebInspector.
SourceFrame
} currentSourceFrameCallback
47
* @param {!WebInspector.UISourceCodeFrame}
sourceFrame
49
trackSourceFrameCursorJumps: function(
sourceFrame
)
51
sourceFrame
.addEventListener(WebInspector.
SourceFrame
.Events.JumpHappened, this._onJumpHappened.bind(this));
77
var
sourceFrame
= this._currentSourceFrameCallback();
78
if (!
sourceFrame
)
80
this._updateActiveState(
sourceFrame
.textEditor.selection());
85
var
sourceFrame
= this._currentSourceFrameCallback();
86
if (!
sourceFrame
)
[
all
...]
SourcesView.js
178
* @return {?WebInspector.
SourceFrame
}
183
if (!(view instanceof WebInspector.
SourceFrame
))
185
return /** @type {!WebInspector.
SourceFrame
} */ (view);
282
var
sourceFrame
= this.currentSourceFrame();
283
if (!
sourceFrame
)
286
var statusBarItems =
sourceFrame
.statusBarItems() || [];
289
var statusBarText =
sourceFrame
.statusBarText();
304
var
sourceFrame
= this._showFile(uiSourceCode);
306
sourceFrame
.revealPosition(lineNumber, columnNumber, !omitHighlight);
309
sourceFrame
.focus()
[
all
...]
InplaceFormatterEditorAction.js
105
var
sourceFrame
= this._sourcesView.viewForFile(uiSourceCode);
107
if (
sourceFrame
) {
108
var selection =
sourceFrame
.selection();
ScriptFormatterEditorAction.js
278
var
sourceFrame
= this._sourcesView.viewForFile(uiSourceCode);
280
if (
sourceFrame
) {
281
var selection =
sourceFrame
.selection();
/external/chromium_org/third_party/WebKit/public/web/
WebRemoteFrameClient.h
23
WebLocalFrame*
sourceFrame
,
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());
WebFrameClient.h
524
WebLocalFrame*
sourceFrame
,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
GoToLineDialog.js
34
* @param {!WebInspector.
SourceFrame
}
sourceFrame
36
WebInspector.GoToLineDialog = function(
sourceFrame
)
51
this._sourceFrame =
sourceFrame
;
56
* @param {function():?WebInspector.
SourceFrame
} sourceFrameGetter
65
* @param {function():?WebInspector.
SourceFrame
} sourceFrameGetter
71
var
sourceFrame
= sourceFrameGetter();
72
if (!
sourceFrame
)
74
WebInspector.Dialog.show(
sourceFrame
.element, new WebInspector.GoToLineDialog(
sourceFrame
));
[
all
...]
SourceFrame.js
37
WebInspector.
SourceFrame
= function(contentProvider)
71
WebInspector.
SourceFrame
.createSearchRegex = function(query, modifiers)
93
WebInspector.
SourceFrame
.Events = {
99
WebInspector.
SourceFrame
.prototype = {
420
* @this {WebInspector.
SourceFrame
}
427
var regex = WebInspector.
SourceFrame
.createSearchRegex(query);
581
var regex = WebInspector.
SourceFrame
.createSearchRegex(query, "g");
645
this._rowMessageBuckets[lineNumber] = new WebInspector.
SourceFrame
.RowMessageBucket(this, this._textEditor, lineNumber);
685
this.dispatchEventToListeners(WebInspector.
SourceFrame
.Events.JumpHappened, {
691
inheritScrollPositions: function(
sourceFrame
)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
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
;