Home
last modified time | relevance | path

Searched refs:packageName (Results 1 – 25 of 198) sorted by relevance

12345678

/third_party/jsframework/runtime/main/app/
Dindex.ts96 const packageName: string = page.packageName; constant
97 const appPage: Page = new Page(options.appInstanceId, options, packageName, data);
99 Log.debug(`Create a page with: ${packageName}.`);
100 appMap[packageName] = new App(packageName, options.appInstanceId);
102 appMap[packageName].setTimer(timerAPIs);
104 global.__appProto__ = getPageGlobal(packageName);
107 const appDefine = (...args: any[]): void => defineFn(page, packageName, ...args);
109 bootstrap(page, packageName, name, config, _data || data);
113 const appFunction = () => pageMap.getTop(packageName) || page;
140 export function appError(packageName: string, errors: any): void {
[all …]
Dhelper.ts23 export function getPageGlobal(packageName: string): object | ProxyConstructor {
24 if (!appMap[packageName] || !appMap[packageName].appGlobal) {
27 return new Proxy(Object.create(appMap[packageName].appGlobal), {
30 return appMap[packageName].appGlobal;
DApp.ts29 constructor(packageName: string, appInstanceId: string) {
30 this._packageName = packageName || 'notset';
41 public get packageName() { method in App
45 public set packageName(packageName: string) { method in App
46 this._packageName = packageName;
/third_party/typescript/src/services/codefixes/
DfixCannotFindModule.ts15 const packageName = tryGetImportedPackageName(sourceFile, start); constant
16 if (packageName === undefined) return undefined;
17 … const typesPackageName = getTypesPackageNameToInstall(packageName, host, context.errorCode);
25 const packageName = tryGetImportedPackageName(diag.file, diag.start); constant
26 if (packageName === undefined) return undefined;
29 … const pkg = getTypesPackageNameToInstall(packageName, context.host, diag.code);
42 function getInstallCommand(fileName: string, packageName: string): InstallPackageAction {
43 return { type: "install package", file: fileName, packageName };
48 const { packageName } = parsePackageName(moduleName); constant
49 return isExternalModuleNameRelative(packageName) ? undefined : packageName;
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cTestPackages.cpp107 GL40TestPackage::GL40TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in GL40TestPackage() argument
109 : GL33TestPackage(testCtx, packageName, packageName, renderContextType) in GL40TestPackage()
147 GL41TestPackage::GL41TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in GL41TestPackage() argument
149 : GL40TestPackage(testCtx, packageName, packageName, renderContextType) in GL41TestPackage()
192 GL42TestPackage::GL42TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in GL42TestPackage() argument
194 : GL41TestPackage(testCtx, packageName, packageName, renderContextType) in GL42TestPackage()
241 GL42CompatTestPackage::GL42CompatTestPackage(tcu::TestContext& testCtx, const char* packageName, co… in GL42CompatTestPackage() argument
243 : TestPackage(testCtx, packageName, packageName, renderContextType, "gl_cts/data/") in GL42CompatTestPackage()
276 GL43TestPackage::GL43TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in GL43TestPackage() argument
278 : GL42TestPackage(testCtx, packageName, packageName, renderContextType) in GL43TestPackage()
[all …]
Dgl3cTestPackages.cpp137 GL30TestPackage::GL30TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in GL30TestPackage() argument
139 : TestPackage(testCtx, packageName, packageName, renderContextType, "gl_cts/data/") in GL30TestPackage()
178 GL31TestPackage::GL31TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in GL31TestPackage() argument
180 : GL30TestPackage(testCtx, packageName, packageName, renderContextType) in GL31TestPackage()
209 GL32TestPackage::GL32TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in GL32TestPackage() argument
211 : GL31TestPackage(testCtx, packageName, packageName, renderContextType) in GL32TestPackage()
270 GL33TestPackage::GL33TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in GL33TestPackage() argument
272 : GL32TestPackage(testCtx, packageName, packageName, renderContextType) in GL33TestPackage()
Dgl4cTestPackages.hpp36 GL40TestPackage(tcu::TestContext& testCtx, const char* packageName,
48 GL41TestPackage(tcu::TestContext& testCtx, const char* packageName,
60 GL42TestPackage(tcu::TestContext& testCtx, const char* packageName,
72 GL42CompatTestPackage(tcu::TestContext& testCtx, const char* packageName,
88 GL43TestPackage(tcu::TestContext& testCtx, const char* packageName,
100 GL44TestPackage(tcu::TestContext& testCtx, const char* packageName,
112 GL45TestPackage(tcu::TestContext& testCtx, const char* packageName,
124 GL46TestPackage(tcu::TestContext& testCtx, const char* packageName,
/third_party/node/deps/npm/test/tap/
Dadd-named-update-protocol-port.js9 var packageName = path.basename(__filename, '.js') variable
12 name: packageName,
15 name: packageName,
18 …all: 'https://localhost:' + common.altPort + '/registry/' + packageName + '/-/' + packageName + '-…
25 var iPackageName = packageName + 'i'
59 server1.get('/registry/' + packageName).reply(200, fooPkg)
61 '/registry/' + packageName + '/-/' + packageName + '-0.0.0.tgz'
68 packageName + '@0.0.0',
/third_party/flutter/flutter/packages/flutter_tools/lib/src/intellij/
Dintellij.dart25 for (String packageName in packageNames) {
26 if (!_hasPackage(packageName)) {
30 final String versionText = _readPackageVersion(packageName);
47 bool _hasPackage(String packageName) {
48 final String packagePath = fs.path.join(pluginsPath, packageName);
49 if (packageName.endsWith('.jar'))
54 String _readPackageVersion(String packageName) {
55 final String jarPath = packageName.endsWith('.jar')
56 ? fs.path.join(pluginsPath, packageName)
57 : fs.path.join(pluginsPath, packageName, 'lib', '$packageName.jar');
/third_party/typescript/tests/baselines/reference/
DimportCallExpressionInUMD5.types11 const packageName = '.';
12 >packageName : "."
15 const packageJson = await import(packageName + '/package.json');
17 >await import(packageName + '/package.json') : any
18 >import(packageName + '/package.json') : Promise<any>
19 >packageName + '/package.json' : string
20 >packageName : "."
DimportCallExpressionInUMD5.symbols10 const packageName = '.';
11 >packageName : Symbol(packageName, Decl(1.ts, 2, 9))
13 const packageJson = await import(packageName + '/package.json');
15 >packageName : Symbol(packageName, Decl(1.ts, 2, 9))
/third_party/node/tools/icu/
Diculslocs.cc68 icu::CharString packageName; variable
124 packageName.clear(); in calculatePackageName()
126 packageName.append(NAME, *status); in calculatePackageName()
128 packageName.append(U_TREE_SEPARATOR_STRING, *status); in calculatePackageName()
129 packageName.append(TREE, *status); in calculatePackageName()
133 printf("packageName: %s\n", packageName.data()); in calculatePackageName()
149 printf("Trying to open %s:%s\n", packageName.data(), loc); in localeExists()
152 ures_openDirect(packageName.data(), loc, &status)); in localeExists()
157 printf("%s:%s existed!\n", packageName.data(), loc); in localeExists()
164 packageName.data(), in localeExists()
[all …]
/third_party/vk-gl-cts/scripts/android/
Dinstall_apk.py119 def uninstall (adbPath, packageName, extraArgs = [], printPrefix=""): argument
120 print(printPrefix + "Removing existing %s...\n" % packageName,)
123 packageName
136 def installToDevice (device, adbPath, packageName, apkPath, printPrefix=""): argument
142 uninstall(adbPath, packageName, ['-s', device.serial], printPrefix)
145 def installToDevices (devices, doParallel, adbPath, packageName, apkPath): argument
148 …parallelApply(installToDevice, [(device, adbPath, packageName, apkPath, ("(%s):%s" % (device.model…
150 serialApply(installToDevice, [(device, adbPath, packageName, apkPath) for device in devices]);
152 def installToAllDevices (doParallel, adbPath, packageName, apkPath): argument
154 installToDevices(devices, doParallel, adbPath, packageName, apkPath)
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcSingleConfigTestPackage.cpp114 …ge::SingleConfigGL43TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in SingleConfigGL43TestPackage() argument
116 : deqp::TestPackage(testCtx, packageName, description, renderContextType, "gl_cts/data/") in SingleConfigGL43TestPackage()
148 …ge::SingleConfigGL44TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in SingleConfigGL44TestPackage() argument
150 : SingleConfigGL43TestPackage(testCtx, packageName, description, renderContextType) in SingleConfigGL44TestPackage()
177 …ge::SingleConfigGL45TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in SingleConfigGL45TestPackage() argument
179 : SingleConfigGL44TestPackage(testCtx, packageName, description, renderContextType) in SingleConfigGL45TestPackage()
206 …ge::SingleConfigGL46TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in SingleConfigGL46TestPackage() argument
208 : SingleConfigGL45TestPackage(testCtx, packageName, description, renderContextType) in SingleConfigGL46TestPackage()
234 …ge::SingleConfigES32TestPackage(tcu::TestContext& testCtx, const char* packageName, const char* de… in SingleConfigES32TestPackage() argument
236 : deqp::TestPackage(testCtx, packageName, description, renderContextType, "gl_cts/data/") in SingleConfigES32TestPackage()
DglcSingleConfigTestPackage.hpp37 SingleConfigGL43TestPackage(tcu::TestContext& testCtx, const char* packageName,
54 SingleConfigGL44TestPackage(tcu::TestContext& testCtx, const char* packageName,
69 SingleConfigGL45TestPackage(tcu::TestContext& testCtx, const char* packageName,
84 SingleConfigGL46TestPackage(tcu::TestContext& testCtx, const char* packageName,
99 SingleConfigES32TestPackage(tcu::TestContext& testCtx, const char* packageName,
/third_party/jsframework/runtime/main/extend/systemplugin/ohos/
DpackageManager.js31 packageName: "[PC preview] unknown package name", property
50 packageName: "[PC preview] unknown package name", property
72 packageName: "[PC preview] unknown package name", property
77 packageName: "[PC preview] unknown package name", property
97 packageName: "[PC preview] unknown package name", property
102 packageName: "[PC preview] unknown package name", property
131 packageName: "[PC preview] unknown package name", property
147 packageName: "[PC preview] unknown package name", property
/third_party/typescript/src/typingsInstallerCore/
DtypingsInstaller.ts7 dependencies: { [packageName: string]: { version: string } };
20 …function typingToFileName(cachePath: string, packageName: string, installTypingHost: InstallTyping…
22 …const result = resolveModuleName(packageName, combinePaths(cachePath, "index.d.ts"), { moduleResol…
27 … log.writeLine(`Failed to resolve ${packageName} in folder '${cachePath}': ${(<Error>e).message}`);
239 const packageName = getBaseFileName(key); constant
240 if (!packageName) {
243 … const typingFile = typingToFileName(cacheLocation, packageName, this.installTypingHost, this.log);
245 this.missingTypingsSet.add(packageName);
248 … const existingTypingFile = this.packageNameToTypingLocation.get(packageName);
255 …this.log.writeLine(`New typing for package ${packageName} from '${typingFile}' conflicts with exis…
[all …]
/third_party/vk-gl-cts/scripts/
Dconvert_case_list_to_xml.py66 packageName = sys.argv[1] variable
68 rootCase = TestCase(packageName, packageName, "TestPackage" )
69 caseNameHash = { packageName:rootCase }
72 lines = open(packageName + ".cases").readlines()
76 if line.startswith(packageName + "."):
95 open(packageName + "-cases.xml", "wt").write(xml)
/third_party/typescript/src/jsTyping/
DjsTyping.ts314 export function validatePackageName(packageName: string): PackageNameValidationResult {
315 return validatePackageNameWorker(packageName, /*supportScopedPackage*/ true);
318 …function validatePackageNameWorker(packageName: string, supportScopedPackage: false): NameValidati…
319 …function validatePackageNameWorker(packageName: string, supportScopedPackage: true): PackageNameVa…
320 …function validatePackageNameWorker(packageName: string, supportScopedPackage: boolean): PackageNam…
321 if (!packageName) {
324 if (packageName.length > maxPackageNameLength) {
327 if (packageName.charCodeAt(0) === CharacterCodes.dot) {
330 if (packageName.charCodeAt(0) === CharacterCodes._) {
336 const matches = /^@([^/]+)\/([^/]+)$/.exec(packageName);
[all …]
/third_party/flutter/flutter/packages/flutter_tools/lib/src/
Dasset.dart162 for (String packageName in packageMap.map.keys) {
163 final Uri package = packageMap.map[packageName];
179 packageName: packageName,
190 packageName: packageName,
348 for (String packageName in packageMap.map.keys) {
349 final Uri package = packageMap.map[packageName];
366 packageNames = <String>[packageName];
422 String packageName,
427 if (packageName == null)
432 packageName,
[all …]
/third_party/node/deps/npm/lib/
Dinit.js27 var packageName = initerName
29 packageName = initerName + '/create'
34 packageName = initerName
37 packageName = req.name.replace(/^(@[^/]+\/)?/, '$1create-')
39 packageName += '@' + req.rawSpec
51 …var npxArgs = [process.argv0, '[fake arg]', '--always-spawn', packageName, ...process.argv.slice(4…
Dfund.js80 function openFundingUrl (packageName, fundingSourceNumber, cb) { argument
99 const noFundingError = new Error(`No valid funding method available for: ${packageName}`)
107 packageName,
120 const packageName = args[0]
137 if (packageName) {
138 openFundingUrl(packageName, fundingSourceNumber, cb)
/third_party/vk-gl-cts/framework/common/
DtcuWaiverUtil.cpp80 const std::string& packageName,
148 const std::string& packageName, in WaiverTreeBuilder() argument
154 , m_packageName (packageName) in WaiverTreeBuilder()
412 const std::string& packageName,
428 const std::string& packageName, in GLWaiverTreeBuilder() argument
433 : WaiverTreeBuilder (waiverFile, packageName, "vendor", "r", sessionInfo, waiverTree) in GLWaiverTreeBuilder()
467 const std::string& packageName,
483 const std::string& packageName, in VKWaiverTreeBuilder() argument
488 : WaiverTreeBuilder(waiverFile, packageName, "vendorId", "d", sessionInfo, waiverTree) in VKWaiverTreeBuilder()
504 void WaiverUtil::setup(const std::string waiverFile, std::string packageName, deUint32 vendorId, de… in setup() argument
[all …]
/third_party/jsframework/test/ut/app/
Dbundle.ts53 packageName: 'com.example.test'
75 defineFn(page, options.packageName, '@app-application/a', [], (require, exports, module) => {
88 … defineFn(page, options.packageName, '@app-application/main', [], (require, exports, module) => {
97 const result = bootstrap(page, options.packageName, '@app-module/dom', undefined, undefined);
103 … const result = bootstrap(page, options.packageName, '@app-application/dom', undefined, undefined);
/third_party/node/deps/npm/node_modules/update-notifier/
Dindex.js27 name: options.pkg.name || options.packageName,
35 this.packageName = options.pkg.name;
48 this.config = new ConfigStore(`update-notifier-${this.packageName}`, {
102 return latestVersion()(this.packageName).then(latestVersion => {
107 name: this.packageName
120 … \nRun ' + chalk().cyan('npm i ' + (opts.isGlobal ? '-g ' : '') + this.packageName) + ' to update';

12345678