Searched refs:_C_STRUCT_E (Results 1 - 25 of 35) sorted by relevance

12

/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_specialtypecodes_methdef.py272 myBOOLArg_ = objc.selector(myBOOLArg_, signature='v@:' + objc._C_STRUCT_B + 'test=' + objc._C_NSBOOL + objc._C_STRUCT_E)
276 myInt8Arg_ = objc.selector(myInt8Arg_, signature='v@:' + objc._C_STRUCT_B + 'test=' + objc._C_CHAR_AS_INT + objc._C_STRUCT_E)
280 myByteArg_ = objc.selector(myByteArg_, signature='v@:' + objc._C_STRUCT_B + 'test=' + objc._C_CHAR_AS_TEXT + objc._C_STRUCT_E)
284 myUniCharArg_ = objc.selector(myUniCharArg_, signature='v@:' + objc._C_STRUCT_B + 'test=' + objc._C_UNICHAR + objc._C_STRUCT_E)
289 self.assertEquals(pysig[3], objc._C_STRUCT_B + 'test=' + objc._C_NSBOOL + objc._C_STRUCT_E)
290 self.assertEquals(csig[3], objc._C_STRUCT_B + 'test=' + objc._C_CHR + objc._C_STRUCT_E)
294 self.assertEquals(pysig[3], objc._C_STRUCT_B + 'test=' + objc._C_CHAR_AS_INT + objc._C_STRUCT_E)
295 self.assertEquals(csig[3], objc._C_STRUCT_B + 'test=' + objc._C_CHR + objc._C_STRUCT_E)
299 self.assertEquals(pysig[3], objc._C_STRUCT_B + 'test=' + objc._C_CHAR_AS_TEXT + objc._C_STRUCT_E)
300 self.assertEquals(csig[3], objc._C_STRUCT_B + 'test=' + objc._C_CHR + objc._C_STRUCT_E)
[all...]
H A Dtest_signatures.py105 self.assertEquals(objc._C_STRUCT_E, "}")
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dpointer-support.m55 end1 = strchr(signature, _C_STRUCT_E);
68 end1 = strchr(signature, _C_STRUCT_E);
93 if (ch == '=' || ch == _C_STRUCT_E) {
99 if (ch == '=' || ch == _C_STRUCT_E) {
H A Dobjc_support.m414 while (*type != _C_STRUCT_E && *type++ != '=');
415 while (type && *type != _C_STRUCT_E) {
531 while (*type != _C_STRUCT_E && *type++ != '=');
532 while (type && *type != _C_STRUCT_E) {
688 while(*type != _C_STRUCT_E && *type++ != '=') /* do nothing */;
689 if (*type != _C_STRUCT_E) {
693 while (type != NULL && *type != _C_STRUCT_E) {
844 while (*type != _C_STRUCT_E && *type++ != '=')
846 while (*type != _C_STRUCT_E) {
1115 while (type_end != type_start+1 && type_end[-1] != _C_STRUCT_E) {
[all...]
H A Dstruct-wrapper.m378 while(*typestr != _C_STRUCT_E && *typestr++ != '=');
379 while(typestr && *typestr != _C_STRUCT_E) {
1031 while (*sigcur && *sigcur != _C_STRUCT_E && *sigcur != '=') sigcur++;
1033 if (!*sigcur || *sigcur == _C_STRUCT_E) {
1041 while (*sigcur != _C_STRUCT_E) {
1055 if (*sigcur == _C_STRUCT_E) break;
1066 while (*sigcur != _C_STRUCT_E) {
H A Dobjc_util.m533 while (*typestr != '=' && *typestr != _C_STRUCT_E) {
537 if (*typestr == _C_STRUCT_E) {
542 while (typestr && *typestr != _C_STRUCT_E) {
H A Dparsexml.m105 while (buf && *buf != _C_STRUCT_E && *buf && *buf++ != '=') {
107 while (buf && *buf && *buf != _C_STRUCT_E) {
H A Dlibffi_support.m129 while (*argtype != _C_STRUCT_E && *argtype != '=') argtype++;
130 if (*argtype == _C_STRUCT_E) return 0;
133 while (*argtype != _C_STRUCT_E) {
271 while (*curtype != _C_STRUCT_E && *curtype != '=') curtype++;
274 while (*curtype != _C_STRUCT_E) {
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A Dpointer-support.m55 end1 = strchr(signature, _C_STRUCT_E);
68 end1 = strchr(signature, _C_STRUCT_E);
93 if (ch == '=' || ch == _C_STRUCT_E) {
99 if (ch == '=' || ch == _C_STRUCT_E) {
H A Dobjc_support.m413 while (*type != _C_STRUCT_E && *type++ != '=');
414 while (type && *type != _C_STRUCT_E) {
530 while (*type != _C_STRUCT_E && *type++ != '=');
531 while (type && *type != _C_STRUCT_E) {
687 while(*type != _C_STRUCT_E && *type++ != '=') /* do nothing */;
688 if (*type != _C_STRUCT_E) {
692 while (type != NULL && *type != _C_STRUCT_E) {
841 while (*type != _C_STRUCT_E && *type++ != '=')
843 while (*type != _C_STRUCT_E) {
1123 while (type_end != type_start+1 && type_end[-1] != _C_STRUCT_E) {
[all...]
H A Dstruct-wrapper.m498 while(*typestr != _C_STRUCT_E && *typestr++ != '=');
499 while(typestr && *typestr != _C_STRUCT_E) {
1167 while (*sigcur && *sigcur != _C_STRUCT_E && *sigcur != '=') sigcur++;
1169 if (!*sigcur || *sigcur == _C_STRUCT_E) {
1177 while (*sigcur != _C_STRUCT_E) {
1191 if (*sigcur == _C_STRUCT_E) break;
1202 while (*sigcur != _C_STRUCT_E) {
H A Dobjc_util.m554 while (*typestr != '=' && *typestr != _C_STRUCT_E) {
558 if (*typestr == _C_STRUCT_E) {
563 while (typestr && *typestr != _C_STRUCT_E) {
H A Dmodule.m1571 while (buf && *buf != _C_STRUCT_E && *buf && *buf++ != '=') {
1573 while (buf && *buf && *buf != _C_STRUCT_E) {
1825 { "_C_STRUCT_E", _C_STRUCT_E },
H A Dlibffi_support.m129 while (*argtype != _C_STRUCT_E && *argtype != '=') argtype++;
130 if (*argtype == _C_STRUCT_E) return 0;
133 while (*argtype != _C_STRUCT_E) {
283 while (*curtype != _C_STRUCT_E && *curtype != '=') curtype++;
286 while (*curtype != _C_STRUCT_E) {
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Dpointer-support.m55 end1 = strchr(signature, _C_STRUCT_E);
68 end1 = strchr(signature, _C_STRUCT_E);
90 if (ch == '=' || ch == _C_STRUCT_E) {
96 if (ch == '=' || ch == _C_STRUCT_E) {
H A Dobjc_support.m416 while (*type != _C_STRUCT_E && *type++ != '=');
417 while (type && *type != _C_STRUCT_E) {
533 while (*type != _C_STRUCT_E && *type++ != '=');
534 while (type && *type != _C_STRUCT_E) {
690 while(*type != _C_STRUCT_E && *type++ != '=') /* do nothing */;
691 if (*type != _C_STRUCT_E) {
695 while (type != NULL && *type != _C_STRUCT_E) {
844 while (*type != _C_STRUCT_E && *type++ != '=')
846 while (*type != _C_STRUCT_E) {
1132 while (type_end != type_start+1 && type_end[-1] != _C_STRUCT_E) {
[all...]
H A Dstruct-wrapper.m575 while(*typestr != _C_STRUCT_E && *typestr++ != '=');
576 while(typestr && *typestr != _C_STRUCT_E) {
1288 while (*sigcur && *sigcur != _C_STRUCT_E && *sigcur != '=') sigcur++;
1290 if (!*sigcur || *sigcur == _C_STRUCT_E) {
1298 while (*sigcur != _C_STRUCT_E) {
1312 if (*sigcur == _C_STRUCT_E) break;
1323 while (*sigcur != _C_STRUCT_E) {
H A Dobjc_util.m536 while (*typestr != '=' && *typestr != _C_STRUCT_E) {
540 if (*typestr == _C_STRUCT_E) {
545 while (typestr && *typestr != _C_STRUCT_E) {
H A Dmodule.m838 while (*end && *end != _C_STRUCT_E && *end++ != '=');
857 while (signature && *signature != _C_STRUCT_E && *signature != 0) {
919 if (signature && *signature != _C_STRUCT_E) {
1671 while (buf && *buf != _C_STRUCT_E && *buf && *buf++ != '=') {
1673 while (buf && *buf && *buf != _C_STRUCT_E) {
2107 { "_C_STRUCT_E", _C_STRUCT_E },
H A Dlibffi_support.m130 while (*argtype != _C_STRUCT_E && *argtype != '=') argtype++;
131 if (*argtype == _C_STRUCT_E) return 0;
134 while (*argtype != _C_STRUCT_E) {
284 while (*curtype != _C_STRUCT_E && *curtype != '=') curtype++;
287 while (*curtype != _C_STRUCT_E) {
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_specialtypecodes_methdef.py272 myBOOLArg_ = objc.selector(myBOOLArg_, signature=b'v@:' + objc._C_STRUCT_B + b'test=' + objc._C_NSBOOL + objc._C_STRUCT_E)
276 myInt8Arg_ = objc.selector(myInt8Arg_, signature=b'v@:' + objc._C_STRUCT_B + b'test=' + objc._C_CHAR_AS_INT + objc._C_STRUCT_E)
280 myByteArg_ = objc.selector(myByteArg_, signature=b'v@:' + objc._C_STRUCT_B + b'test=' + objc._C_CHAR_AS_TEXT + objc._C_STRUCT_E)
284 myUniCharArg_ = objc.selector(myUniCharArg_, signature=b'v@:' + objc._C_STRUCT_B + b'test=' + objc._C_UNICHAR + objc._C_STRUCT_E)
289 self.assertEquals(pysig[3], objc._C_STRUCT_B + b'test=' + objc._C_NSBOOL + objc._C_STRUCT_E)
290 self.assertEquals(csig[3], objc._C_STRUCT_B + b'test=' + objc._C_CHR + objc._C_STRUCT_E)
294 self.assertEquals(pysig[3], objc._C_STRUCT_B + b'test=' + objc._C_CHAR_AS_INT + objc._C_STRUCT_E)
295 self.assertEquals(csig[3], objc._C_STRUCT_B + b'test=' + objc._C_CHR + objc._C_STRUCT_E)
299 self.assertEquals(pysig[3], objc._C_STRUCT_B + b'test=' + objc._C_CHAR_AS_TEXT + objc._C_STRUCT_E)
300 self.assertEquals(csig[3], objc._C_STRUCT_B + b'test=' + objc._C_CHR + objc._C_STRUCT_E)
[all...]
H A Dtest_signatures.py98 self.assertEquals(objc._C_STRUCT_E, b"}")
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest_specialtypecodes_methdef.py272 myBOOLArg_ = objc.selector(myBOOLArg_, signature=b'v@:' + objc._C_STRUCT_B + b'test=' + objc._C_NSBOOL + objc._C_STRUCT_E)
276 myInt8Arg_ = objc.selector(myInt8Arg_, signature=b'v@:' + objc._C_STRUCT_B + b'test=' + objc._C_CHAR_AS_INT + objc._C_STRUCT_E)
280 myByteArg_ = objc.selector(myByteArg_, signature=b'v@:' + objc._C_STRUCT_B + b'test=' + objc._C_CHAR_AS_TEXT + objc._C_STRUCT_E)
284 myUniCharArg_ = objc.selector(myUniCharArg_, signature=b'v@:' + objc._C_STRUCT_B + b'test=' + objc._C_UNICHAR + objc._C_STRUCT_E)
289 self.assertEqual(pysig[3], objc._C_STRUCT_B + b'test=' + objc._C_NSBOOL + objc._C_STRUCT_E)
290 self.assertEqual(csig[3], objc._C_STRUCT_B + b'test=' + objc._C_CHR + objc._C_STRUCT_E)
294 self.assertEqual(pysig[3], objc._C_STRUCT_B + b'test=' + objc._C_CHAR_AS_INT + objc._C_STRUCT_E)
295 self.assertEqual(csig[3], objc._C_STRUCT_B + b'test=' + objc._C_CHR + objc._C_STRUCT_E)
299 self.assertEqual(pysig[3], objc._C_STRUCT_B + b'test=' + objc._C_CHAR_AS_TEXT + objc._C_STRUCT_E)
300 self.assertEqual(csig[3], objc._C_STRUCT_B + b'test=' + objc._C_CHR + objc._C_STRUCT_E)
[all...]
H A Dtest_signatures.py98 self.assertEqual(objc._C_STRUCT_E, b"}")
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-layout.mm886 while ((ch = *type) && ch != _C_STRUCT_E) {
898 if (ch == _C_STRUCT_E) type++;
899 else _objc_inform("missing \'%c\' in ivar type", _C_STRUCT_E);

Completed in 296 milliseconds

12