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

  /frameworks/base/media/java/android/media/videoeditor/
VideoEditorFactory.java 76 * @param generatePreview if set to true the
77 * {@link MediaEditor#generatePreview(MediaProcessingProgressListener
87 public static VideoEditor load(String projectPath, boolean generatePreview)
90 if (generatePreview) {
91 videoEditor.generatePreview(null);
VideoEditor.java 728 public void generatePreview(MediaProcessingProgressListener listener);
VideoEditorImpl.java 484 public void generatePreview(MediaProcessingProgressListener listener) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScript.h 58 bool generatePreview,
66 bool generatePreview,
76 bool generatePreview,
90 PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapObject(const ScriptValue&, const String& groupName, bool generatePreview = false) const;
InspectorRuntimeAgent.h 65 const bool* generatePreview,
74 const bool* generatePreview,
InspectorRuntimeAgent.cpp 69 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const int* executionContextId, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown)
80 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
88 void InspectorRuntimeAgent::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const RefPtr<JSONArray>* const optionalArguments, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown)
105 injectedScript.callFunctionOn(errorString, objectId, expression, arguments, asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
InjectedScript.cpp 60 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown)
67 function.appendArgument(generatePreview);
71 void InjectedScript::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const String& arguments, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown)
78 function.appendArgument(generatePreview);
82 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown)
91 function.appendArgument(generatePreview);
248 PassRefPtr<TypeBuilder::Runtime::RemoteObject> InjectedScript::wrapObject(const ScriptValue& value, const String& groupName, bool generatePreview) const
255 wrapFunction.appendArgument(generatePreview);
ConsoleMessage.h 59 void addToFrontend(InspectorFrontend::Console*, InjectedScriptManager*, bool generatePreview);
InjectedScriptSource.js 122 * @param {boolean} generatePreview
125 wrapObject: function(object, groupName, canAccessInspectedWindow, generatePreview)
128 return this._wrapObject(object, groupName, false, generatePreview);
209 * @param {boolean=} generatePreview
214 _wrapObject: function(object, objectGroupName, forceValueType, generatePreview, columnNames)
217 return new InjectedScript.RemoteObject(object, objectGroupName, forceValueType, generatePreview, columnNames);
453 * @param {boolean} generatePreview
456 evaluate: function(expression, objectGroup, injectCommandLineAPI, returnByValue, generatePreview)
458 return this._evaluateAndWrap(InjectedScriptHost.evaluate, InjectedScriptHost, expression, objectGroup, false, injectCommandLineAPI, returnByValue, generatePreview);
532 * @param {boolean} generatePreview
    [all...]
ConsoleMessage.cpp 192 void ConsoleMessage::addToFrontend(InspectorFrontend::Console* frontend, InjectedScriptManager* injectedScriptManager, bool generatePreview)
211 if (m_type == TableMessageType && generatePreview && m_arguments->argumentCount()) {
222 RefPtr<TypeBuilder::Runtime::RemoteObject> inspectorValue = injectedScript.wrapObject(m_arguments->argumentAt(i), "console", generatePreview);
InspectorDebuggerAgent.h 115 const bool* generatePreview,
InspectorDebuggerAgent.cpp 684 void InspectorDebuggerAgent::evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown)
703 injectedScript.evaluateOnCallFrame(errorString, m_currentCallStack, callFrameId, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, returnByValue ? *returnByValue : false, generatePreview ? *generatePreview : false, &result, wasThrown);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
RuntimeModel.js 131 * @param {boolean} generatePreview
134 evaluate: function(expression, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, callback)
137 WebInspector.debuggerModel.evaluateOnSelectedCallFrame(expression, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, callback);
164 RuntimeAgent.evaluate(expression, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, this._currentExecutionContext ? this._currentExecutionContext.id : undefined, returnByValue, generatePreview, evalCallback);
DebuggerModel.js 496 * @param {boolean} generatePreview
499 evaluateOnSelectedCallFrame: function(code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, callback)
516 this.selectedCallFrame().evaluate(code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, didEvaluate.bind(this));
772 * @param {boolean} generatePreview
775 evaluate: function(code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, callback)
792 DebuggerAgent.evaluateOnCallFrame(this._payload.callFrameId, code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, didEvaluateOnCallFrame.bind(this));
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
ApiService.java     [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
VideoEditorExportTest.java 143 mVideoEditor.generatePreview(new MediaProcessingProgressListener() {
268 mVideoEditor.generatePreview(new MediaProcessingProgressListener() {
331 mVideoEditor.generatePreview(new MediaProcessingProgressListener() {
389 mVideoEditor.generatePreview(new MediaProcessingProgressListener() {
502 mVideoEditor.generatePreview(new MediaProcessingProgressListener() {
    [all...]
VideoEditorPreviewTest.java 156 mVideoEditor.generatePreview(new MediaProcessingProgressListener() {
392 * generatePreview)
455 mVideoEditor.generatePreview(new MediaProcessingProgressListener() {
695 mVideoEditor.generatePreview(new MediaProcessingProgressListener() {
    [all...]
VideoEditorAPITest.java     [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
VideoEditorPerformance.java 680 * To test the performance of generatePreview : with Transitions
712 mVideoEditor.generatePreview(new MediaProcessingProgressListener() {
731 * To test the performance of generatePreview : with KenBurn
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
WidgetPreviewLoader.java 215 final Bitmap generatedPreview = generatePreview(o, unusedBitmap);
218 throw new RuntimeException("generatePreview is not recycling the bitmap " + o);
404 public Bitmap generatePreview(Object info, Bitmap preview) {
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
VideoEditorStressTest.java     [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
WidgetPreviewLoader.java 230 final Bitmap generatedPreview = generatePreview(o, unusedBitmap);
233 throw new RuntimeException("generatePreview is not recycling the bitmap " + o);
409 public Bitmap generatePreview(Object info, Bitmap preview) {

Completed in 480 milliseconds