Home
last modified time | relevance | path

Searched refs:itself (Results 1 – 25 of 2349) sorted by relevance

12345678910>>...94

/external/python/cpython2/Mac/Modules/fm/
D_Fmmodule.c26 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/
Dpyexpat.c59 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.c26 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/
Dpyexpat.c69 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.c84 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.c36 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/
DNav.c221 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/
Dwarn-self-assign-field.mm7 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/
Dwarn-self-assign-field.mm7 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.c26 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.c30 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/
Dsphinx_intro.rst73 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/
Dgrepinputx6 That time it was on a line by itself.
42 This line contains pattern not on a line by itself.
Dgrepoutput25 ./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/
DREADME9 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/
DREADME9 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.c51 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/
Dobjc-dealloc-in-category.m38 // 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.c41 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/
Dtesupport.py86 self.itself = Variable(t0, "_self->ob_itself", SelfMode)
88 self.argumentList.append(self.itself)
D_TEmodule.c36 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/
Doverflow-instr.test3 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/
Doverflow-instr.test3 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/
Dlit.local.cfg5 # 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/
Ddistributed_indexes.ll8 ; 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.

12345678910>>...94