Home
last modified time | relevance | path

Searched refs:export (Results 1 – 25 of 5392) sorted by relevance

12345678910>>...216

/third_party/typescript/tests/baselines/reference/
DmanyConstExports.types2 export const exp0 = "test";
6 export const exp1 = "test";
10 export const exp2 = "test";
14 export const exp3 = "test";
18 export const exp4 = "test";
22 export const exp5 = "test";
26 export const exp6 = "test";
30 export const exp7 = "test";
34 export const exp8 = "test";
38 export const exp9 = "test";
[all …]
DmanyConstExports.symbols2 export const exp0 = "test";
5 export const exp1 = "test";
8 export const exp2 = "test";
11 export const exp3 = "test";
14 export const exp4 = "test";
17 export const exp5 = "test";
20 export const exp6 = "test";
23 export const exp7 = "test";
26 export const exp8 = "test";
29 export const exp9 = "test";
[all …]
DexportAlreadySeen.errors.txt1 tests/cases/compiler/exportAlreadySeen.ts(2,12): error TS1030: 'export' modifier already seen.
2 tests/cases/compiler/exportAlreadySeen.ts(3,12): error TS1030: 'export' modifier already seen.
3 tests/cases/compiler/exportAlreadySeen.ts(5,12): error TS1030: 'export' modifier already seen.
4 tests/cases/compiler/exportAlreadySeen.ts(6,16): error TS1030: 'export' modifier already seen.
5 tests/cases/compiler/exportAlreadySeen.ts(7,16): error TS1030: 'export' modifier already seen.
6 tests/cases/compiler/exportAlreadySeen.ts(12,12): error TS1030: 'export' modifier already seen.
7 tests/cases/compiler/exportAlreadySeen.ts(13,12): error TS1030: 'export' modifier already seen.
8 tests/cases/compiler/exportAlreadySeen.ts(15,12): error TS1030: 'export' modifier already seen.
9 tests/cases/compiler/exportAlreadySeen.ts(16,16): error TS1030: 'export' modifier already seen.
10 tests/cases/compiler/exportAlreadySeen.ts(17,16): error TS1030: 'export' modifier already seen.
[all …]
DcollisionExportsRequireAndModule.errors.txt6 export module require {
9 export interface I {
11 export class C {
14 export function foo(): require.I {
17 export module exports {
20 export interface I {
22 export class C {
25 export function foo2(): exports.I {
30 export interface I {
32 export class C {
[all …]
DcollisionExportsRequireAndModule.types2 export module require {
5 export interface I {
7 export class C {
11 export function foo(): require.I {
18 export module exports {
21 export interface I {
23 export class C {
27 export function foo2(): exports.I {
40 export interface I {
42 export class C {
[all …]
DduplicateExportAssignments.errors.txt1 tests/cases/conformance/externalModules/foo1.ts(3,10): error TS2300: Duplicate identifier 'export='.
2 tests/cases/conformance/externalModules/foo1.ts(4,10): error TS2300: Duplicate identifier 'export='.
3 tests/cases/conformance/externalModules/foo2.ts(3,10): error TS2300: Duplicate identifier 'export='.
4 tests/cases/conformance/externalModules/foo2.ts(4,10): error TS2300: Duplicate identifier 'export='.
5 tests/cases/conformance/externalModules/foo3.ts(7,10): error TS2300: Duplicate identifier 'export='.
6 tests/cases/conformance/externalModules/foo3.ts(8,10): error TS2300: Duplicate identifier 'export='.
7 tests/cases/conformance/externalModules/foo4.ts(1,10): error TS2300: Duplicate identifier 'export='.
8 tests/cases/conformance/externalModules/foo4.ts(8,10): error TS2300: Duplicate identifier 'export='.
9 tests/cases/conformance/externalModules/foo5.ts(4,10): error TS2300: Duplicate identifier 'export='.
10 tests/cases/conformance/externalModules/foo5.ts(5,10): error TS2300: Duplicate identifier 'export='.
[all …]
DcollisionExportsRequireAndAmbientModule.types2 export declare module require {
5 export interface I {
7 export class C {
11 export function foo(): require.I {
18 export declare module exports {
21 export interface I {
23 export class C {
27 export function foo2(): exports.I {
40 export interface I {
42 export class C {
[all …]
DtypeofAnExportedType.errors.txt7 export var x = 1;
8 export var r1: typeof x;
9 export var y = { foo: '' };
10 export var r2: typeof y;
11 export class C {
14 export var c: C;
17 export var r3: typeof C;
18 export var r4: typeof c;
19 export var r4b: typeof c2;
21 export interface I {
[all …]
DprivacyImport.types2 export module m1 {
5 export module m1_M1_public {
8 export class c1 {
11 export function f1() {
18 export var v1 = c1;
22 export var v2: c1;
29 export class c1 {
32 export function f1() {
39 export var v1 = c1;
43 export var v2: c1;
[all …]
Des6ImportNamedImportWithExport.types2 export var a = 10;
6 export var x = a;
10 export var m = a;
14 export var a1 = 10;
18 export var x1 = 10;
22 export var z1 = 10;
26 export var z2 = 10;
30 export var aaaa = 10;
35 export import { } from "./server";
36 export import { a } from "./server";
[all …]
DexportAlreadySeen.types5 export export var x = 1;
9 export export function f() { }
12 export export module N {
15 export export class C { }
18 export export interface I { }
25 export export var x;
28 export export function f()
31 export export module N {
34 export export class C { }
37 export export interface I { }
DdeclarationEmitNameConflicts.types5 export module M {
8 export function f() { }
11 export class C { }
14 export module N {
17 export function g() { };
20 export interface I { }
23 export import a = M.f;
28 export import b = M.C;
33 export import c = N;
37 export import d = im;
[all …]
DtypeofAnExportedType.types2 export var x = 1;
6 export var r1: typeof x;
10 export var y = { foo: '' };
16 export var r2: typeof y;
20 export class C {
26 export var c: C;
32 export var r3: typeof C;
36 export var r4: typeof c;
40 export var r4b: typeof c2;
44 export interface I {
[all …]
DprivacyLocalInternalReferenceImportWithExport.types6 export class c_private {
9 export enum e_private {
18 export function f_private() {
25 export var v_private = new c_private();
30 export interface i_private {
32 export module mi_private {
35 export class c {
39 export module mu_private {
40 export interface i {
46 export module m_public {
[all …]
DprivacyImportParseErrors.errors.txt1 tests/cases/compiler/privacyImportParseErrors.ts(22,5): error TS2668: 'export' modifier cannot be a…
10 tests/cases/compiler/privacyImportParseErrors.ts(106,5): error TS2668: 'export' modifier cannot be …
19 tests/cases/compiler/privacyImportParseErrors.ts(180,1): error TS2668: 'export' modifier cannot be …
21 tests/cases/compiler/privacyImportParseErrors.ts(198,1): error TS2668: 'export' modifier cannot be …
27 tests/cases/compiler/privacyImportParseErrors.ts(255,1): error TS2668: 'export' modifier cannot be …
45 tests/cases/compiler/privacyImportParseErrors.ts(326,1): error TS2668: 'export' modifier cannot be …
46 tests/cases/compiler/privacyImportParseErrors.ts(326,9): error TS1029: 'export' modifier must prece…
59 export module m1 {
60 export module m1_M1_public {
61 export class c1 {
[all …]
/third_party/flutter/flutter/packages/flutter/lib/
Dmaterial.dart19 export 'src/material/about.dart';
20 export 'src/material/animated_icons.dart';
21 export 'src/material/app.dart';
22 export 'src/material/app_bar.dart';
23 export 'src/material/app_bar_theme.dart';
24 export 'src/material/arc.dart';
25 export 'src/material/back_button.dart';
26 export 'src/material/banner.dart';
27 export 'src/material/banner_theme.dart';
28 export 'src/material/bottom_app_bar.dart';
[all …]
Dwidgets.dart15 export 'package:vector_math/vector_math_64.dart' show Matrix4;
17 export 'src/widgets/actions.dart';
18 export 'src/widgets/animated_cross_fade.dart';
19 export 'src/widgets/animated_list.dart';
20 export 'src/widgets/animated_size.dart';
21 export 'src/widgets/animated_switcher.dart';
22 export 'src/widgets/annotated_region.dart';
23 export 'src/widgets/app.dart';
24 export 'src/widgets/async.dart';
25 export 'src/widgets/automatic_keep_alive.dart';
[all …]
Dpainting.dart20 export 'dart:ui' show Shadow, PlaceholderAlignment;
22 export 'src/painting/alignment.dart';
23 export 'src/painting/basic_types.dart';
24 export 'src/painting/beveled_rectangle_border.dart';
25 export 'src/painting/binding.dart';
26 export 'src/painting/border_radius.dart';
27 export 'src/painting/borders.dart';
28 export 'src/painting/box_border.dart';
29 export 'src/painting/box_decoration.dart';
30 export 'src/painting/box_fit.dart';
[all …]
Drendering.dart24 export 'package:flutter/foundation.dart' show
30 export 'package:flutter/semantics.dart';
31 export 'package:vector_math/vector_math_64.dart' show Matrix4;
33 export 'src/rendering/animated_size.dart';
34 export 'src/rendering/binding.dart';
35 export 'src/rendering/box.dart';
36 export 'src/rendering/custom_layout.dart';
37 export 'src/rendering/custom_paint.dart';
38 export 'src/rendering/debug.dart';
39 export 'src/rendering/debug_overflow_indicator.dart';
[all …]
Dcupertino.dart12 export 'src/cupertino/action_sheet.dart';
13 export 'src/cupertino/activity_indicator.dart';
14 export 'src/cupertino/app.dart';
15 export 'src/cupertino/bottom_tab_bar.dart';
16 export 'src/cupertino/button.dart';
17 export 'src/cupertino/colors.dart';
18 export 'src/cupertino/date_picker.dart';
19 export 'src/cupertino/dialog.dart';
20 export 'src/cupertino/icons.dart';
21 export 'src/cupertino/localizations.dart';
[all …]
Dgestures.dart10 export 'src/gestures/arena.dart';
11 export 'src/gestures/binding.dart';
12 export 'src/gestures/constants.dart';
13 export 'src/gestures/converter.dart';
14 export 'src/gestures/debug.dart';
15 export 'src/gestures/drag.dart';
16 export 'src/gestures/drag_details.dart';
17 export 'src/gestures/eager.dart';
18 export 'src/gestures/events.dart';
19 export 'src/gestures/force_press.dart';
[all …]
Dservices.dart13 export 'src/services/asset_bundle.dart';
14 export 'src/services/binary_messenger.dart';
15 export 'src/services/binding.dart';
16 export 'src/services/clipboard.dart';
17 export 'src/services/font_loader.dart';
18 export 'src/services/haptic_feedback.dart';
19 export 'src/services/keyboard_key.dart';
20 export 'src/services/message_codec.dart';
21 export 'src/services/message_codecs.dart';
22 export 'src/services/platform_channel.dart';
[all …]
/third_party/skia/third_party/externals/brotli/
D.gitattributes4 **/** export-ignore
7 bootstrap !export-ignore
8 BUILD !export-ignore
9 CMakeLists.txt !export-ignore
10 compiler_config_setting.bzl !export-ignore
11 configure !export-ignore
12 configure-cmake !export-ignore
13 configure.ac !export-ignore
14 CONTRIBUTING.md !export-ignore
15 LICENSE !export-ignore
[all …]
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/
Dmaterial.dart5 export 'backdrop_demo.dart';
6 export 'banner_demo.dart';
7 export 'bottom_app_bar_demo.dart';
8 export 'bottom_navigation_demo.dart';
9 export 'buttons_demo.dart';
10 export 'cards_demo.dart';
11 export 'chip_demo.dart';
12 export 'data_table_demo.dart';
13 export 'date_and_time_picker_demo.dart';
14 export 'dialog_demo.dart';
[all …]
/third_party/rust/crates/quote/benches/
Dlib.rs28 fn deserialize<__D>(__deserializer: __D) -> _serde::export::Result<Self, __D::Error>
43 __formatter: &mut _serde::export::Formatter,
44 ) -> _serde::export::fmt::Result {
45 _serde::export::Formatter::write_str(__formatter, "field identifier")
47 … fn visit_u64<__E>(self, __value: u64) -> _serde::export::Result<Self::Value, __E>
52 0u64 => _serde::export::Ok(__Field::__field0),
53 1u64 => _serde::export::Ok(__Field::__field1),
54 _ => _serde::export::Err(_serde::de::Error::invalid_value(
60 … fn visit_str<__E>(self, __value: &str) -> _serde::export::Result<Self::Value, __E>
65 "id" => _serde::export::Ok(__Field::__field0),
[all …]

12345678910>>...216