HomeSort by relevance Sort by last modified time
    Searched refs:_history (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
codec_timer.cc 26 _history()
45 _history[i].shortMax = 0;
46 _history[i].timeMs = -1;
67 if (_history[0].timeMs >= 0 &&
68 now - _history[0].timeMs < SHORT_FILTER_MS)
78 if(_history[0].timeMs == -1)
88 _history[i+1].shortMax = _history[i].shortMax;
89 _history[i+1].timeMs = _history[i].timeMs
    [all...]
codec_timer.h 56 VCMShortMaxSample _history[MAX_HISTORY_SIZE]; member in class:webrtc::VCMCodecTimer
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
InspectorView.js 73 this._history = [];
384 if (newIndex >= this._history.length || newIndex < 0)
390 this.setCurrentPanel(this._panels[this._history[this._historyIterator]]);
401 this._history.splice(this._historyIterator + 1, this._history.length - this._historyIterator - 1);
402 if (!this._history.length || this._history[this._history.length - 1] !== panelName)
403 this._history.push(panelName);
404 this._historyIterator = this._history.length - 1
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
TabbedEditorContainer.js 68 this._history = WebInspector.TabbedEditorContainer.History.fromObject(this._previouslyViewedFilesSetting.get());
145 var uris = this._history._urls();
176 this._history.updateScrollLineNumber(this._currentFile.uri(), lineNumber);
177 this._history.save(this._previouslyViewedFilesSetting);
186 this._history.updateSelectionRange(this._currentFile.uri(), range);
187 this._history.save(this._previouslyViewedFilesSetting);
281 var index = this._history.index(uri)
298 if (this._history.index(this._currentFile.uri()) && currentProjectType === snippetsProjectType && addedProjectType !== snippetsProjectType)
331 this._history.remove(uiSourceCode.uri());
354 this._history.update(tabIds.map(tabIdToURI.bind(this)))
    [all...]

Completed in 238 milliseconds