OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_workspace
(Results
1 - 19
of
19
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CompilerScriptMapping.js
39
this.
_workspace
= workspace;
40
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAddedToWorkspace, this);
72
var uiSourceCode = this.
_workspace
.uiSourceCodeForURL(url);
129
if (!this.
_workspace
.hasMappingForURL(sourceURL) && !this.
_workspace
.uiSourceCodeForURL(sourceURL)) {
133
var uiSourceCode = this.
_workspace
.uiSourceCodeForURL(sourceURL);
241
var uiSourceCode = this.
_workspace
.uiSourceCodeForURL(sourceURL);
StylesSourceMapping.js
40
this.
_workspace
= workspace;
41
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.ProjectWillReset, this._projectWillReset, this);
42
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAddedToWorkspace, this);
43
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this);
61
var uiSourceCode = this.
_workspace
.uiSourceCodeForURL(location.url);
99
var uiSourceCode = this.
_workspace
.uiSourceCodeForURL(url);
123
var uiSourceCode = this.
_workspace
.uiSourceCodeForURL(url);
201
var uiSourceCode = this.
_workspace
.uiSourceCodeForURL(url);
301
var uiSourceCode = this.
_workspace
.uiSourceCodeForURL(styleSheetURL)
WorkspaceController.js
36
this.
_workspace
= workspace;
62
var projects = this.
_workspace
.projects();
SASSSourceMapping.js
44
this.
_workspace
= workspace;
51
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAdded, this);
52
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.UISourceCodeContentCommitted, this._uiSourceCodeContentCommitted, this);
53
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.ProjectWillReset, this._reset, this);
160
var sassFile = this.
_workspace
.uiSourceCodeForURL(sassURL);
243
var cssUISourceCode = this.
_workspace
.uiSourceCodeForURL(cssURL);
250
if (this.
_workspace
.hasMappingForURL(sassURL))
528
if (!this.
_workspace
.hasMappingForURL(url) && !this.
_workspace
.uiSourceCodeForURL(url)) {
549
var uiSourceCode = this.
_workspace
.uiSourceCodeForURL(entry[2])
[
all
...]
FileSystemProjectDelegate.js
45
this.
_workspace
= workspace;
180
var newURL = this.
_workspace
.urlForPath(this._fileSystem.path(), filePath);
510
var url = this.
_workspace
.urlForPath(this._fileSystem.path(), filePath);
547
this.
_workspace
= workspace;
561
var projectDelegate = new WebInspector.FileSystemProjectDelegate(fileSystem, this.
_workspace
)
563
console.assert(!this.
_workspace
.project(projectDelegate.id()));
564
this.
_workspace
.addProject(projectDelegate);
575
this.
_workspace
.removeProject(projectId);
DefaultScriptMapping.js
39
this.
_workspace
= workspace;
40
this.
_workspace
.addProject(this._projectDelegate);
79
var uiSourceCode = this.
_workspace
.uiSourceCode(this._projectDelegate.id(), path);
SimpleWorkspaceProvider.js
126
this.
_workspace
= workspace;
142
this.
_workspace
.addProject(simpleProjectDelegate);
186
var uiSourceCode = /** @type {!WebInspector.UISourceCode} */ (this.
_workspace
.uiSourceCode(projectDelegate.id(), path));
SourcesSearchScope.js
39
this.
_workspace
= workspace;
56
var projects = this.
_workspace
.projects().filter(filterOutServiceProjects);
95
var projects = this.
_workspace
.projects().filter(filterOutServiceProjects);
CSSStyleSheetMapping.js
40
this.
_workspace
= workspace;
NetworkUISourceCodeProvider.js
39
this.
_workspace
= workspace;
121
if (this.
_workspace
.hasMappingForURL(url))
PresentationConsoleMessageHelper.js
42
this.
_workspace
= workspace;
124
var uiSourceCodes = this.
_workspace
.uiSourceCodes();
Workspace.js
178
this.
_workspace
= workspace;
232
this.
_workspace
.dispatchEventToListeners(WebInspector.Workspace.Events.UISourceCodeAdded, uiSourceCode);
257
this.
_workspace
.dispatchEventToListeners(WebInspector.Workspace.Events.UISourceCodeRemoved, entry.uiSourceCode);
262
this.
_workspace
.dispatchEventToListeners(WebInspector.Workspace.Events.ProjectWillReset, this);
340
this.
_workspace
.dispatchEventToListeners(WebInspector.Workspace.Events.UISourceCodeContentCommitted, { uiSourceCode: uiSourceCode, content: newContent });
BreakpointManager.js
42
this.
_workspace
= workspace;
50
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.ProjectWillReset, this._projectWillReset, this);
51
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAdded, this);
52
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this);
453
return this._breakpointManager.
_workspace
.uiSourceCode(this._projectId, this._path);
555
var uiSourceCode = this._breakpointManager.
_workspace
.uiSourceCode(this._projectId, this._path);
634
var uiSourceCode = this._breakpointManager.
_workspace
.uiSourceCode(this._projectId, this._path);
ResourceScriptMapping.js
38
this.
_workspace
= workspace;
39
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAddedToWorkspace, this);
141
return this.
_workspace
.uiSourceCodeForURL(script.sourceURL);
ScriptSnippetModel.js
38
this.
_workspace
= workspace;
52
this._project = this.
_workspace
.addProject(this._projectDelegate);
99
var uiSourceCode = this.
_workspace
.uiSourceCode(this._projectDelegate.id(), path);
117
var uiSourceCode = this.
_workspace
.uiSourceCode(this._projectDelegate.id(), path);
SourcesPanel.js
63
this.
_workspace
= workspaceForTest || WebInspector.workspace;
188
this.
_workspace
.uiSourceCodes().forEach(this._addUISourceCode.bind(this));
191
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAdded, this);
192
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this);
193
this.
_workspace
.addEventListener(WebInspector.Workspace.Events.ProjectWillReset, this._projectWillReset.bind(this), this);
196
WebInspector.advancedSearchController.registerSearchScope(new WebInspector.SourcesSearchScope(this.
_workspace
));
[
all
...]
CSSStyleModel.js
38
this.
_workspace
= workspace;
[
all
...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_s.h
39
GBLA
_Workspace
;// Stack offset of scratch workspace
467
_Offset SETA
_Workspace
+ $a0$_F
576
_M_OPC ADD$cc, $a, sp, (
_Workspace
+ $b$_F)
582
_M_OPC ADD$cc, $a, sp, (
_Workspace
+ $b$_F$_16)
591
_M_OPC ADD$cc, $a, sp, (
_Workspace
+ $b$_F$_32)
623
_Workspace
SETA 0
653
_ABytes SETA _SBytes + _RBytes -
_Workspace
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
armCOMM_s.h
39
GBLA
_Workspace
;// Stack offset of scratch workspace
470
_Offset SETA
_Workspace
+ $a0$_F
579
_M_OPC ADD$cc, $a, sp, (
_Workspace
+ $b$_F)
585
_M_OPC ADD$cc, $a, sp, (
_Workspace
+ $b$_F$_16)
594
_M_OPC ADD$cc, $a, sp, (
_Workspace
+ $b$_F$_32)
626
_Workspace
SETA 0
656
_ABytes SETA _SBytes + _RBytes -
_Workspace
Completed in 1087 milliseconds