/third_party/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ |
D | ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.ts | 4 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
|
D | ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAName.ts | 4 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
|
D | ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.ts | 4 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
|
D | ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.ts | 4 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
|
D | ModuleAndFunctionWithSameNameAndCommonRoot.ts | 4 export var Origin = { x: 0, y: 0 }; variable 20 export var Origin = { x: 0, y: 0 }; variable
|
D | TwoInternalModulesThatMergeEachWithExportedLocalVarsOfTheSameName.ts | 14 export var Origin: Point = { x: 0, y: 0 }; variable 20 export var Origin: Point = { x: 0, y: 0 }; variable
|
D | FunctionAndModuleWithSameNameAndCommonRoot.ts | 11 export var Origin = { x: 0, y: 0 }; variable 32 export var Origin = { x: 0, y: 0 }; variable
|
D | TwoInternalModulesThatMergeEachWithExportedAndNonExportedLocalVarsOfTheSameName.ts | 13 export var Origin: Point = { x: 0, y: 0 }; variable 19 var Origin: string = "0,0"; variable
|
D | AmbientModuleAndAmbientWithSameNameAndCommonRoot.ts | 4 export var Origin: { variable
|
D | AmbientModuleAndNonAmbientFunctionWithTheSameNameAndCommonRoot.ts | 3 export var Origin: { x: number; y: number; } variable
|
D | FunctionAndModuleWithSameNameAndDifferentCommonRoot.ts | 11 export var Origin = { x: 0, y: 0 }; variable
|
D | AmbientModuleAndAmbientFunctionWithTheSameNameAndCommonRoot.ts | 3 export var Origin: { x: number; y: number; } variable
|
D | TwoInternalModulesWithTheSameNameAndDifferentCommonRoot.ts | 21 export var Origin: Root.A.Point = { x: 0, y: 0 }; variable
|
D | ModuleAndClassWithSameNameAndCommonRoot.ts | 4 export var Origin = new Point(0, 0); variable
|
/third_party/typescript/tests/baselines/reference/ |
D | ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.js | 9 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
|
D | ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.js | 9 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/ |
D | extend.inl | 9 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/ |
D | ExportVariableWithAccessibleTypeInTypeAnnotation.ts | 9 export var Origin: Point = { x: 0, y: 0 }; variable
|
D | ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInMemberTypeAnnotations.ts | 7 export var Origin: Point = { x: 0, y: 0 }; variable
|
D | ExportVariableWithInaccessibleTypeInTypeAnnotation.ts | 9 export var Origin: Point = { x: 0, y: 0 }; variable
|
D | ExportModuleWithAccessibleTypesOnItsExportedMembers.ts | 8 export var Origin: Point = new Point(0, 0); variable
|
/third_party/cef/libcef/browser/net/ |
D | chrome_scheme_handler.h | 26 class Origin; variable
|
/third_party/cef/libcef/browser/ |
D | origin_whitelist_impl.h | 19 class Origin; variable
|
/third_party/cef/libcef/browser/net_service/ |
D | resource_request_handler_wrapper.h | 21 class Origin; variable
|
/third_party/typescript/tests/cases/compiler/ |
D | importInTypePosition.ts | 5 export var Origin = new Point(0, 0); variable
|