Home
last modified time | relevance | path

Searched defs:Origin (Results 1 – 25 of 53) sorted by relevance

123

/third_party/typescript/tests/cases/conformance/internalModules/DeclarationMerging/
DClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.ts4 static Origin(): Point { return { x: 0, y: 0 }; } method in Point
8 function Origin() { return ""; }// not an error, since not exported function
16 static Origin(): Point { return { x: 0, y: 0 }; } method in Point
20 function Origin() { return ""; }// not an error since not exported function
DClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAName.ts4 static Origin: Point = { x: 0, y: 0 }; property in Point
8 var Origin = ""; // not an error, since not exported variable
16 static Origin: Point = { x: 0, y: 0 }; property in Point
20 var Origin = ""; // not an error since not exported variable
DClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.ts4 static Origin: Point = { x: 0, y: 0 }; property in Point
8 export var Origin = ""; //expected duplicate identifier error variable
16 static Origin: Point = { x: 0, y: 0 }; property in Point
20 export var Origin = ""; //expected duplicate identifier error variable
DClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.ts4 static Origin(): Point { return { x: 0, y: 0 }; } // unexpected error here bug 840246 method in Point
8 export function Origin() { return null; } //expected duplicate identifier error function
16 static Origin(): Point { return { x: 0, y: 0 }; } // unexpected error here bug 840246 method in Point
20 export function Origin() { return ""; }//expected duplicate identifier error function
DModuleAndFunctionWithSameNameAndCommonRoot.ts4 export var Origin = { x: 0, y: 0 }; variable
20 export var Origin = { x: 0, y: 0 }; variable
DTwoInternalModulesThatMergeEachWithExportedLocalVarsOfTheSameName.ts14 export var Origin: Point = { x: 0, y: 0 }; variable
20 export var Origin: Point = { x: 0, y: 0 }; variable
DFunctionAndModuleWithSameNameAndCommonRoot.ts11 export var Origin = { x: 0, y: 0 }; variable
32 export var Origin = { x: 0, y: 0 }; variable
DTwoInternalModulesThatMergeEachWithExportedAndNonExportedLocalVarsOfTheSameName.ts13 export var Origin: Point = { x: 0, y: 0 }; variable
19 var Origin: string = "0,0"; variable
DAmbientModuleAndAmbientWithSameNameAndCommonRoot.ts4 export var Origin: { variable
DAmbientModuleAndNonAmbientFunctionWithTheSameNameAndCommonRoot.ts3 export var Origin: { x: number; y: number; } variable
DFunctionAndModuleWithSameNameAndDifferentCommonRoot.ts11 export var Origin = { x: 0, y: 0 }; variable
DAmbientModuleAndAmbientFunctionWithTheSameNameAndCommonRoot.ts3 export var Origin: { x: number; y: number; } variable
DTwoInternalModulesWithTheSameNameAndDifferentCommonRoot.ts21 export var Origin: Root.A.Point = { x: 0, y: 0 }; variable
DModuleAndClassWithSameNameAndCommonRoot.ts4 export var Origin = new Point(0, 0); variable
/third_party/typescript/tests/baselines/reference/
DClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.js9 export function Origin() { return null; } //expected duplicate identifier error class
31 Point.Origin = function () { return { x: 0, y: 0 }; }; // unexpected error here bug 840246 class in Point
35 function Origin() { return null; } //expected duplicate identifier error class
50 function Origin() { return ""; } //expected duplicate identifier error class
DClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.js9 function Origin() { return ""; }// not an error, since not exported class
31 Point.Origin = function () { return { x: 0, y: 0 }; }; class in Point
35 function Origin() { return ""; } // not an error, since not exported class
49 function Origin() { return ""; } // not an error since not exported class
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
Dextend.inl9 genType const & Origin,
20 tvec2<T, P> const & Origin,
31 tvec3<T, P> const & Origin,
42 tvec4<T, P> const & Origin,
/third_party/typescript/tests/cases/conformance/internalModules/exportDeclarations/
DExportVariableWithAccessibleTypeInTypeAnnotation.ts9 export var Origin: Point = { x: 0, y: 0 }; variable
DExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInMemberTypeAnnotations.ts7 export var Origin: Point = { x: 0, y: 0 }; variable
DExportVariableWithInaccessibleTypeInTypeAnnotation.ts9 export var Origin: Point = { x: 0, y: 0 }; variable
DExportModuleWithAccessibleTypesOnItsExportedMembers.ts8 export var Origin: Point = new Point(0, 0); variable
/third_party/cef/libcef/browser/net/
Dchrome_scheme_handler.h26 class Origin; variable
/third_party/cef/libcef/browser/
Dorigin_whitelist_impl.h19 class Origin; variable
/third_party/cef/libcef/browser/net_service/
Dresource_request_handler_wrapper.h21 class Origin; variable
/third_party/typescript/tests/cases/compiler/
DimportInTypePosition.ts5 export var Origin = new Point(0, 0); variable

123