Home
last modified time | relevance | path

Searched refs:mod (Results 1 – 25 of 1955) sorted by relevance

12345678910>>...79

/third_party/typescript/tests/baselines/reference/
DjsdocTypeFromChainedAssignment2.symbols2 var mod = require('./mod');
3 >mod : Symbol(mod, Decl(use.js, 0, 3))
5 >'./mod' : Symbol(mod, Decl(mod.js, 0, 0))
7 mod.f('no')
8 >mod.f : Symbol(mod.f, Decl(mod.js, 0, 0))
9 >mod : Symbol(mod, Decl(use.js, 0, 3))
10 >f : Symbol(mod.f, Decl(mod.js, 0, 0))
12 mod.g('also no')
13 >mod.g : Symbol(mod.g, Decl(mod.js, 1, 11))
14 >mod : Symbol(mod, Decl(use.js, 0, 3))
[all …]
DchainedPrototypeAssignment.symbols3 var mod = require('./mod');
4 >mod : Symbol(mod, Decl(use.js, 1, 3))
6 >'./mod' : Symbol(mod, Decl(mod.js, 0, 0))
8 var a = new mod.A()
10 >mod.A : Symbol(mod.A, Decl(mod.js, 6, 1))
11 >mod : Symbol(mod, Decl(use.js, 1, 3))
12 >A : Symbol(mod.A, Decl(mod.js, 6, 1))
14 var b = new mod.B()
16 >mod.B : Symbol(mod.B, Decl(mod.js, 7, 13))
17 >mod : Symbol(mod, Decl(use.js, 1, 3))
[all …]
DesModuleIntersectionCrash.symbols1 === tests/cases/compiler/mod.d.ts ===
3 >modObj : Symbol(modObj, Decl(mod.d.ts, 1, 13), Decl(mod.d.ts, 1, 42))
6 >modObj : Symbol(modObj, Decl(mod.d.ts, 1, 13), Decl(mod.d.ts, 1, 42))
7 >modObj : Symbol(modObj, Decl(mod.d.ts, 1, 13), Decl(mod.d.ts, 1, 42))
8 >A : Symbol(modObj.A, Decl(mod.d.ts, 2, 26))
9 >modObj : Symbol(modObj, Decl(mod.d.ts, 1, 13), Decl(mod.d.ts, 1, 42))
10 >B : Symbol(modObj.B, Decl(mod.d.ts, 3, 40))
13 >modObj : Symbol(modObj, Decl(mod.d.ts, 1, 13), Decl(mod.d.ts, 1, 42))
16 >A : Symbol(A, Decl(mod.d.ts, 2, 26))
17 >a : Symbol(A.a, Decl(mod.d.ts, 3, 27))
[all …]
DcheckOtherObjectAssignProperty.types2 const mod = require("./mod1");
3 >mod : typeof mod
4 >require("./mod1") : typeof mod
8 mod.thing;
9 >mod.thing : number
10 >mod : typeof mod
13 mod.other;
14 >mod.other : any
15 >mod : typeof mod
18 mod.prop;
[all …]
DcheckOtherObjectAssignProperty.symbols2 const mod = require("./mod1");
3 >mod : Symbol(mod, Decl(importer.js, 0, 5))
5 >"./mod1" : Symbol(mod, Decl(mod1.js, 0, 0))
7 mod.thing;
8 >mod.thing : Symbol(mod.thing, Decl(mod1.js, 0, 42))
9 >mod : Symbol(mod, Decl(importer.js, 0, 5))
10 >thing : Symbol(mod.thing, Decl(mod1.js, 0, 42))
12 mod.other;
13 >mod : Symbol(mod, Decl(importer.js, 0, 5))
15 mod.prop;
[all …]
DmoduleExportNestedNamespaces.symbols1 === tests/cases/conformance/salsa/mod.js ===
3 >module.exports.n : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 15))
4 >module.exports : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 15))
5 >module : Symbol(module, Decl(mod.js, 0, 0))
6 >exports : Symbol(module.exports, Decl(mod.js, 0, 0))
7 >n : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 15))
10 >module.exports.n.K : Symbol(n.K, Decl(mod.js, 0, 22))
11 >module.exports.n : Symbol(n.K, Decl(mod.js, 0, 22))
12 >module.exports : Symbol(module.exports, Decl(mod.js, 0, 0))
13 >module : Symbol(module, Decl(mod.js, 0, 0))
[all …]
DexportNestedNamespaces.symbols1 === tests/cases/conformance/salsa/mod.js ===
3 >exports.n : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 8))
4 >exports : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 8))
5 >n : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 8))
8 >exports.n.K : Symbol(n.K, Decl(mod.js, 0, 15))
9 >exports.n : Symbol(n.K, Decl(mod.js, 0, 15))
10 >exports : Symbol("tests/cases/conformance/salsa/mod", Decl(mod.js, 0, 0))
11 >n : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 8))
12 >K : Symbol(n.K, Decl(mod.js, 0, 15))
15 >this.x : Symbol(K.x, Decl(mod.js, 1, 27))
[all …]
DjsdocTypeFromChainedAssignment2.types2 var mod = require('./mod');
3 >mod : typeof mod
4 >require('./mod') : typeof mod
6 >'./mod' : "./mod"
8 mod.f('no')
9 >mod.f('no') : number
10 >mod.f : (n: number) => number
11 >mod : typeof mod
15 mod.g('also no')
16 >mod.g('also no') : number
[all …]
DnoCrashOnParameterNamedRequire.types3 >(function(require, module, exports){ const mod = require("./mod"); mod.foo;})(null, null, nu…
4 >(function(require, module, exports){ const mod = require("./mod"); mod.foo;}) : (require: an…
5 >function(require, module, exports){ const mod = require("./mod"); mod.foo;} : (require: any,…
10 const mod = require("./mod");
11 >mod : any
12 >require("./mod") : any
14 >"./mod" : "./mod"
16 mod.foo;
17 >mod.foo : any
18 >mod : any
DmoduleExportAssignment3.symbols2 var mod = require('./mod')
3 >mod : Symbol(mod, Decl(npm.js, 0, 3))
5 >'./mod' : Symbol("tests/cases/conformance/salsa/mod", Decl(mod.js, 0, 0))
7 mod() // should be callable from here too
8 >mod : Symbol(mod, Decl(npm.js, 0, 3))
10 === tests/cases/conformance/salsa/mod.js ===
12 >module.exports : Symbol(module.exports, Decl(mod.js, 0, 0))
13 >module : Symbol(export=, Decl(mod.js, 0, 0))
14 >exports : Symbol(export=, Decl(mod.js, 0, 0))
15 >x : Symbol(x, Decl(mod.js, 0, 16))
[all …]
DexportAsNamespace4(module=commonjs).js44 var __importStar = (this && this.__importStar) || function (mod) {
45 if (mod && mod.__esModule) return mod;
47 …if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mo…
48 __setModuleDefault(result, mod);
68 var __importStar = (this && this.__importStar) || function (mod) {
69 if (mod && mod.__esModule) return mod;
71 …if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mo…
72 __setModuleDefault(result, mod);
80 var __importDefault = (this && this.__importDefault) || function (mod) {
81 return (mod && mod.__esModule) ? mod : { "default": mod };
DexportAsNamespace4(module=amd).js45 var __importStar = (this && this.__importStar) || function (mod) {
46 if (mod && mod.__esModule) return mod;
48 …if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mo…
49 __setModuleDefault(result, mod);
71 var __importStar = (this && this.__importStar) || function (mod) {
72 if (mod && mod.__esModule) return mod;
74 …if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mo…
75 __setModuleDefault(result, mod);
85 var __importDefault = (this && this.__importDefault) || function (mod) {
86 return (mod && mod.__esModule) ? mod : { "default": mod };
DglobalFunctionAugmentationOverload.symbols1 === tests/cases/compiler/mod.d.ts ===
3 >expect : Symbol(expect, Decl(mod.d.ts, 0, 0), Decl(mine.ts, 2, 16))
4 >spy : Symbol(spy, Decl(mod.d.ts, 0, 24))
7 declare module "mod" {
8 >"mod" : Symbol("mod", Decl(mod.d.ts, 0, 45))
10 class mod {}
11 >mod : Symbol(mod, Decl(mod.d.ts, 1, 22))
13 export = mod;
14 >mod : Symbol(mod, Decl(mod.d.ts, 1, 22))
17 import "mod";
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
DMutablePatternModifierTest.java31 MutablePatternModifier mod = new MutablePatternModifier(false); in basic() local
32 mod.setPatternInfo(PatternStringParser.parseToPatternInfo("a0b"), null); in basic()
33 mod.setPatternAttributes(SignDisplay.AUTO, false); in basic()
34 mod.setSymbols(DecimalFormatSymbols.getInstance(ULocale.ENGLISH), in basic()
39 mod.setNumberProperties(Signum.POS, null); in basic()
40 assertEquals("a", getPrefix(mod)); in basic()
41 assertEquals("b", getSuffix(mod)); in basic()
42 mod.setPatternAttributes(SignDisplay.ALWAYS, false); in basic()
43 assertEquals("+a", getPrefix(mod)); in basic()
44 assertEquals("b", getSuffix(mod)); in basic()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
DMutablePatternModifierTest.java28 MutablePatternModifier mod = new MutablePatternModifier(false); in basic() local
29 mod.setPatternInfo(PatternStringParser.parseToPatternInfo("a0b"), null); in basic()
30 mod.setPatternAttributes(SignDisplay.AUTO, false); in basic()
31 mod.setSymbols(DecimalFormatSymbols.getInstance(ULocale.ENGLISH), in basic()
36 mod.setNumberProperties(Signum.POS, null); in basic()
37 assertEquals("a", getPrefix(mod)); in basic()
38 assertEquals("b", getSuffix(mod)); in basic()
39 mod.setPatternAttributes(SignDisplay.ALWAYS, false); in basic()
40 assertEquals("+a", getPrefix(mod)); in basic()
41 assertEquals("b", getSuffix(mod)); in basic()
[all …]
/third_party/icu/icu4c/source/test/intltest/
Dnumbertest_patternmodifier.cpp25 MutablePatternModifier mod(false); in testBasic() local
29 mod.setPatternInfo(&patternInfo, kUndefinedField); in testBasic()
30 mod.setPatternAttributes(UNUM_SIGN_AUTO, false); in testBasic()
32 mod.setSymbols(&symbols, {u"USD", status}, UNUM_UNIT_WIDTH_SHORT, nullptr, status); in testBasic()
37 mod.setNumberProperties(SIGNUM_POS, StandardPlural::Form::COUNT); in testBasic()
38 assertEquals("Pattern a0b", u"a", getPrefix(mod, status)); in testBasic()
39 assertEquals("Pattern a0b", u"b", getSuffix(mod, status)); in testBasic()
40 mod.setPatternAttributes(UNUM_SIGN_ALWAYS, false); in testBasic()
41 assertEquals("Pattern a0b", u"+a", getPrefix(mod, status)); in testBasic()
42 assertEquals("Pattern a0b", u"b", getSuffix(mod, status)); in testBasic()
[all …]
/third_party/flutter/skia/
Dgo.sum1 cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
2 cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
3 cloud.google.com/go v0.37.4/go.mod h1:NHPJ89PdicEuT9hdPXMROBD91xc5uRDxsMtSB16k7hw=
5 cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=
7 cloud.google.com/go v0.39.0/go.mod h1:rVLT6fkc8chs9sfPtFc1SBH6em7n+ZoXaG+87tDISts=
9 cloud.google.com/go v0.40.0/go.mod h1:Tk58MuI9rbLMKlAjeO/bDnteAx7tX2gJIXw4T5Jwlro=
11 cloud.google.com/go v0.41.0/go.mod h1:OauMR7DV8fzvZIl2qg6rkaIhD/vmgk4iwEw/h6ercmg=
13 cloud.google.com/go v0.43.0/go.mod h1:BOSR3VbTLkk6FDC/TcffxP4NF/FFBGA5ku+jvKOP7pg=
15 cloud.google.com/go v0.44.0/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=
17 cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=
[all …]
/third_party/e2fsprogs/tests/f_unshare_blocks_no_space/
Dexpect.118 File /file4.txt (inode #24, mod time Mon Mar 5 20:30:04 2018)
20 /file18.txt (inode #32, mod time Mon Mar 5 20:30:04 2018)
21 /file6.txt (inode #31, mod time Mon Mar 5 20:30:04 2018)
22 /file12.txt (inode #30, mod time Mon Mar 5 20:30:04 2018)
23 /file3.txt (inode #29, mod time Mon Mar 5 20:30:04 2018)
24 /file9.txt (inode #28, mod time Mon Mar 5 20:30:04 2018)
25 /file8.txt (inode #27, mod time Mon Mar 5 20:30:04 2018)
26 /file15.txt (inode #26, mod time Mon Mar 5 20:30:04 2018)
27 /file20.txt (inode #25, mod time Mon Mar 5 20:30:04 2018)
30 File /file20.txt (inode #25, mod time Mon Mar 5 20:30:04 2018)
[all …]
/third_party/boost/libs/beast/test/extras/include/boost/beast/test/
Dfuzz.hpp52 static_string<N> mod{input}; in fuzz() local
58 if(mod.size() >= mod.max_size()) in fuzz()
60 mod.insert(r(mod.size() + 1), 1, in fuzz()
65 if(mod.size() == 0) in fuzz()
67 mod.erase(r(mod.size()), 1); in fuzz()
72 if(mod.size() <= 1) in fuzz()
74 auto off = r(mod.size() - 1); in fuzz()
75 auto const temp = mod[off]; in fuzz()
76 mod[off] = mod[off + 1]; in fuzz()
77 mod[off + 1] = temp; in fuzz()
[all …]
/third_party/node/deps/npm/node_modules/import-lazy/
Dindex.js2 const lazy = (mod, fn, id) => mod === undefined ? fn(id) : mod; argument
6 let mod; variable
10 mod = lazy(mod, fn, id);
11 return mod;
19 mod = lazy(mod, fn, id);
20 if (typeof mod[prop] === 'function') {
22 return mod[prop].apply(mod, arguments);
26 return mod[prop];
38 let mod; variable
42 mod = lazy(mod, fn, id);
[all …]
/third_party/skia/
Dgo.sum1 cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
2 cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
3 cloud.google.com/go v0.37.4/go.mod h1:NHPJ89PdicEuT9hdPXMROBD91xc5uRDxsMtSB16k7hw=
5 cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=
7 cloud.google.com/go v0.43.0/go.mod h1:BOSR3VbTLkk6FDC/TcffxP4NF/FFBGA5ku+jvKOP7pg=
9 cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=
10 cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=
12 cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc=
14 cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0=
15 cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To=
[all …]
/third_party/skia/third_party/externals/tint/tools/src/
Dgo.sum1 github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA=
3 github.com/Microsoft/go-winio v0.4.16/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0=
5 github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7/go.mod h1:z4/9nQmJSSwwds7ejkxaJw…
7 github.com/acomagu/bufpipe v1.0.3/go.mod h1:mxdxdup/WdsKVreO5GpW4+M/1CE2sMG4jeGJ2sYmHc4=
9 github.com/andygrunwald/go-gerrit v0.0.0-20210709065208-9d38b0be0268/go.mod h1:aqcjwEnmLLSalFNYR0p2…
11 github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0U…
13 github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7…
14 github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
15 github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
17 github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
[all …]
/third_party/mesa3d/src/microsoft/compiler/
Ddxil_function.c110 allocate_function_from_predefined(struct dxil_module *mod, in allocate_function_from_predefined() argument
116 return dxil_alloc_func(mod, name, overload, in allocate_function_from_predefined()
126 dxil_get_function(struct dxil_module *mod, in dxil_get_function() argument
130 const struct rb_node *node = rb_tree_search(mod->functions, &descr, in dxil_get_function()
135 return allocate_function_from_predefined(mod, name, overload); in dxil_get_function()
156 get_type_from_string(struct dxil_module *mod, const char *param_descr, in get_type_from_string() argument
164 case DXIL_FUNC_PARAM_INT64: return dxil_module_get_int_type(mod, 64); in get_type_from_string()
165 case DXIL_FUNC_PARAM_INT32: return dxil_module_get_int_type(mod, 32); in get_type_from_string()
166 case DXIL_FUNC_PARAM_INT16: return dxil_module_get_int_type(mod, 16); in get_type_from_string()
167 case DXIL_FUNC_PARAM_INT8: return dxil_module_get_int_type(mod, 8); in get_type_from_string()
[all …]
Ddxil_signature.c369 fill_SV_param_nodes(struct dxil_module *mod, unsigned record_id, in fill_SV_param_nodes() argument
378 flattened_semantics[i] = dxil_get_metadata_int32(mod, semantic->index + i); in fill_SV_param_nodes()
380 SV_params_nodes[0] = dxil_get_metadata_int32(mod, (int)record_id); // Unique element ID in fill_SV_param_nodes()
381 SV_params_nodes[1] = dxil_get_metadata_string(mod, semantic->name); // Element name in fill_SV_param_nodes()
382 SV_params_nodes[2] = dxil_get_metadata_int8(mod, semantic->sig_comp_type); // Element type in fill_SV_param_nodes()
383 …SV_params_nodes[3] = dxil_get_metadata_int8(mod, (int8_t)semantic->kind); // Effective system value in fill_SV_param_nodes()
384 SV_params_nodes[4] = dxil_get_metadata_node(mod, flattened_semantics, in fill_SV_param_nodes()
386 SV_params_nodes[5] = dxil_get_metadata_int8(mod, semantic->interpolation); // Interpolation mode in fill_SV_param_nodes()
387 SV_params_nodes[6] = dxil_get_metadata_int32(mod, semantic->rows); // Number of rows in fill_SV_param_nodes()
388 SV_params_nodes[7] = dxil_get_metadata_int8(mod, semantic->cols); // Number of columns in fill_SV_param_nodes()
[all …]
/third_party/FreeBSD/sbin/fsck_msdosfs/
Dcheck.c55 int mod = 0; in checkfilesys() local
98 mod |= readfat(dosfs, &boot, &fat); in checkfilesys()
99 if (mod & FSFATAL) { in checkfilesys()
107 mod |= resetDosDirSection(fat); in checkfilesys()
109 if (mod & FSFATAL) in checkfilesys()
113 mod |= handleDirTree(fat); in checkfilesys()
114 if (mod & FSFATAL) in checkfilesys()
120 mod |= checklost(fat); in checkfilesys()
121 if (mod & FSFATAL) in checkfilesys()
125 if (mod & FSFATMOD) { in checkfilesys()
[all …]

12345678910>>...79