Home
last modified time | relevance | path

Searched defs:export (Results 1 – 25 of 155) sorted by relevance

1234567

/third_party/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/
DsuperInStaticMembers1.ts119 export {}; property in B
127 export {}; property in B
135 export {}; property in B
143 export {}; property in B
151 export {}; property in B
159 export {}; property in B
167 export {}; property in B
175 export {}; property in B
183 export {}; property in B
191 export {}; property in B
[all …]
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/
DparserRealSource2.ts78 export enum ASTFlags { enumerator
97 export enum DeclFlags { enumerator
109 export enum ModuleFlags { enumerator
126 export enum SymbolFlags { enumerator
150 export enum VarFlags { enumerator
172 export enum FncFlags { enumerator
196 export enum SignatureFlags { enumerator
203 export function ToDeclFlags(fncFlags: FncFlags) : DeclFlags; enumerator
204 export function ToDeclFlags(varFlags: VarFlags) : DeclFlags; enumerator
205 export function ToDeclFlags(symFlags: SymbolFlags): DeclFlags; enumerator
[all …]
/third_party/node/deps/v8/src/base/
Dexport-template.h61 #define EXPORT_TEMPLATE_DECLARE(export) \ argument
63 #define EXPORT_TEMPLATE_DEFINE(export) \ argument
72 #define EXPORT_TEMPLATE_INVOKE(which, style, export) \ argument
74 #define EXPORT_TEMPLATE_INVOKE_2(which, style, export) \ argument
78 #define EXPORT_TEMPLATE_DECLARE_DEFAULT(export, _) export argument
79 #define EXPORT_TEMPLATE_DEFINE_DEFAULT(export, _) argument
84 #define EXPORT_TEMPLATE_DECLARE_MSVC_HACK(export, _) argument
85 #define EXPORT_TEMPLATE_DEFINE_MSVC_HACK(export, _) export argument
102 #define EXPORT_TEMPLATE_STYLE(export, _) EXPORT_TEMPLATE_STYLE_2(export, ) argument
103 #define EXPORT_TEMPLATE_STYLE_2(export, _) \ argument
[all …]
/third_party/typescript/tests/baselines/reference/
DramdaToolsNoInfinite2.js61 export type Not<B extends Boolean> = { variable
174 export type NonNullableFlat<O> = { variable
178 export type NonNullableDeep<O> = { variable
209 export type Numbers = { variable
373 export type _NumberOf<N extends number> = { variable
384 export type Empty<O extends object> = { variable
391 export type IterationMap = { variable
DprivacyLocalInternalReferenceImportWithoutExport.js13 export var v_private = new c_private(); variable
62 export var publicUse_im_private_c_private = new im_private_c_private(); variable
72 export var publicUse_im_private_mi_private = new im_private_mi_private.c(); variable
88 export var publicUse_im_private_c_public = new im_private_c_public(); variable
98 export var publicUse_im_private_mi_public = new im_private_mi_public.c(); variable
115 export var publicUse_im_private_c_private = new im_private_c_private(); variable
125 export var publicUse_im_private_mi_private = new im_private_mi_private.c(); variable
140 export var publicUse_im_private_c_public = new im_private_c_public(); variable
150 export var publicUse_im_private_mi_public = new im_private_mi_public.c(); variable
DNonInitializedExportInInternalModule.js31 export var e1 = new D; variable
32 export let f1 = new D; variable
33 export var g1: D = new D; variable
34 export let h1: D = new D; variable
DprivacyLocalInternalReferenceImportWithExport.js13 export var v_private = new c_private(); variable
62 export var publicUse_im_public_c_private = new im_public_c_private(); variable
72 export var publicUse_im_public_mi_private = new im_public_mi_private.c(); variable
88 export var publicUse_im_public_c_public = new im_public_c_public(); variable
98 export var publicUse_im_public_mi_public = new im_public_mi_public.c(); variable
115 export var publicUse_im_private_c_private = new im_private_c_private(); variable
125 export var publicUse_im_private_mi_private = new im_private_mi_private.c(); variable
140 export var publicUse_im_private_c_public = new im_private_c_public(); variable
150 export var publicUse_im_private_mi_public = new im_private_mi_public.c(); variable
DdeclFileTypeAnnotationVisibilityErrorVariableDeclaration.js14 export var l = new private1(); variable
20 export var l2 = new public1(); variable
31 export var l3 = new m2.public2(); variable
DerrorForUsingPropertyOfTypeAsType01.js21 export type Foo = { variable
30 export type Foo = { bar: number } variable
38 export type Foo = { bar: number } variable
DprivacyImportParseErrors.js41 export var m1_im1_private_v2_public = new m1_im1_private.c1(); variable
52 export var m1_im2_private_v2_public = new m1_im2_private.c1(); variable
62 export var m1_im3_private_v2_public = new m1_im3_private.c1(); variable
72 export var m1_im4_private_v2_public = new m1_im4_private.c1(); variable
125 export var m1_im1_private_v2_public = new m1_im1_private.c1(); variable
136 export var m1_im2_private_v2_public = new m1_im2_private.c1(); variable
146 export var m1_im3_private_v2_public = new m1_im3_private.c1(); variable
156 export var m1_im4_private_v2_public = new m1_im4_private.c1(); variable
DprivacyVar.js51 export var m1_v12_public = new C1_public(); variable
53 export var m1_v14_public = new C2_private(); //error variable
56 export var m1_v22_public: C1_public = new C1_public(); variable
58 export var m1_v24_public: C2_private = new C2_private(); // error variable
110 export var m2_v12_public = new m2_C1_public(); variable
112 export var m2_v14_public = new m2_C2_private(); variable
115 export var m2_v22_public: m2_C1_public = new m2_C1_public(); variable
117 export var m2_v24_public: m2_C2_private = new m2_C2_private(); variable
DdeclFileInternalAliases.js8 export var d = new x(); // emit the type as m.c variable
12 export var d = new x(); // emit the type as x variable
DExportInterfaceWithInaccessibleTypeInTypeParameterConstraint.js9 export var Origin: Point = { x: 0, y: 0 }; variable
15 export var Origin3d: Point3d = { x: 0, y: 0, z: 0 }; variable
DExportInterfaceWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.js9 export var Origin: Point = { x: 0, y: 0 }; variable
15 export var Origin3d: Point3d = { x: 0, y: 0, z: 0 }; variable
DExportVariableWithInaccessibleTypeInTypeAnnotation.js10 export var Origin: Point = { x: 0, y: 0 }; variable
17 export var Origin3d: Point3d = { x: 0, y: 0, z: 0 }; variable
DprivacyGloVar.js51 export var m1_v12_public = new C1_public(); variable
53 export var m1_v14_public = new C2_private(); //error variable
56 export var m1_v22_public: C1_public = new C1_public(); variable
58 export var m1_v24_public: C2_private = new C2_private(); // error variable
DprivacyGloImportParseErrors.js41 export var m1_im1_private_v2_public = new m1_im1_private.c1(); variable
52 export var m1_im2_private_v2_public = new m1_im2_private.c1(); variable
62 export var m1_im3_private_v2_public = new m1_im3_private.c1(); variable
72 export var m1_im4_private_v2_public = new m1_im4_private.c1(); variable
DenumAssignmentCompat4.js3 export enum MyEnum { variable
15 export var object1 = { variable
DnamespaceDisambiguationInUnion.js3 export type Yep = { type: "foo.yep" }; variable
7 export type Yep = { type: "bar.yep" }; variable
/third_party/typescript/src/services/codefixes/
Dhelpers.ts212 export function createSignatureDeclarationFromSignature( enumerator
321 export function createSignatureDeclarationFromCallExpression( enumerator
422export function typeToAutoImportableTypeNode(checker: TypeChecker, importAdder: ImportAdder, type:… enumerator
444export function getArgumentTypesAndTypeParameters(checker: TypeChecker, importAdder: ImportAdder, … enumerator
640 export function createStubbedBody(text: string, quotePreference: QuotePreference): Block { enumerator
651 export function setJsonCompilerOptionValues( enumerator
683 export function setJsonCompilerOptionValue( enumerator
692 export function createJsonPropertyAssignment(name: string, initializer: Expression) { enumerator
696export function findJsonProperty(obj: ObjectLiteralExpression, name: string): PropertyAssignment |… enumerator
705export function tryGetAutoImportableReferenceFromTypeNode(importTypeNode: TypeNode | undefined, sc… enumerator
[all …]
/third_party/typescript/src/compiler/
Dparser.ts27 export const parseBaseNodeFactory: BaseNodeFactory = { enumerator
36export const parseNodeFactory = createNodeFactory(NodeFactoryFlags.NoParenthesizerRules, parseBase… enumerator
57 export function isJSDocLikeText(text: string, start: number) { enumerator
64 export function isFileProbablyExternalModule(sourceFile: SourceFile) { enumerator
850export function forEachChild<T>(node: Node, cbNode: (node: Node) => T | undefined, cbNodes?: (node… enumerator
872export function forEachChildRecursively<T>(rootNode: Node, cbNode: (node: Node, parent: Node) => T… enumerator
921 export interface CreateSourceFileOptions { enumerator
944export function createSourceFile(fileName: string, sourceText: string, languageVersionOrOptions: S… enumerator
973export function parseIsolatedEntityName(text: string, languageVersion: ScriptTarget): EntityName |… enumerator
982 export function parseJsonText(fileName: string, sourceText: string): JsonSourceFile { enumerator
[all …]
/third_party/typescript/tests/cases/compiler/
DdeclarationEmitReexportedSymlinkReference.ts26 export * from './types'; property in MetadataAccessor
28 export * from '@raymondfeng/pkg1'; property in MetadataAccessor
38 export * from './keys'; property in MetadataAccessor
DdeclarationEmitReexportedSymlinkReference3.ts26 export * from './types'; property in MetadataAccessor
38 export * from './keys'; property in MetadataAccessor
DdeclarationEmitReexportedSymlinkReference2.ts27 export * from './types'; property in MetadataAccessor
41 export * from './keys'; property in MetadataAccessor
/third_party/skia/third_party/externals/angle2/scripts/
Dgenerate_loader.py26 export="", argument
69 export="", argument
135 def gen_gles_loader(gles_preamble, path, header_lib, export, internal_prefix, file_prefix): argument
181 def gen_egl_loader(egl_preamble, path, header_lib, export, internal_prefix, file_prefix): argument

1234567