Home
last modified time | relevance | path

Searched refs:appName (Results 1 – 25 of 53) sorted by relevance

123

/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/
Dbuild_fuchsia_test.dart84 const String appName = 'app_name';
86 .file(fs.path.join('fuchsia', 'meta', '$appName.cmx'))
91 pubspecFile.writeAsStringSync('name: $appName');
106 const String appName = 'app_name';
108 .file(fs.path.join('fuchsia', 'meta', '$appName.cmx'))
114 pubspecFile.writeAsStringSync('name: $appName');
129 const String appName = 'app_name';
131 .file(fs.path.join('fuchsia', 'meta', '$appName.cmx'))
137 pubspecFile.writeAsStringSync('name: $appName');
162 Future<bool> init(String buildPath, String appName) async {
[all …]
/third_party/flutter/flutter/packages/flutter_tools/lib/src/fuchsia/
Dfuchsia_build.dart71 final String appName = fuchsiaProject.project.manifest.appName;
73 final String assetManifest = fs.path.join(outDir, '${appName}_pkgassets');
80 outFile.write('data/$appName/$path=$assetDir/$path\n');
118 final String appName = fuchsiaProject.project.manifest.appName;
119 final String dilpmanifest = fs.path.join(outDir, '$appName.dilpmanifest');
120 final String pkgassets = fs.path.join(outDir, '${appName}_pkgassets');
130 fs.file(fs.path.join(fuchsiaProject.meta.path, '$appName.cmx'));
131 final File dstCmx = fs.file(fs.path.join(outDir, '$appName.cmx'));
139 manifestFile.writeAsStringSync('meta/$appName.cmx=${dstCmx.path}\n',
145 if (!await fuchsiaPM.init(pkgDir, appName)) {
Dapplication_package.dart67 super(projectBundleId: project.project.manifest.appName);
76 final String appName = project.project.manifest.appName;
77 return fs.file(fs.path.join(pkgDir, '$appName-0.far'));
81 String get name => project.project.manifest.appName;
Dfuchsia_kernel_compiler.dart39 final String appName = fuchsiaProject.project.manifest.appName;
43 final String manifestPath = fs.path.join(outDir, '$appName.dilpmanifest');
50 '--output', fs.path.join(outDir, '$appName.dil'),
54 '--component-name', appName,
Dfuchsia_pm.dart17 /// package for the app named [appName].
22 /// [appName] should probably be the name of the app from the pubspec file.
23 Future<bool> init(String buildPath, String appName) {
28 appName,
59 /// where $APPNAME is the same [appName] passed to [init], and meta/package
Dtiles_ctl.dart20 /// Finds the key for the app called [appName], or returns -1 if it can't be
22 static Future<int> findAppKey(FuchsiaDevice device, String appName) async {
30 if (entry.value.contains('$appName#meta')) {
Dfuchsia_device.dart254 final String appName = FlutterProject.current().manifest.appName;
299 this, fuchsiaPackageServer, appName)) {
312 'fuchsia-pkg://$packageServerName/$appName#meta/$appName.cmx';
336 getIsolateDiscoveryProtocol(appName);
/third_party/skia/third_party/externals/angle2/src/android_system_settings/src/com/android/angle/common/
DReceiver.java123 String appName = app.optString("AppName"); in parsePackageNames() local
124 if ((appName == null) || appName.isEmpty()) in parsePackageNames()
126 Log.e(TAG, "Invalid AppName: '" + appName + "'"); in parsePackageNames()
132 packageNames.append(appName); in parsePackageNames()
/third_party/flutter/skia/platform_tools/android/apps/
Dbuild.gradle27 def setupSkiaLibraryBuild(project, appVariants, appName) {
31 final String cmd = constructBuildCommand(project, variant, appName)
45 include "${appName}.so"
100 def constructBuildCommand(project, variant, appName) {
119 return "$ninja -C $out_dir $appName"
/third_party/skia/platform_tools/android/apps/
Dbuild.gradle27 def setupSkiaLibraryBuild(project, appVariants, appName) {
31 final String cmd = constructBuildCommand(project, variant, appName)
45 include "${appName}.so"
100 def constructBuildCommand(project, variant, appName) {
119 return "$ninja -C $out_dir $appName"
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/
DSDL_cocoaevents.m226 NSString *appName;
229 appName = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleDisplayName"];
230 if (!appName) {
231 appName = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleName"];
234 if (![appName length]) {
235 appName = [[NSProcessInfo processInfo] processName];
238 return appName;
244 NSString *appName;
266 appName = GetApplicationName();
270 title = [@"About " stringByAppendingString:appName];
[all …]
/third_party/popt/src/
Dpoptconfig.c202 if (con->appName == NULL) /* XXX can't happen. */ in configAppMatch()
211 rc = fnmatch(s, con->appName, flags); in configAppMatch()
214 rc = strcmp(s, con->appName); in configAppMatch()
223 const char * appName; in poptConfigLine() local
231 if (con->appName == NULL) in poptConfigLine()
236 appName = se; in poptConfigLine()
243 if (configAppMatch(con, appName)) goto exit; in poptConfigLine()
437 if (con->appName == NULL) goto exit; in poptReadDefaultConfig()
/third_party/ejdb/src/bindings/ejdb2_react_native/tests/
Dindex.js7 import {name as appName} from './app.json';
9 AppRegistry.registerComponent(appName, () => App);
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/
Dbuild_fuchsia.dart50 final String appName = flutterProject.fuchsia.project.manifest.appName;
52 flutterProject.fuchsia.meta.path, '$appName.cmx');
/third_party/weex-loader/src/
Dscript.js44 … const appName = process.env.abilityType === 'page' ? 'app.js' : `${process.env.abilityType}.js`
45 if (path.basename(this.resourcePath) !== appName) {
/third_party/flutter/skia/third_party/externals/angle2/src/feature_support_util/
Dfeature_support_util.cpp376 std::string appName = jObject[kJsonAppName].asString(); in CreateApplicationFromJson() local
382 application = new Application(appName, *version); in CreateApplicationFromJson()
387 application = new Application(appName); in CreateApplicationFromJson()
633 Scenario(const char *appName, const char *deviceMfr, const char *deviceModel) in Scenario() argument
634 : mApplication(Application(appName)), mDevice(Device(deviceMfr, deviceModel)) in Scenario()
880 const char *appName) in ANGLEShouldBeUsedForApplication() argument
884 if (!rules || !systemInfo || !appName || (systemInfo->gpus.size() != 1)) in ANGLEShouldBeUsedForApplication()
889 Scenario scenario(appName, systemInfo->machineManufacturer.c_str(), in ANGLEShouldBeUsedForApplication()
900 VERBOSE("Application \"%s\" should %s ANGLE", appName, rtn ? "use" : "NOT use"); in ANGLEShouldBeUsedForApplication()
Dfeature_support_util.h107 const char *appName);
/third_party/flutter/flutter/packages/flutter_tools/lib/src/linux/
Dapplication_package.dart54 BuildableLinuxApp({this.project}) : super(projectBundleId: project.project.manifest.appName);
69 String get name => project.project.manifest.appName;
/third_party/skia/third_party/externals/angle2/src/feature_support_util/
Dfeature_support_util.cpp578 Scenario(const char *appName, const char *deviceMfr, const char *deviceModel) in Scenario() argument
579 : mApplication(Application(StringPart(appName))), in Scenario()
843 const char *appName) in ANGLEShouldBeUsedForApplication() argument
847 if (!rules || !systemInfo || !appName || (systemInfo->gpus.size() != 1)) in ANGLEShouldBeUsedForApplication()
852 Scenario scenario(appName, systemInfo->machineManufacturer.c_str(), in ANGLEShouldBeUsedForApplication()
864 VERBOSE("Application \"%s\" should %s ANGLE.\n", appName, rtn ? "use" : "NOT use"); in ANGLEShouldBeUsedForApplication()
Dfeature_support_util.h107 const char *appName);
/third_party/flutter/flutter/packages/flutter_tools/lib/src/windows/
Dapplication_package.dart56 }) : super(projectBundleId: project.project.manifest.appName);
75 String get name => project.project.manifest.appName;
/third_party/jsframework/runtime/main/extend/systemplugin/napi/app/
DappVersionInfo.js17 appName: "[PC Preview] unknow appName", property
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/fuchsia/
Dfuchsia_device_test.dart418 const String appName = 'app_name';
422 pubspecFile.writeAsStringSync('name: $appName');
429 fs.file(fs.path.join('fuchsia', 'meta', '$appName.cmx'))
457 const String appName = 'app_name';
461 pubspecFile.writeAsStringSync('name: $appName');
894 Future<bool> init(String buildPath, String appName) async {
901 _appName = appName;
970 Future<bool> init(String buildPath, String appName) async {
1015 final String appName = fuchsiaProject.project.manifest.appName;
1016 final String manifestPath = fs.path.join(outDir, '$appName.dilpmanifest');
/third_party/flutter/flutter/packages/flutter_tools/lib/src/
Dcodegen.dart51 final String appName = flutterProject.manifest.appName;
52 …final String newPackagesContents = oldPackagesContents.replaceFirst('$appName:lib/', '$appName:$kM…
/third_party/flutter/flutter/packages/flutter_tools/lib/src/web/
Dweb_device.dart20 WebApplicationPackage(this.flutterProject) : super(id: flutterProject.manifest.appName);
25 String get name => flutterProject.manifest.appName;

123