Home
last modified time | relevance | path

Searched full:base (Results 1 – 25 of 11138) sorted by relevance

12345678910>>...446

/third_party/e2fsprogs/debian/
Dlibext2fs2.symbols3 e2p_edit_feature2@Base 1.40.7
4 e2p_edit_feature@Base 1.37
5 e2p_edit_mntopts@Base 1.37
6 e2p_encmode2string@Base 1.43
7 e2p_encoding2str@Base 1.45.1
8 e2p_errcode2str@Base 1.46.0
9 e2p_feature2string@Base 1.37
10 e2p_feature_to_string@Base 1.45.6
11 e2p_get_encoding_flags@Base 1.45
12 e2p_hash2string@Base 1.37
[all …]
Dlibblkid1.symbols2 blkid__scan_dir@Base 1.41.1
3 blkid_debug_mask@Base 1.33
4 blkid_dev_devname@Base 1.33
5 blkid_dev_has_tag@Base 1.38
6 blkid_dev_iterate_begin@Base 1.33
7 blkid_dev_iterate_end@Base 1.33
8 blkid_dev_next@Base 1.33
9 blkid_dev_set_search@Base 1.38
10 #MISSING: 1.41.1# blkid_devdirs@Base 1.34
11 blkid_devno_to_devname@Base 1.33
[all …]
Dlibss2.symbols3 _ss_pager_name@Base 1.01
4 _ss_table@Base 1.01
5 et_ss_error_table@Base 1.35
6 initialize_ss_error_table@Base 1.01
7 initialize_ss_error_table_r@Base 1.34
8 ss_abort_subsystem@Base 1.01
9 ss_add_info_dir@Base 1.01
10 ss_add_request_table@Base 1.01
11 ss_create_invocation@Base 1.01
12 ss_delete_info_dir@Base 1.01
[all …]
/third_party/typescript/tests/baselines/reference/
DjsDeclarationsParameterTagReusesInputNodeInEmit2.types1 === tests/cases/conformance/jsdoc/declarations/base.js ===
2 class Base {
3 >Base : Base
9 >BaseFactory : { (): Base; Base: typeof Base; }
10 >() => { return new Base();} : { (): Base; Base: typeof Base; }
12 return new Base();
13 >new Base() : Base
14 >Base : typeof Base
18 BaseFactory.Base = Base;
19 >BaseFactory.Base = Base : typeof Base
[all …]
DjsDeclarationsParameterTagReusesInputNodeInEmit1.types1 === tests/cases/conformance/jsdoc/declarations/base.js ===
2 class Base {
3 >Base : Base
9 >BaseFactory : { (): Base; Base: typeof Base; }
10 >() => { return new Base();} : { (): Base; Base: typeof Base; }
12 return new Base();
13 >new Base() : Base
14 >Base : typeof Base
18 BaseFactory.Base = Base;
19 >BaseFactory.Base = Base : typeof Base
[all …]
DcomparisonOperatorWithSubtypeObjectOnConstructorSignature.types2 class Base {
3 >Base : Base
9 class Derived extends Base {
11 >Base : Base
17 var a1: { new (): Base };
18 >a1 : new () => Base
20 var b1: { new (): Base };
21 >b1 : new () => Base
23 var a2: { new (a: number, b: string): Base };
24 >a2 : new (a: number, b: string) => Base
[all …]
DundefinedIsSubtypeOfEverything.types4 class Base {
5 >Base : Base
12 class D0 extends Base {
14 >Base : Base
20 class DA extends Base {
22 >Base : Base
29 class D1 extends Base {
31 >Base : Base
37 class D1A extends Base {
39 >Base : Base
[all …]
DcomparisonOperatorWithNoRelationshipObjectsOnConstructorSignature.errors.txt1 …,12): error TS2365: Operator '<' cannot be applied to types '{ fn(): Base; }' and 'new () => Base'.
2 … '<' cannot be applied to types 'new (a: number, b: string) => Base' and 'new (a: string) => Base'.
3 …tor '<' cannot be applied to types 'new (a: Base, b: string) => Base' and 'new (a: Derived, b: Bas…
4 …s(38,12): error TS2365: Operator '<' cannot be applied to types 'new () => Base' and 'new () => C'.
5 …TS2365: Operator '<' cannot be applied to types 'new (a?: Base) => Base' and 'new (a?: C) => Base'.
6 …: Operator '<' cannot be applied to types 'new (...a: Base[]) => Base' and 'new (...a: C[]) => Bas…
7 …,12): error TS2365: Operator '<' cannot be applied to types 'new () => Base' and '{ fn(): Base; }'.
8 …or '<' cannot be applied to types 'new (a: string) => Base' and 'new (a: number, b: string) => Bas…
9 …' cannot be applied to types 'new (a: Derived, b: Base) => Base' and 'new (a: Base, b: string) =>
10 …s(46,12): error TS2365: Operator '<' cannot be applied to types 'new () => C' and 'new () => Base'.
[all …]
DcomparisonOperatorWithNoRelationshipObjectsOnConstructorSignature.types2 class Base {
3 >Base : Base
9 class Derived extends Base {
11 >Base : Base
24 var a1: { fn(): Base };
25 >a1 : { fn(): Base; }
26 >fn : () => Base
28 var b1: { new (): Base };
29 >b1 : new () => Base
31 var a2: { new (a: number, b: string): Base };
[all …]
DgeneratedContextualTyping.types2 class Base { private p; }
3 >Base : Base
6 class Derived1 extends Base { private m; }
8 >Base : Base
11 class Derived2 extends Base { private n; }
13 >Base : Base
20 var b = new Base(), d1 = new Derived1(), d2 = new Derived2();
21 >b : Base
22 >new Base() : Base
23 >Base : typeof Base
[all …]
DassignmentCompatWithObjectMembersOptionality.types2 // Derived member is not optional but base member is, should be ok
4 class Base { foo: string; }
5 >Base : Base
8 class Derived extends Base { bar: string; }
10 >Base : Base
23 opt?: Base
24 >opt : Base
29 var a: { opt?: Base; }
30 >a : { opt?: Base; }
31 >opt : Base
[all …]
DassignmentCompatWithObjectMembersOptionality2.types5 class Base { foo: string; }
6 >Base : Base
9 class Derived extends Base { bar: string; }
11 >Base : Base
24 opt?: Base
25 >opt : Base
30 var a: { opt?: Base; }
31 >a : { opt?: Base; }
32 >opt : Base
34 var b: typeof a = { opt: new Base() }
[all …]
DdeclarationEmitNameConflicts2.types2 module X.Y.base {
5 >base : typeof base
23 module X.Y.base.Z {
26 >base : typeof base
29 export var f = X.Y.base.f; // Should be base.f
31 >X.Y.base.f : () => void
32 >X.Y.base : typeof base
36 >base : typeof base
39 export var C = X.Y.base.C; // Should be base.C
40 >C : typeof base.C
[all …]
DderivedClassOverridesProtectedMembers3.errors.txt1 …esProtectedMembers3.ts(22,7): error TS2415: Class 'Derived1' incorrectly extends base class 'Base'.
2 Property 'a' is protected in type 'Derived1' but public in type 'Base'.
3 …esProtectedMembers3.ts(27,7): error TS2415: Class 'Derived2' incorrectly extends base class 'Base'.
4 Property 'b' is protected in type 'Derived2' but public in type 'Base'.
5 …esProtectedMembers3.ts(32,7): error TS2415: Class 'Derived3' incorrectly extends base class 'Base'.
6 Property 'c' is protected in type 'Derived3' but public in type 'Base'.
7 …esProtectedMembers3.ts(37,7): error TS2415: Class 'Derived4' incorrectly extends base class 'Base'.
8 Property 'c' is protected in type 'Derived4' but public in type 'Base'.
9 …esProtectedMembers3.ts(42,7): error TS2415: Class 'Derived5' incorrectly extends base class 'Base'.
10 Property 'd' is protected in type 'Derived5' but public in type 'Base'.
[all …]
DgenericCallWithConstraintsTypeArgumentInference.types4 class Base { foo: string; }
5 >Base : Base
8 class Derived extends Base { bar: string; }
10 >Base : Base
18 var b: Base;
19 >b : Base
27 function foo<T extends Base>(t: T) {
28 >foo : <T extends Base>(t: T) => T
35 var r = foo(b); // Base
36 >r : Base
[all …]
DjsDeclarationsParameterTagReusesInputNodeInEmit1.symbols1 === tests/cases/conformance/jsdoc/declarations/base.js ===
2 class Base {
3 >Base : Symbol(Base, Decl(base.js, 0, 0))
9 >BaseFactory : Symbol(BaseFactory, Decl(base.js, 4, 5), Decl(base.js, 6, 2))
11 return new Base();
12 >Base : Symbol(Base, Decl(base.js, 0, 0))
16 BaseFactory.Base = Base;
17 >BaseFactory.Base : Symbol(BaseFactory.Base, Decl(base.js, 6, 2))
18 >BaseFactory : Symbol(BaseFactory, Decl(base.js, 4, 5), Decl(base.js, 6, 2))
19 >Base : Symbol(BaseFactory.Base, Decl(base.js, 6, 2))
[all …]
DjsDeclarationsParameterTagReusesInputNodeInEmit2.symbols1 === tests/cases/conformance/jsdoc/declarations/base.js ===
2 class Base {
3 >Base : Symbol(Base, Decl(base.js, 0, 0))
9 >BaseFactory : Symbol(BaseFactory, Decl(base.js, 4, 5), Decl(base.js, 6, 2))
11 return new Base();
12 >Base : Symbol(Base, Decl(base.js, 0, 0))
16 BaseFactory.Base = Base;
17 >BaseFactory.Base : Symbol(BaseFactory.Base, Decl(base.js, 6, 2))
18 >BaseFactory : Symbol(BaseFactory, Decl(base.js, 4, 5), Decl(base.js, 6, 2))
19 >Base : Symbol(BaseFactory.Base, Decl(base.js, 6, 2))
[all …]
DdeclarationEmitNameConflicts2.js2 module X.Y.base {
11 module X.Y.base.Z {
12 export var f = X.Y.base.f; // Should be base.f
13 export var C = X.Y.base.C; // Should be base.C
14 export var M = X.Y.base.M; // Should be base.M
15 export var E = X.Y.base.E; // Should be base.E
23 var base;
24 (function (base) { argument
26 base.f = f;
32 base.C = C;
[all …]
/third_party/mesa3d/src/mesa/sparc/
Dsparc_matrix.h35 #define LDMATRIX_0_1_2_3_12_13_14_15(BASE) \ argument
36 ldd [BASE + ( 0 * 0x4)], M0; \
37 ldd [BASE + ( 2 * 0x4)], M2; \
38 ldd [BASE + (12 * 0x4)], M12; \
39 ldd [BASE + (14 * 0x4)], M14
41 #define LDMATRIX_0_1_12_13(BASE) \ argument
42 ldd [BASE + ( 0 * 0x4)], M0; \
43 ldd [BASE + (12 * 0x4)], M12
45 #define LDMATRIX_0_12_13(BASE) \ argument
46 ld [BASE + ( 0 * 0x4)], M0; \
[all …]
/third_party/selinux/libsepol/tests/
Dtest-linker-types.c39 * - type in base, no modules
40 * - type in base optional, no modules
41 * - type a in base, b in module
42 * - type a in base optional, b in module
43 * - type a in base, b in module optional
44 * - type a in base optional, b in module optional
45 * - attr in base, no modules
46 * - attr in base optional, no modules
47 * - attr a in base, b in module
48 * - attr a in base optional, b in module
[all …]
/third_party/typescript/tests/cases/conformance/expressions/contextualTyping/
DgeneratedContextualTyping.ts3 class Base { private p; } class
4 class Derived1 extends Base { private m; }
5 class Derived2 extends Base { private n; }
7 var b = new Base(), d1 = new Derived1(), d2 = new Derived2();
8 var x1: () => Base[] = () => [d1, d2];
9 var x2: () => Base[] = function() { return [d1, d2] };
10 var x3: () => Base[] = function named() { return [d1, d2] };
11 var x4: { (): Base[]; } = () => [d1, d2];
12 var x5: { (): Base[]; } = function() { return [d1, d2] };
13 var x6: { (): Base[]; } = function named() { return [d1, d2] };
[all …]
/third_party/boost/libs/multi_index/test/
Dtest_key.cpp36 struct base struct
58 int gf(const base& b){return b.x;} in gf()
59 int negf(const base& b)noexcept{return b.x;} in negf()
61 struct derived:base
74 key<&base::x>,member<base,int,&base::x> in test_key()
77 key<&base::cx>,member<base,const int,&base::cx> in test_key()
80 key<&base::f>,mem_fun<base,int,&base::f> in test_key()
83 key<&base::cf>,const_mem_fun<base,int,&base::cf> in test_key()
86 key<&base::vf>,volatile_mem_fun<base,int,&base::vf> in test_key()
89 key<&base::cvf>,cv_mem_fun<base,int,&base::cvf> in test_key()
[all …]
/third_party/node/tools/gyp/tools/emacs/testdata/
Dmedia.gyp19 '../base/base.gyp:base',
20 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
125 'base/android/media_jni_registrar.cc',
126 'base/android/media_jni_registrar.h',
127 'base/audio_decoder.cc',
128 'base/audio_decoder.h',
129 'base/audio_decoder_config.cc',
130 'base/audio_decoder_config.h',
131 'base/audio_renderer.h',
132 'base/audio_renderer_mixer.cc',
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/tools/emacs/testdata/
Dmedia.gyp19 '../base/base.gyp:base',
20 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
125 'base/android/media_jni_registrar.cc',
126 'base/android/media_jni_registrar.h',
127 'base/audio_decoder.cc',
128 'base/audio_decoder.h',
129 'base/audio_decoder_config.cc',
130 'base/audio_decoder_config.h',
131 'base/audio_renderer.h',
132 'base/audio_renderer_mixer.cc',
[all …]
/third_party/grpc/src/abseil-cpp/
Dpreprocessed_builds.yaml3 - absl/base:config
11 - absl/base:core_headers
19 - absl/base:config
20 - absl/base:core_headers
22 - third_party/abseil-cpp/absl/base/internal/atomic_hook.h
23 name: absl/base:atomic_hook
25 - cmake_target: absl::base
27 - absl/base:atomic_hook
28 - absl/base:base_internal
29 - absl/base:config
[all …]

12345678910>>...446