/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 | 64 const bool* generatePreview, 73 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);
|
ConsoleMessage.cpp | 189 void ConsoleMessage::addToFrontend(InspectorFrontend::Console* frontend, InjectedScriptManager* injectedScriptManager, bool generatePreview) 208 if (m_type == TableMessageType && generatePreview && m_arguments->argumentCount()) { 219 RefPtr<TypeBuilder::Runtime::RemoteObject> inspectorValue = injectedScript.wrapObject(m_arguments->argumentAt(i), "console", generatePreview);
|
InjectedScriptSource.js | 143 * @param {boolean} generatePreview 146 wrapObject: function(object, groupName, canAccessInspectedWindow, generatePreview) 149 return this._wrapObject(object, groupName, false, generatePreview); 230 * @param {boolean=} generatePreview 236 _wrapObject: function(object, objectGroupName, forceValueType, generatePreview, columnNames, isTable) 239 return new InjectedScript.RemoteObject(object, objectGroupName, forceValueType, generatePreview, columnNames, isTable); 487 * @param {boolean} generatePreview 490 evaluate: function(expression, objectGroup, injectCommandLineAPI, returnByValue, generatePreview) 492 return this._evaluateAndWrap(InjectedScriptHost.evaluate, InjectedScriptHost, expression, objectGroup, false, injectCommandLineAPI, returnByValue, generatePreview); 566 * @param {boolean} generatePreview [all...] |
InspectorDebuggerAgent.h | 122 const bool* generatePreview,
|
InspectorDebuggerAgent.cpp | 806 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<RemoteObject>& result, TypeBuilder::OptOutput<bool>* 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); 163 RuntimeAgent.evaluate(expression, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, this._currentExecutionContext ? this._currentExecutionContext.id : undefined, returnByValue, generatePreview, evalCallback);
|
DebuggerModel.js | 603 * @param {boolean} generatePreview 606 evaluateOnSelectedCallFrame: function(code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, callback) 626 this.selectedCallFrame().evaluate(code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, didEvaluate.bind(this)); 923 * @param {boolean} generatePreview 926 evaluate: function(code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, callback) 943 DebuggerAgent.evaluateOnCallFrame(this._payload.callFrameId, code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, didEvaluateOnCallFrame.bind(this)); [all...] |
/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...] |
/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) {
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
WidgetPreviewLoader.java | 238 final Bitmap generatedPreview = generatePreview(o, unusedBitmap); 241 throw new RuntimeException("generatePreview is not recycling the bitmap " + o); 453 public Bitmap generatePreview(Object info, Bitmap preview) {
|