Home | History | Annotate | Download | only in amiga

Lines Matching defs:Self

45 	struct LibraryManagerInterface *Self = (struct LibraryManagerInterface *) ExtLib->ILibrary;
47 return (ULONG) Self->Open(0);
55 struct LibraryManagerInterface *Self = (struct LibraryManagerInterface *) ExtLib->ILibrary;
57 return (ULONG) Self->Close();
77 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
78 struct ExecIFace *IExec = ((struct ExpatBase *)Self->Data.LibBase)->IExec;
83 p->p = Self->XML_ParserCreate((const XML_Char *)regarray[8]);
86 Self->XML_SetUserData(p->p, p);
99 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
100 struct ExecIFace *IExec = ((struct ExpatBase *)Self->Data.LibBase)->IExec;
105 p->p = Self->XML_ParserCreateNS((const XML_Char *)regarray[8], (XML_Char)regarray[0]);
108 Self->XML_SetUserData(p->p, p);
121 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
122 struct ExecIFace *IExec = ((struct ExpatBase *)Self->Data.LibBase)->IExec;
127 p->p = Self->XML_ParserCreate_MM((const XML_Char *)regarray[8],
132 Self->XML_SetUserData(p->p, p);
145 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
146 struct ExecIFace *IExec = ((struct ExpatBase *)Self->Data.LibBase)->IExec;
151 p->p = Self->XML_ExternalEntityParserCreate((XML_Parser)regarray[8],
155 Self->XML_SetUserData(p->p, p);
168 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
169 struct ExecIFace *IExec = ((struct ExpatBase *)Self->Data.LibBase)->IExec;
173 Self->XML_ParserFree(p->p);
183 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
186 Self->XML_SetUserData(p->p, p);
187 return Self->XML_Parse(p->p, (const char *)regarray[9], (int)regarray[0], (int)regarray[1]);
195 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
198 return Self->XML_ParseBuffer(p->p, (int)regarray[0], (int)regarray[1]);
206 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
209 return Self->XML_GetBuffer(p->p, (int)regarray[0]);
217 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
221 Self->XML_SetStartElementHandler(p->p, _68k_startelementhandler);
229 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
233 Self->XML_SetEndElementHandler(p->p, _68k_endelementhandler);
241 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
246 Self->XML_SetElementHandler(p->p, _68k_startelementhandler, _68k_endelementhandler);
254 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
258 Self->XML_SetCharacterDataHandler(p->p, _68k_chardatahandler);
266 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
270 Self->XML_SetProcessingInstructionHandler(p->p, _68k_procinsthandler);
278 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
282 Self->XML_SetCommentHandler(p->p, _68k_commenthandler);
290 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
294 Self->XML_SetStartCdataSectionHandler(p->p, _68k_startcdatahandler);
302 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
306 Self->XML_SetEndCdataSectionHandler(p->p, _68k_endcdatahandler);
314 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
319 Self->XML_SetCdataSectionHandler(p->p, _68k_startcdatahandler, _68k_endcdatahandler);
327 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
331 Self->XML_SetDefaultHandler(p->p, _68k_defaulthandler);
339 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
343 Self->XML_SetDefaultHandlerExpand(p->p, _68k_defaulthandlerexp);
351 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
355 Self->XML_SetExternalEntityRefHandler(p->p, _68k_extentrefhandler);
363 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
374 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
379 Self->XML_SetUnknownEncodingHandler(p->p, _68k_unknownenchandler, p);
387 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
391 Self->XML_SetStartNamespaceDeclHandler(p->p, _68k_startnamespacehandler);
399 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
403 Self->XML_SetEndNamespaceDeclHandler(p->p, _68k_endnamespacehandler);
411 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
416 Self->XML_SetNamespaceDeclHandler(p->p, _68k_startnamespacehandler, _68k_endnamespacehandler);
424 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
428 Self->XML_SetXmlDeclHandler(p->p, _68k_xmldeclhandler);
436 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
440 Self->XML_SetStartDoctypeDeclHandler(p->p, _68k_startdoctypehandler);
448 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
452 Self->XML_SetEndDoctypeDeclHandler(p->p, _68k_enddoctypehandler);
460 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
465 Self->XML_SetDoctypeDeclHandler(p->p, _68k_startdoctypehandler, _68k_enddoctypehandler);
473 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
477 Self->XML_SetElementDeclHandler(p->p, _68k_elementdeclhandler);
485 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
489 Self->XML_SetAttlistDeclHandler(p->p, _68k_attlistdeclhandler);
497 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
501 Self->XML_SetEntityDeclHandler(p->p, _68k_entitydeclhandler);
509 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
513 Self->XML_SetUnparsedEntityDeclHandler(p->p, _68k_unparseddeclhandler);
521 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
525 Self->XML_SetNotationDeclHandler(p->p, _68k_notationdeclhandler);
533 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
537 Self->XML_SetNotStandaloneHandler(p->p, _68k_notstandalonehandler);
545 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
548 return Self->XML_GetErrorCode(p->p);
556 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
558 return Self->XML_ErrorString((int)regarray[0]);
566 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
569 return Self->XML_GetCurrentByteIndex(p->p);
577 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
580 return Self->XML_GetCurrentLineNumber(p->p);
588 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
591 return Self->XML_GetCurrentColumnNumber(p->p);
599 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
602 return Self->XML_GetCurrentByteCount(p->p);
610 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
613 return Self->XML_GetInputContext(p->p, (int *)regarray[9], (int *)regarray[10]);
621 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
632 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
635 Self->XML_DefaultCurrent(p->p);
643 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
654 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
657 return Self->XML_SetBase(p->p, (const XML_Char *)regarray[9]);
665 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
668 return Self->XML_GetBase(p->p);
676 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
679 return Self->XML_GetSpecifiedAttributeCount(p->p);
687 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
690 return Self->XML_GetIdAttributeIndex(p->p);
698 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
701 return Self->XML_SetEncoding(p->p, (const XML_Char *)regarray[9]);
709 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
712 return Self->XML_SetParamEntityParsing(p->p, (enum XML_ParamEntityParsing)regarray[9]);
720 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
723 Self
731 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
733 return Self->XML_ExpatVersion();
741 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
743 return Self->XML_ExpatVersionInfo();
751 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
754 return Self->XML_ParserReset(p->p, (const XML_Char *)regarray[9]);
762 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
766 Self->XML_SetSkippedEntityHandler(p->p, _68k_skippedentityhandler);
774 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
777 return Self->XML_UseForeignDTD(p->p, (XML_Bool)regarray[0]);
785 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
787 return Self->XML_GetFeatureList();
795 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
798 return Self->XML_StopParser(p->p, (XML_Bool)regarray[0]);
806 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
809 return Self->XML_ResumeParser(p->p);
817 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
820 Self->XML_GetParsingStatus(p->p, (XML_ParsingStatus *)regarray[9]);
828 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
831 Self->XML_FreeContentModel(p->p, (XML_Content *)regarray[9]);
839 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
842 return Self->XML_MemMalloc(p->p, (size_t)regarray[0]);
850 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
853 return Self->XML_MemRealloc(p->p, (void *)regarray[9], (size_t)regarray[0]);
861 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
864 Self->XML_MemFree(p->p, (void *)regarray[9]);