Home
last modified time | relevance | path

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

12345678910>>...334

/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 …]
DdeclarationEmitNameConflicts.ts4 module f { export class c { } }
5 export = f;
9 export module M {
10 export function f() { }
11 export class C { }
12 export module N {
13 export function g() { };
14 export interface I { }
17 export import a = M.f;
18 export import b = M.C;
[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 …]
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 …]
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 …]
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 …]
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 …]
/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 …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/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/boost/tools/boost_install/test/iostreams/zlib-1.2.11/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/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_eslint/packages/types/src/
Dts-estree.ts4 export interface LineAndColumnData {
14 export interface SourceLocation {
24 export type Range = [number, number];
26 export interface BaseNode {
60 export interface BooleanToken extends BaseToken {
64 export interface IdentifierToken extends BaseToken {
68 export interface JSXIdentifierToken extends BaseToken {
72 export interface JSXTextToken extends BaseToken {
76 export interface KeywordToken extends BaseToken {
80 export interface NullToken extends BaseToken {
[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 …]
/third_party/typescript_eslint/packages/experimental-utils/typings/
Deslint-utils.d.ts2 export const findVariable: unknown;
3 export const getFunctionHeadLocation: unknown;
4 export const getFunctionNameWithKind: unknown;
5 export const getInnermostScope: unknown;
6 export const getPropertyName: unknown;
7 export const getStaticValue: unknown;
8 export const getStringIfConstant: unknown;
9 export const hasSideEffect: unknown;
10 export const isArrowToken: unknown;
11 export const isClosingBraceToken: unknown;
[all …]

12345678910>>...334