Home
last modified time | relevance | path

Searched full:export (Results 1 – 25 of 9109) sorted by relevance

12345678910>>...365

/third_party/typescript/tests/cases/compiler/
DmanyConstExports.ts3 export const exp0 = "test";
4 export const exp1 = "test";
5 export const exp2 = "test";
6 export const exp3 = "test";
7 export const exp4 = "test";
8 export const exp5 = "test";
9 export const exp6 = "test";
10 export const exp7 = "test";
11 export const exp8 = "test";
12 export const exp9 = "test";
[all …]
DprivacyImportParseErrors.ts2 export module m1 {
3 export module m1_M1_public {
4 export class c1 {
6 export function f1() {
9 export var v1 = c1;
10 export var v2: c1;
14 export class c1 {
16 export function f1() {
19 export var v1 = c1;
20 export var v2: c1;
[all …]
DprivacyImport.ts3 export module m1 {
4 export module m1_M1_public {
5 export class c1 {
7 export function f1() {
10 export var v1 = c1;
11 export var v2: c1;
15 export class c1 {
17 export function f1() {
20 export var v1 = c1;
21 export var v2: c1;
[all …]
DprivacyLocalInternalReferenceImportWithExport.ts5 export class c_private {
7 export enum e_private {
11 export function f_private() {
14 export var v_private = new c_private();
15 export interface i_private {
17 export module mi_private {
18 export class c {
21 export module mu_private {
22 export interface i {
28 export module m_public {
[all …]
DprivacyTopLevelInternalReferenceImportWithExport.ts5 export class c_private {
7 export enum e_private {
11 export function f_private() {
14 export var v_private = new c_private();
15 export interface i_private {
17 export module mi_private {
18 export class c {
21 export module mu_private {
22 export interface i {
28 export module m_public {
[all …]
DprivacyGloImportParseErrors.ts3 export module m1_M1_public {
4 export class c1 {
6 export function f1() {
9 export var v1 = c1;
10 export var v2: c1;
14 export class c1 {
16 export function f1() {
19 export var v1 = c1;
20 export var v2: c1;
23 export declare module "m1_M3_public" {
[all …]
DprivacyGloImport.ts3 export module m1_M1_public {
4 export class c1 {
6 export function f1() {
9 export var v1 = c1;
10 export var v2: c1;
14 export class c1 {
16 export function f1() {
19 export var v1 = c1;
20 export var v2: c1;
23 //export declare module "m1_M3_public" {
[all …]
/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.js2 export const exp0 = "test";
3 export const exp1 = "test";
4 export const exp2 = "test";
5 export const exp3 = "test";
6 export const exp4 = "test";
7 export const exp5 = "test";
8 export const exp6 = "test";
9 export const exp7 = "test";
10 export const exp8 = "test";
11 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 …]
DprivacyImport.js2 export module m1 {
3 export module m1_M1_public {
4 export class c1 {
6 export function f1() {
9 export var v1 = c1;
10 export var v2: c1;
14 export class c1 {
16 export function f1() {
19 export var v1 = c1;
20 export var v2: c1;
[all …]
DprivacyLocalInternalReferenceImportWithExport.js4 export class c_private {
6 export enum e_private {
10 export function f_private() {
13 export var v_private = new c_private(); variable
14 export interface i_private {
16 export module mi_private {
17 export class c {
20 export module mu_private {
21 export interface i {
27 export module m_public {
[all …]
DjsDeclarationsFunctionKeywordPropExhaustive.js20 foo.export = 1;
103 foo.export = 1;
172 export const x: number;
173 export const y: number;
175 export { _break as break };
177 export { _case as case };
179 export { _catch as catch };
181 export { _class as class };
183 export { _const as const };
185 export { _continue as continue };
[all …]
DprivacyImportParseErrors.js2 export module m1 {
3 export module m1_M1_public {
4 export class c1 {
6 export function f1() {
9 export var v1 = c1;
10 export var v2: c1;
14 export class c1 {
16 export function f1() {
19 export var v1 = c1;
20 export var v2: c1;
[all …]
Des6ImportNamedImportWithExport.js4 export var a = 10;
5 export var x = a;
6 export var m = a;
7 export var a1 = 10;
8 export var x1 = 10;
9 export var z1 = 10;
10 export var z2 = 10;
11 export var aaaa = 10;
14 export import { } from "./server";
15 export import { a } from "./server";
[all …]
DprivacyTopLevelInternalReferenceImportWithExport.js4 export class c_private {
6 export enum e_private {
10 export function f_private() {
13 export var v_private = new c_private(); variable
14 export interface i_private {
16 export module mi_private {
17 export class c {
20 export module mu_private {
21 export interface i {
27 export module m_public {
[all …]
DprivacyVarDeclFile.js7 export class publicClass {
10 export interface publicInterfaceWithPrivatePropertyTypes {
14 export interface publicInterfaceWithPublicPropertyTypes {
26 export class publicClassWithWithPrivatePropertyTypes {
33 export class publicClassWithWithPublicPropertyTypes {
54 export var publicVarWithPrivatePropertyTypes: privateClass; // Error
55 export var publicVarWithPublicPropertyTypes: publicClass;
59 export declare var publicAmbientVarWithPrivatePropertyTypes: privateClass; // Error
60 export declare var publicAmbientVarWithPublicPropertyTypes: publicClass;
64 export interface publicInterfaceWithPrivateModulePropertyTypes {
[all …]
DprivacyGloImport.js3 export module m1_M1_public {
4 export class c1 {
6 export function f1() {
9 export var v1 = c1;
10 export var v2: c1;
14 export class c1 {
16 export function f1() {
19 export var v1 = c1;
20 export var v2: c1;
23 //export declare module "m1_M3_public" {
[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 …]
/third_party/zlib/os400/
Dbndsrc7 EXPORT SYMBOL("adler32")
8 EXPORT SYMBOL("compress")
9 EXPORT SYMBOL("compress2")
10 EXPORT SYMBOL("crc32")
11 EXPORT SYMBOL("get_crc_table")
12 EXPORT SYMBOL("deflate")
13 EXPORT SYMBOL("deflateEnd")
14 EXPORT SYMBOL("deflateSetDictionary")
15 EXPORT SYMBOL("deflateCopy")
16 EXPORT SYMBOL("deflateReset")
[all …]
/third_party/typescript/src/compiler/factory/
DnodeTests.ts4 export function isNumericLiteral(node: Node): node is NumericLiteral {
8 export function isBigIntLiteral(node: Node): node is BigIntLiteral {
12 export function isStringLiteral(node: Node): node is StringLiteral {
16 export function isJsxText(node: Node): node is JsxText {
20 export function isRegularExpressionLiteral(node: Node): node is RegularExpressionLiteral {
24export function isNoSubstitutionTemplateLiteral(node: Node): node is NoSubstitutionTemplateLiteral…
30 export function isTemplateHead(node: Node): node is TemplateHead {
34 export function isTemplateMiddle(node: Node): node is TemplateMiddle {
38 export function isTemplateTail(node: Node): node is TemplateTail {
44 export function isIdentifier(node: Node): node is Identifier {
[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 …]

12345678910>>...365