Searched refs:ObjType (Results 1 - 7 of 7) sorted by relevance
/third_party/nghttp2/doc/_exts/rubydomain/ |
H A D | rubydomain.py | 22 from sphinx.domains import Domain, ObjType, Index namespace 553 'function': ObjType(_('function'), 'func', 'obj'), 554 'global': ObjType(_('global variable'), 'global', 'obj'), 555 'method': ObjType(_('method'), 'meth', 'obj'), 556 'class': ObjType(_('class'), 'class', 'obj'), 557 'exception': ObjType(_('exception'), 'exc', 'obj'), 558 'classmethod': ObjType(_('class method'), 'meth', 'obj'), 559 'attr_reader': ObjType(_('attribute'), 'attr', 'obj'), 560 'attr_writer': ObjType(_('attribute'), 'attr', 'obj'), 561 'attr_accessor': ObjType( [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | parenthesizedContexualTyping1.js | 27 type ObjType = { x: (p: number) => string; y: (p: string) => number }; 28 var obj1: ObjType = { x: x => (x, undefined), y: y => (y, undefined) }; 29 var obj2: ObjType = ({ x: x => (x, undefined), y: y => (y, undefined) });
|
H A D | objectRestReadonly.js | 3 type ObjType = { 9 const obj: Readonly<ObjType> = {
|
H A D | parenthesizedContexualTyping2.js | 35 type ObjType = { x: (p: number) => string; y: (p: string) => number }; 36 var obj1: ObjType = { x: x => (x, undefined), y: y => (y, undefined) }; 37 var obj2: ObjType = ({ x: x => (x, undefined), y: y => (y, undefined) });
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/ |
H A D | XCoreTargetObjectFile.cpp | 120 Type *ObjType = GO->getValueType(); in SelectSectionForGlobal() local 122 if (TM.getCodeModel() == CodeModel::Small || !ObjType->isSized() || in SelectSectionForGlobal() 123 DL.getTypeAllocSize(ObjType) < CodeModelLargeSize) { in SelectSectionForGlobal()
|
H A D | XCoreISelLowering.cpp | 269 Type *ObjType = GV->getValueType(); in IsSmallObject() 270 if (!ObjType->isSized()) in IsSmallObject() 274 unsigned ObjSize = DL.getTypeAllocSize(ObjType); in IsSmallObject()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCISelLowering.cpp | 3897 EVT ObjType = (ObjSize == 1 ? MVT::i8 : in LowerFormalArguments_64SVR4() local 3900 MachinePointerInfo(&*FuncArg), ObjType); in LowerFormalArguments_64SVR4() 4306 EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16; in LowerFormalArguments_Darwin() local 4309 MachinePointerInfo(&*FuncArg), ObjType); in LowerFormalArguments_Darwin()
|
Completed in 31 milliseconds