Home
last modified time | relevance | path

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

123

/third_party/typescript/tests/cases/conformance/internalModules/DeclarationMerging/
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
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
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
/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/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/rust/crates/signal-hook/src/low_level/
Dsiginfo.rs186 pub struct Origin { struct
188 pub signal: c_int,
212 impl Debug for Origin { implementation
227 impl Origin { impl
/third_party/cef/libcef/browser/
Dorigin_whitelist_impl.h19 class Origin; variable
/third_party/cef/libcef/browser/net/
Dchrome_scheme_handler.h26 class Origin; variable
/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_service/
Dresource_request_handler_wrapper.h21 class Origin; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DWindowsResource.cpp348 uint32_t Origin = InputFilenames.size(); in parse() local
370 uint32_t Origin = InputFilenames.size(); in parse() local
382 const ResourceEntryRef &Entry, uint32_t Origin, in addEntry()
393 uint32_t Origin, in addChildren()
458 uint32_t Origin, uint32_t DataIndex) in TreeNode()
477 uint32_t Origin, in createDataNode()
502 const ResourceEntryRef &Entry, uint32_t Origin, in addLanguageNode()
514 uint32_t Characteristics, uint32_t Origin, uint32_t DataIndex, in addDataChild()
/third_party/typescript/tests/cases/compiler/
DimportInTypePosition.ts5 export var Origin = new Point(0, 0); variable

123