Home
last modified time | relevance | path

Searched refs:appBundlePath (Results 1 – 4 of 4) sorted by relevance

/third_party/node/test/parallel/
Dtest-macos-app-sandbox.js18 const appBundlePath = path.join(tmpdir.path, 'node_sandboxed.app'); constant
19 const appBundleContentPath = path.join(appBundlePath, 'Contents');
29 fs.mkdirSync(appBundlePath);
46 appBundlePath,
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/app/
DFlutterActivityDelegate.java163 String appBundlePath = FlutterMain.findAppBundlePath(); in onCreate() local
164 if (appBundlePath != null) { in onCreate()
165 runBundle(appBundlePath); in onCreate()
340 String appBundlePath = intent.getDataString(); in loadIntent() local
341 if (appBundlePath == null) { in loadIntent()
343 appBundlePath = FlutterMain.findAppBundlePath(); in loadIntent()
349 runBundle(appBundlePath); in loadIntent()
356 private void runBundle(String appBundlePath) { in runBundle() argument
359 args.bundlePath = appBundlePath; in runBundle()
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/android/
DFlutterFragment.java204 private String appBundlePath = null; field in FlutterFragment.NewEngineFragmentBuilder
250 public NewEngineFragmentBuilder appBundlePath(@NonNull String appBundlePath) { in appBundlePath() argument
251 this.appBundlePath = appBundlePath; in appBundlePath()
340 args.putString(ARG_APP_BUNDLE_PATH, appBundlePath); in createArgs()
DFlutterActivity.java759 String appBundlePath = getIntent().getDataString(); in getAppBundlePath() local
760 if (appBundlePath != null) { in getAppBundlePath()
761 return appBundlePath; in getAppBundlePath()