Home
last modified time | relevance | path

Searched refs:assetPath (Results 1 – 9 of 9) sorted by relevance

/third_party/flutter/skia/tools/
Dskottie2movie.cpp20 static DEFINE_string2(assetPath, a, "", "path to assets needed for json file");
84 SkString assetPath; in main() local
86 assetPath.set(FLAGS_assetPath[0]); in main()
88 assetPath = SkOSPath::Dirname(FLAGS_input[0]); in main()
90 SkDebugf("assetPath %s\n", assetPath.c_str()); in main()
93 .setResourceProvider(skottie_utils::FileResourceProvider::Make(assetPath)) in main()
/third_party/skia/tools/
Dskottie2movie.cpp26 static DEFINE_string2(assetPath, a, "", "path to assets needed for json file");
59 SkString assetPath; in main() local
61 assetPath.set(FLAGS_assetPath[0]); in main()
63 assetPath = SkOSPath::Dirname(FLAGS_input[0]); in main()
65 SkDebugf("assetPath %s\n", assetPath.c_str()); in main()
68 .setResourceProvider(skresources::FileResourceProvider::Make(assetPath)) in main()
/third_party/skia/modules/canvaskit/npm_build/
Dnode.example.js5 const assetPath = path.join(__dirname, '..', 'tests', 'assets'); constant
13 let img = fs.readFileSync(path.join(assetPath, 'mandrill_512.png'));
16 let fontData = fs.readFileSync(path.join(assetPath, 'Roboto-Regular.woff'));
57 let robotoData = fs.readFileSync(path.join(assetPath, 'Roboto-Regular.woff'));
/third_party/flutter/engine/flutter/testing/dart/
Dcodec_test.dart83 final String assetPath =
85 return File(assetPath);
/third_party/flutter/flutter/packages/flutter_tools/lib/src/
Dasset.dart491 List<String> variantsFor(String assetPath) {
492 final String assetName = fs.path.basename(assetPath);
493 final String directory = fs.path.dirname(assetPath);
665 final String assetPath = fs.path.fromUri(assetUri);
666 …etUri.pathSegments.first == 'packages' && !fs.isFileSync(fs.path.join(assetsBaseDir, assetPath))) {
Drun_hot.dart992 for (String assetPath in device.devFS.assetPathsToEvict) {
993 futures.add(device.views.first.uiIsolate.flutterEvictAsset(assetPath));
Dvmservice.dart1325 Future<Map<String, dynamic>> flutterEvictAsset(String assetPath) {
1329 'value': assetPath,
/third_party/flutter/flutter/packages/flutter_tools/lib/src/build_runner/
Dweb_fs.dart256 final String assetPath = request.url.path.replaceFirst('assets/', '');
257 final File file = fs.file(fs.path.join(getAssetBuildDirectory(), assetPath));
Dbuild_script.dart245 final String assetPath = id.pathSegments.first == 'lib'
249 assetPath, contents, Runtime.builtIn.map((Runtime runtime) => runtime.name).toSet());