/external/python/cpython2/Mac/Modules/fm/ |
D | _Fmmodule.c | 26 FMRec_New(FMetricRec *itself) in FMRec_New() argument 30 PyMac_BuildFixed, itself->ascent, in FMRec_New() 31 PyMac_BuildFixed, itself->descent, in FMRec_New() 32 PyMac_BuildFixed, itself->leading, in FMRec_New() 33 PyMac_BuildFixed, itself->widMax, in FMRec_New() 34 ResObj_New, itself->wTabHandle); in FMRec_New() 43 PyMac_GetFixed, &itself->ascent, 44 PyMac_GetFixed, &itself->descent, 45 PyMac_GetFixed, &itself->leading, 46 PyMac_GetFixed, &itself->widMax, [all …]
|
/external/python/cpython3/Modules/ |
D | pyexpat.c | 59 XML_Parser itself; member 114 XML_Parser parser = self->itself; in set_error() 201 XML_SetExternalEntityRefHandler(self->itself, in flag_error() 214 XML_StopParser(self->itself, XML_FALSE); in call_with_frame() 265 XML_SetCharacterDataHandler(self->itself, in call_character_handler() 279 XML_SetCharacterDataHandler(self->itself, in call_character_handler() 349 max = XML_GetSpecifiedAttributeCount(self->itself); in my_StartElementHandler() 578 XML_FreeContentModel(self->itself, model); in my_ElementDeclHandler() 689 return set_error(self, XML_GetErrorCode(self->itself)); in get_parse_result() 727 (void)XML_SetEncoding(self->itself, "utf-8"); in pyexpat_xmlparser_Parse_impl() [all …]
|
/external/python/cpython2/Mac/Modules/carbonevt/ |
D | _CarbonEvtmodule.c | 26 PyObject *EventHandlerCallRef_New(EventHandlerCallRef itself); 27 PyObject *EventRef_New(EventRef itself); 119 PyObject *EventRef_New(EventRef itself) in EventRef_New() argument 124 it->ob_itself = itself; in EventRef_New() 394 EventRef itself; in EventRef_tp_new() local 397 … if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, EventRef_Convert, &itself)) return NULL; in EventRef_tp_new() 399 ((EventRefObject *)_self)->ob_itself = itself; in EventRef_tp_new() 464 PyObject *EventQueueRef_New(EventQueueRef itself) in EventQueueRef_New() argument 469 it->ob_itself = itself; in EventQueueRef_New() 615 EventQueueRef itself; in EventQueueRef_tp_new() local [all …]
|
/external/python/cpython2/Modules/ |
D | pyexpat.c | 69 XML_Parser itself; member 125 XML_Parser parser = self->itself; in set_error() 257 XML_SetExternalEntityRefHandler(self->itself, in flag_error() 359 XML_StopParser(self->itself, XML_FALSE); in call_with_frame() 434 XML_SetCharacterDataHandler(self->itself, in call_character_handler() 448 XML_SetCharacterDataHandler(self->itself, in call_character_handler() 511 max = XML_GetSpecifiedAttributeCount(self->itself); in my_StartElementHandler() 761 XML_FreeContentModel(self->itself, model); in my_ElementDeclHandler() 880 return set_error(self, XML_GetErrorCode(self->itself)); in get_parse_result() 902 return get_parse_result(self, XML_Parse(self->itself, s, slen, isFinal)); in xmlparse_Parse() [all …]
|
/external/python/cpython2/Mac/Modules/cf/ |
D | _CFmodule.c | 84 PyObject *CFRange_New(CFRange *itself) in CFRange_New() argument 86 return Py_BuildValue("ll", (long)itself->location, (long)itself->length); in CFRange_New() 126 PyObject *CFTypeRefObj_New(CFTypeRef itself) in CFTypeRefObj_New() argument 129 if (itself == NULL) in CFTypeRefObj_New() 136 it->ob_itself = itself; in CFTypeRefObj_New() 404 CFTypeRef itself; in CFTypeRefObj_tp_init() local 407 if (PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, CFTypeRefObj_Convert, &itself)) in CFTypeRefObj_tp_init() 409 ((CFTypeRefObject *)_self)->ob_itself = itself; in CFTypeRefObj_tp_init() 488 PyObject *CFArrayRefObj_New(CFArrayRef itself) in CFArrayRefObj_New() argument 491 if (itself == NULL) in CFArrayRefObj_New() [all …]
|
/external/python/cpython2/Mac/Modules/cm/ |
D | _Cmmodule.c | 36 CmpDesc_New(ComponentDescription *itself) in CmpDesc_New() argument 40 PyMac_BuildOSType, itself->componentType, in CmpDesc_New() 41 PyMac_BuildOSType, itself->componentSubType, in CmpDesc_New() 42 PyMac_BuildOSType, itself->componentManufacturer, in CmpDesc_New() 43 itself->componentFlags, itself->componentFlagsMask); in CmpDesc_New() 70 PyObject *CmpInstObj_New(ComponentInstance itself) in CmpInstObj_New() argument 73 if (itself == NULL) { in CmpInstObj_New() 79 it->ob_itself = itself; in CmpInstObj_New() 271 ComponentInstance itself; in CmpInstObj_tp_new() local 274 …if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, CmpInstObj_Convert, &itself)) return NULL; in CmpInstObj_tp_new() [all …]
|
/external/python/cpython2/Mac/Modules/ |
D | Nav.c | 221 NavReplyRecord itself; member 242 err = NavTranslateFile(&self->itself, howToTranslate); in nav_NavTranslateFile() 263 err = NavCompleteSave(&self->itself, howToTranslate); in nav_NavCompleteSave() 284 newnavrrobject(NavReplyRecord *itself) in newnavrrobject() argument 291 self->itself = *itself; in newnavrrobject() 299 NavDisposeReply(&self->itself); in navrr_dealloc() 319 return Py_BuildValue("h", self->itself.version); in navrr_getattr() 321 return Py_BuildValue("l", (long)self->itself.validRecord); in navrr_getattr() 323 return Py_BuildValue("l", (long)self->itself.replacing); in navrr_getattr() 325 return Py_BuildValue("l", (long)self->itself.isStationery); in navrr_getattr() [all …]
|
/external/llvm-project/clang/test/Sema/ |
D | warn-self-assign-field.mm | 7 a_ = a_; // expected-warning {{assigning field to itself}} 10 this->a_ = a_; // expected-warning {{assigning field to itself}} 55 a_ = a_; // expected-warning {{assigning instance variable to itself}} 60 i->a_ = i->a_; // expected-warning {{assigning instance variable to itself}}
|
/external/clang/test/Sema/ |
D | warn-self-assign-field.mm | 7 a_ = a_; // expected-warning {{assigning field to itself}} 10 this->a_ = a_; // expected-warning {{assigning field to itself}} 55 a_ = a_; // expected-warning {{assigning instance variable to itself}} 60 i->a_ = i->a_; // expected-warning {{assigning instance variable to itself}}
|
/external/python/cpython2/Mac/Modules/cg/ |
D | _CGmodule.c | 26 PyObject *CGPoint_New(CGPoint *itself) in CGPoint_New() argument 30 itself->x, in CGPoint_New() 31 itself->y); in CGPoint_New() 44 PyObject *CGRect_New(CGRect *itself) in CGRect_New() argument 48 itself->origin.x, in CGRect_New() 49 itself->origin.y, in CGRect_New() 50 itself->size.width, in CGRect_New() 51 itself->size.height); in CGRect_New() 66 PyObject *CGAffineTransform_New(CGAffineTransform *itself) in CGAffineTransform_New() argument 70 itself->a, in CGAffineTransform_New() [all …]
|
/external/python/cpython2/Mac/Modules/ibcarbon/ |
D | _IBCarbon.c | 30 PyObject *IBNibRefObj_New(IBNibRef itself) in IBNibRefObj_New() argument 35 it->ob_itself = itself; in IBNibRefObj_New() 153 IBNibRef itself; in IBNibRefObj_tp_new() local 156 …if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, IBNibRefObj_Convert, &itself)) return NUL… in IBNibRefObj_tp_new() 158 ((IBNibRefObject *)_self)->ob_itself = itself; in IBNibRefObj_tp_new()
|
/external/llvm-project/lld/docs/ |
D | sphinx_intro.rst | 73 The documentation itself is written in the reStructuredText (ReST) format, and 76 The ReST format itself is organized around documents mostly being readable 88 the Sphinx documentation itself, available `here 102 itself which generally would be installed at the system level:: 109 Once you have the *virtualenv* tool itself installed, you can create a
|
/external/pcre/dist2/testdata/ |
D | grepinputx | 6 That time it was on a line by itself. 42 This line contains pattern not on a line by itself.
|
D | grepoutput | 25 ./testdata/grepinputx:42:This line contains pattern not on a line by itself. 34 42:This line contains pattern not on a line by itself. 52 6:That time it was on a line by itself. 95 That time it was on a line by itself. 97 This line contains pattern not on a line by itself. 185 This line contains pattern not on a line by itself. 238 This line contains pattern not on a line by itself. 260 This line contains pattern not on a line by itself. 315 This line contains pattern not on a line by itself. 341 ./testdata/grepinputx:42:This line contains pattern not on a line by itself. [all …]
|
/external/skqp/third_party/ |
D | README | 9 license for each project should be included in the source itself via a license 10 header or file. If the source itself does not include a license header or file,
|
/external/skia/third_party/ |
D | README | 9 license for each project should be included in the source itself via a license 10 header or file. If the source itself does not include a license header or file,
|
/external/python/cpython2/Mac/Modules/file/ |
D | _Filemodule.c | 51 static PyObject *FSRef_New(FSRef *itself); 53 static PyObject *FInfo_New(FInfo *itself); 55 static PyObject *FSSpec_New(FSSpec *itself); 59 static PyObject *Alias_New(AliasHandle itself); 110 PyMac_BuildHFSUniStr255(HFSUniStr255 *itself) in PyMac_BuildHFSUniStr255() argument 113 return Py_BuildValue("u#", itself->unicode, itself->length); in PyMac_BuildHFSUniStr255() 176 static PyObject *FSCatalogInfo_New(FSCatalogInfo *itself) in FSCatalogInfo_New() argument 179 if (itself == NULL) { Py_INCREF(Py_None); return Py_None; } in FSCatalogInfo_New() 182 it->ob_itself = *itself; in FSCatalogInfo_New() 554 static PyObject *FInfo_New(FInfo *itself) in FInfo_New() argument [all …]
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | objc-dealloc-in-category.m | 38 // Should not trigger on implementation in the class itself, even with 44 // A declaration in a category @interface does not by itself provide an
|
/external/python/cpython2/Mac/Modules/ctl/ |
D | _Ctlmodule.c | 41 ControlFontStyle_New(ControlFontStyleRec *itself) 44 return Py_BuildValue("hhhhhhO&O&", itself->flags, itself->font, 45 itself->size, itself->style, itself->mode, itself->just, 46 QdRGB_New, &itself->foreColor, QdRGB_New, &itself->backColor); 51 ControlFontStyle_Convert(PyObject *v, ControlFontStyleRec *itself) in ControlFontStyle_Convert() argument 53 return PyArg_Parse(v, "(hhhhhhO&O&)", &itself->flags, in ControlFontStyle_Convert() 54 &itself->font, &itself->size, &itself->style, &itself->mode, in ControlFontStyle_Convert() 55 &itself->just, QdRGB_Convert, &itself->foreColor, in ControlFontStyle_Convert() 56 QdRGB_Convert, &itself->backColor); in ControlFontStyle_Convert() 63 PyControlID_New(ControlID *itself) in PyControlID_New() argument [all …]
|
/external/python/cpython2/Mac/Modules/te/ |
D | tesupport.py | 86 self.itself = Variable(t0, "_self->ob_itself", SelfMode) 88 self.argumentList.append(self.itself)
|
D | _TEmodule.c | 36 TextStyle_New(TextStylePtr itself) in TextStyle_New() argument 39 …return Py_BuildValue("lllO&", (long)itself->tsFont, (long)itself->tsFace, (long)itself->tsSize, Qd… in TextStyle_New() 40 &itself->tsColor); in TextStyle_New() 69 PyObject *TEObj_New(TEHandle itself) in TEObj_New() argument 72 if (itself == NULL) { in TEObj_New() 78 it->ob_itself = itself; in TEObj_New() 991 TEHandle itself; in TEObj_tp_new() local 994 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, TEObj_Convert, &itself)) return NULL; in TEObj_tp_new() 996 ((TEObject *)_self)->ob_itself = itself; in TEObj_tp_new()
|
/external/llvm-project/llvm/test/tools/llvm-profdata/ |
D | overflow-instr.test | 3 1- Merge profile having maximum counts with itself and verify overflow detected and saturation occu… 10 2- Merge profile having maximum counts by itself and verify no overflow
|
/external/llvm/test/tools/llvm-profdata/ |
D | overflow-instr.test | 3 1- Merge profile having maximum counts with itself and verify overflow detected and saturation occu… 11 2- Merge profile having maximum counts by itself and verify no overflow
|
/external/llvm-project/libcxx/test/libcxx/selftest/dsl/ |
D | lit.local.cfg | 5 # substituting the directory. This way, the test itself can populate %T as it 10 # Another option would be to have a way to prevent expansion in Lit itself.
|
/external/llvm-project/llvm/test/ThinLTO/X86/ |
D | distributed_indexes.ll | 8 ; The backend index for this module contains summaries from itself and 30 ; itself only, as it does not import anything. 46 ; aliasee is not being imported by itself, that we can still print the summary.
|