Home
last modified time | relevance | path

Searched full:itself (Results 1 – 25 of 18811) sorted by relevance

12345678910>>...753

/aosp_15_r20/external/python/cpython2/Mac/Modules/ctl/
Dctlsupport.py138 ControlFontStyle_New(ControlFontStyleRec *itself)
141 return Py_BuildValue("hhhhhhO&O&", itself->flags, itself->font,
142 itself->size, itself->style, itself->mode, itself->just,
143 QdRGB_New, &itself->foreColor, QdRGB_New, &itself->backColor);
148 ControlFontStyle_Convert(PyObject *v, ControlFontStyleRec *itself)
150 return PyArg_Parse(v, "(hhhhhhO&O&)", &itself->flags,
151 &itself->font, &itself->size, &itself->style, &itself->mode,
152 &itself->just, QdRGB_Convert, &itself->foreColor,
153 QdRGB_Convert, &itself->backColor);
160 PyControlID_New(ControlID *itself)
[all …]
/aosp_15_r20/external/python/cpython2/Mac/Modules/file/
Dfilesupport.py152 static PyObject *FInfo_New(FInfo *itself);
153 static PyObject *FSRef_New(FSRef *itself);
154 static PyObject *FSSpec_New(FSSpec *itself);
155 static PyObject *Alias_New(AliasHandle itself);
203 PyMac_BuildHFSUniStr255(HFSUniStr255 *itself)
206 return Py_BuildValue("u#", itself->unicode, itself->length);
499 Output("if (itself == NULL) { Py_INCREF(Py_None); return Py_None; }")
554 Output("if (itself == NULL) return PyMac_Error(resNotFound);")
565 Output("%s *itself = NULL;", self.itselftype)
566 Output("static char *kw[] = {\"itself\", 0};")
[all …]
/aosp_15_r20/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
405 char *kw[] = {"itself", 0}; in CFTypeRefObj_tp_init()
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
[all …]
Dcfsupport.py37 self.itself = Variable(t1, "_self->ob_itself", SelfMode)
38 self.argumentList.append(self.itself)
111 PyObject *CFRange_New(CFRange *itself)
114 return Py_BuildValue("ll", (long)itself->location, (long)itself->length);
144 PyObject *CFObj_New(CFTypeRef itself)
146 if (itself == NULL)
151 if (CFGetTypeID(itself) == CFArrayGetTypeID()) return CFArrayRefObj_New((CFArrayRef)itself);
152 …if (CFGetTypeID(itself) == CFDictionaryGetTypeID()) return CFDictionaryRefObj_New((CFDictionaryRef…
153 if (CFGetTypeID(itself) == CFDataGetTypeID()) return CFDataRefObj_New((CFDataRef)itself);
154 … if (CFGetTypeID(itself) == CFStringGetTypeID()) return CFStringRefObj_New((CFStringRef)itself);
[all …]
/aosp_15_r20/external/google-cloud-java/java-grafeas/src/main/java/io/grafeas/v1/
H A DAttestationOccurrence.java192 * Each JWT encodes the payload that it verifies within the JWT itself.
199 * implementations. The JWT itself is opaque to Grafeas.
213 * Each JWT encodes the payload that it verifies within the JWT itself.
220 * implementations. The JWT itself is opaque to Grafeas.
234 * Each JWT encodes the payload that it verifies within the JWT itself.
241 * implementations. The JWT itself is opaque to Grafeas.
255 * Each JWT encodes the payload that it verifies within the JWT itself.
262 * implementations. The JWT itself is opaque to Grafeas.
276 * Each JWT encodes the payload that it verifies within the JWT itself.
283 * implementations. The JWT itself is opaque to Grafeas.
[all …]
/aosp_15_r20/external/python/cpython2/Mac/Modules/cg/
Dcgsupport.py34 PyObject *CGPoint_New(CGPoint *itself)
38 itself->x,
39 itself->y);
52 PyObject *CGRect_New(CGRect *itself)
56 itself->origin.x,
57 itself->origin.y,
58 itself->size.width,
59 itself->size.height);
74 PyObject *CGAffineTransform_New(CGAffineTransform *itself)
78 itself->a,
[all …]
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 …]
/aosp_15_r20/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
395 char *kw[] = {"itself", 0}; in EventRef_tp_new()
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()
[all …]
/aosp_15_r20/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 …]
/aosp_15_r20/external/pdfium/public/
H A Dfpdf_formfill.h68 * pThis - Pointer to the interface structure itself.
93 * pThis - Pointer to the interface structure itself
110 * pThis - Pointer to the interface structure itself
153 * pThis - Pointer to the interface structure itself
180 * pThis - Pointer to the interface structure itself
222 * pThis - Pointer to the interface structure itself.
259 * pThis - Pointer to the interface structure itself
280 * pThis - Pointer to the interface structure itself
296 * pThis - Pointer to the interface structure itself.
405 * pThis - Pointer to the interface structure itself
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/pin-project/tests/
Dlint.rs488 #[allow(box_pointers)] // for the type itself
497 #[allow(box_pointers)] // for the type itself
502 #[allow(box_pointers)] // for the type itself
525 #[allow(box_pointers)] // for the type itself
534 #[allow(box_pointers)] // for the type itself
539 #[allow(box_pointers)] // for the type itself
565 #[allow(deprecated)] // for the type itself
577 #[allow(deprecated)] // for the type itself
588 #[allow(deprecated)] // for the type itself
622 #[allow(deprecated)] // for the type itself
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/types/testdata/check/
Dcycles0.go11 T1 /* ERROR "invalid recursive type: T1 refers to itself" */ T1
37 S0 /* ERROR "invalid recursive type: S0 refers to itself" */ struct{ _ S0 }
38 S1 /* ERROR "invalid recursive type: S1 refers to itself" */ struct{ S1 }
56 I0 /* ERROR "invalid recursive type: I0 refers to itself" */ interface{ I0 }
86 t1 /* ERROR "invalid recursive type: t1 refers to itself" */ t1
94 a0 /* ERROR "invalid recursive type: a0 refers to itself" */ [10]a0
101 s0 /* ERROR "invalid recursive type: s0 refers to itself" */ struct{ _ s0 }
102 s1 /* ERROR "invalid recursive type: s1 refers to itself" */ struct{ s1 }
115 i0 /* ERROR "invalid recursive type: i0 refers to itself" */ interface{ i0 }
138 T9 /* ERROR "invalid recursive type: T9 refers to itself" */ T9
[all …]
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dwarn-infinite-recursion.cpp3 void a() { // expected-warning{{call itself}} in a()
7 void b(int x) { // expected-warning{{call itself}} in b()
19 void d(int x) { // expected-warning{{call itself}} in d()
46 void i(int x) { // expected-warning{{call itself}} in i()
53 int j() { // expected-warning{{call itself}} in j()
62 void S::a() { // expected-warning{{call itself}} in a()
66 void S::b() { // expected-warning{{call itself}} in b()
77 void a() { return a(); } // expected-warning{{call itself}} in a()
78 static void b() { return b(); } // expected-warning{{call itself}} in b()
89 void Fun() { // expected-warning{{call itself}} in Fun()
[all …]
/aosp_15_r20/external/python/cpython2/Mac/Modules/fm/
Dfmsupport.py36 FMRec_New(FMetricRec *itself)
40 PyMac_BuildFixed, itself->ascent,
41 PyMac_BuildFixed, itself->descent,
42 PyMac_BuildFixed, itself->leading,
43 PyMac_BuildFixed, itself->widMax,
44 ResObj_New, itself->wTabHandle);
53 PyMac_GetFixed, &itself->ascent,
54 PyMac_GetFixed, &itself->descent,
55 PyMac_GetFixed, &itself->leading,
56 PyMac_GetFixed, &itself->widMax,
[all …]
/aosp_15_r20/external/python/cpython2/Mac/Modules/res/
Dressupport.py52 PyObject *OptResObj_New(Handle itself)
54 if (itself == NULL) {
58 return ResObj_New(itself);
140 Output("if (itself == NULL) return PyMac_Error(resNotFound);")
182 Output("%s itself;", self.itselftype);
183 Output("char *kw[] = {\"itself\", 0};")
185 Output("if (PyArg_ParseTupleAndKeywords(_args, _kwds, \"O&\", kw, %s_Convert, &itself))",
188 Output("((%s *)_self)->ob_itself = itself;", self.objecttype)
193 Output("if ((itself = NewHandle(srclen)) == NULL)")
198 Output("((%s *)_self)->ob_itself = itself;", self.objecttype)
[all …]
/aosp_15_r20/external/python/cpython3/Modules/
Dpyexpat.c70 XML_Parser itself; member
123 XML_Parser parser = self->itself; in set_error()
210 XML_SetExternalEntityRefHandler(self->itself, in flag_error()
223 XML_StopParser(self->itself, XML_FALSE); in call_with_frame()
274 XML_SetCharacterDataHandler(self->itself, in call_character_handler()
288 XML_SetCharacterDataHandler(self->itself, in call_character_handler()
358 max = XML_GetSpecifiedAttributeCount(self->itself); in my_StartElementHandler()
587 XML_FreeContentModel(self->itself, model); in my_ElementDeclHandler()
698 return set_error(state, self, XML_GetErrorCode(self->itself)); in get_parse_result()
738 (void)XML_SetEncoding(self->itself, "utf-8"); in pyexpat_xmlparser_Parse_impl()
[all …]
/aosp_15_r20/external/python/cpython2/Mac/Modules/qd/
Dqdsupport.py92 PyObject *QdRGB_New(RGBColorPtr itself)
95 return Py_BuildValue("lll", (long)itself->red, (long)itself->green, (long)itself->blue);
114 PyObject *QdFI_New(FontInfo *itself)
117 return Py_BuildValue("hhhh", itself->ascent, itself->descent,
118 itself->widMax, itself->leading);
126 PyObject *BMObj_NewCopied(BitMapPtr itself)
133 *itself_copy = *itself;
156 ## Output("if (itself == NULL) return PyMac_Error(resNotFound);")
162 ## Output("if (itself == NULL) return PyMac_Error(resNotFound);")
183 Output("if (itself == NULL) return PyMac_Error(resNotFound);")
[all …]
/aosp_15_r20/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
272 char *kw[] = {"itself", 0}; in CmpInstObj_tp_new()
[all …]
/aosp_15_r20/external/igt-gpu-tools/lib/tests/
H A Digt_describe.c74 igt_describe("this description should be so long that it wraps itself nicely in the terminal " in fake_main()
75 "this description should be so long that it wraps itself nicely in the terminal " in fake_main()
76 "this description should be so long that it wraps itself nicely in the terminal " in fake_main()
77 "this description should be so long that it wraps itself nicely in the terminal " in fake_main()
78 "this description should be so long that it wraps itself nicely in the terminal " in fake_main()
79 "this description should be so long that it wraps itself nicely in the terminal"); in fake_main()
123 " this description should be so long that it wraps itself nicely in the terminal this\n"
124 " description should be so long that it wraps itself nicely in the terminal this description\n"
125 " should be so long that it wraps itself nicely in the terminal this description should be so\n"
126 " long that it wraps itself nicely in the terminal this description should be so long that it\n"
[all …]
/aosp_15_r20/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQueryBuilder.java365 … * {@code WHERE} clause (excluding the {@code WHERE} itself). Passing {@code null} will
368 … * {@code GROUP BY} clause (excluding the {@code GROUP BY} itself). Passing {@code null}
372 * clause (excluding the {@code HAVING} itself). Passing null will cause
376 * (excluding the {@code ORDER BY} itself). Passing null will use the
449 * itself). Passing null will return all rows for the given URL.
456 * itself). Passing null will cause the rows to not be grouped.
459 * SQL {@code HAVING} clause (excluding the {@code HAVING} itself). Passing
463 * {@code ORDER BY} clause (excluding the {@code ORDER BY} itself). Passing null
486 * itself). Passing null will return all rows for the given URL.
493 * itself). Passing null will cause the rows to not be grouped.
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/a4/
Da4a5c6427c1fa9bb5e47da857280968638ebffcc153 from: "art/test/2267-class-implements-itself/build.py"
154 to: "art/test/2267-class-implements-itself/build.py"
157 from: "art/test/2267-class-implements-itself/expected-stderr.txt"
158 to: "art/test/2267-class-implements-itself/expected-stderr.txt"
161 from: "art/test/2267-class-implements-itself/expected-stdout.txt"
162 to: "art/test/2267-class-implements-itself/expected-stdout.txt"
165 from: "art/test/2267-class-implements-itself/generate-sources"
166 to: "art/test/2267-class-implements-itself/generate-sources"
169 from: "art/test/2267-class-implements-itself/info.txt"
170 to: "art/test/2267-class-implements-itself/info.txt"
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/81/
D81318c17f730e39a0bb731efa20b1ac3191fb069153 from: "art/test/2267-class-implements-itself/build.py"
154 to: "art/test/2267-class-implements-itself/build.py"
157 from: "art/test/2267-class-implements-itself/expected-stderr.txt"
158 to: "art/test/2267-class-implements-itself/expected-stderr.txt"
161 from: "art/test/2267-class-implements-itself/expected-stdout.txt"
162 to: "art/test/2267-class-implements-itself/expected-stdout.txt"
165 from: "art/test/2267-class-implements-itself/generate-sources"
166 to: "art/test/2267-class-implements-itself/generate-sources"
169 from: "art/test/2267-class-implements-itself/info.txt"
170 to: "art/test/2267-class-implements-itself/info.txt"
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/1e/
D1e7a20d84912b75545ae32829700d0f516a00aa7153 from: "art/test/2267-class-implements-itself/build.py"
154 to: "art/test/2267-class-implements-itself/build.py"
157 from: "art/test/2267-class-implements-itself/expected-stderr.txt"
158 to: "art/test/2267-class-implements-itself/expected-stderr.txt"
161 from: "art/test/2267-class-implements-itself/expected-stdout.txt"
162 to: "art/test/2267-class-implements-itself/expected-stdout.txt"
165 from: "art/test/2267-class-implements-itself/generate-sources"
166 to: "art/test/2267-class-implements-itself/generate-sources"
169 from: "art/test/2267-class-implements-itself/info.txt"
170 to: "art/test/2267-class-implements-itself/info.txt"
[all …]
/aosp_15_r20/external/llvm/docs/
H A Dre_format.7248 of all collating elements equivalent to that one, including itself.
372 not listed below matches itself.
376 matches itself.
407 then it matches itself.
437 Otherwise, it matches itself.
443 Otherwise, it matches itself.
466 then it matches itself.
586 not listed below matches itself.
596 matches itself.
627 then it matches itself.
[all …]
/aosp_15_r20/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 …]

12345678910>>...753