HomeSort by relevance Sort by last modified time
    Searched full:ctxt (Results 101 - 125 of 987) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libxml2/python/tests/
validDTD.py 29 ctxt = libxml2.newValidCtxt() variable
31 ctxt.setValidityErrorHandler(e.handler, e.handler, ARG)
35 ret = doc.validateDtd(ctxt, dtd)
43 ret = doc.validateDtd(ctxt, dtd)
50 del ctxt
dtdvalid.py 13 ctxt = libxml2.newValidCtxt() variable
15 ret = doc.validateDtd(ctxt, dtd)
23 del ctxt
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
line_test.go 14 ctxt := new(Link)
15 ctxt.hash = make(map[string]*LSym)
16 ctxt.statichash = make(map[string]*LSym)
34 f, l := linkgetlineFromPos(ctxt, ctxt.PosTable.XPos(test.pos))
objfile.go 24 ctxt *Link
80 func newObjWriter(ctxt *Link, b *bufio.Writer) *objWriter {
82 ctxt: ctxt,
89 func WriteObjFile(ctxt *Link, b *bufio.Writer) {
90 w := newObjWriter(ctxt, b)
99 for _, pkg := range ctxt.Imports {
105 for _, s := range ctxt.Text {
109 for _, s := range ctxt.Data {
120 for _, s := range ctxt.Text
    [all...]
pcln.go 26 func funcpctab(ctxt *Link, dst *Pcdata, func_ *LSym, desc string, valfunc func(*Link, *LSym, int32, *Prog, int32, interface{}) int32, arg interface{}) {
27 dbg := desc == ctxt.Debugpcln
32 ctxt.Logf("funcpctab %s [valfunc=%s]\n", func_.Name, desc)
44 ctxt.Logf("%6x %6d %v\n", uint64(pc), val, func_.Func.Text)
51 val = valfunc(ctxt, func_, val, p, 0, arg)
54 val = valfunc(ctxt, func_, val, p, 1, arg)
56 ctxt.Logf("%6x %6s %v\n", uint64(p.Pc), "", p)
66 val = valfunc(ctxt, func_, val, p, 1, arg)
68 ctxt.Logf("%6x %6s %v\n", uint64(p.Pc), "", p)
88 ctxt.Logf("%6x %6d %v\n", uint64(p.Pc), val, p
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
config.go 163 func mustLinkExternal(ctxt *Link) (res bool, reason string) {
164 if ctxt.Debugvlog > 1 {
176 if ctxt.Arch.InFamily(sys.ARM, sys.ARM64) {
189 if iscgo && ctxt.Arch.InFamily(sys.ARM64, sys.MIPS64, sys.MIPS, sys.PPC64) {
194 switch ctxt.BuildMode {
211 if ctxt.linkShared {
218 // determineLinkMode sets ctxt.LinkMode.
221 // so the ctxt.LinkMode variable has an initial value from the -linkmode
223 func determineLinkMode(ctxt *Link) {
224 switch ctxt.LinkMode
    [all...]
pe.go 465 func (f *peFile) addInitArray(ctxt *Link) *peSection {
483 ctxt.Out.SeekSet(int64(sect.pointerToRawData))
484 sect.checkOffset(ctxt.Out.Offset())
486 init_entry := ctxt.Syms.Lookup(*flagEntrySymbol, 0)
490 ctxt.Out.Write32(uint32(addr))
492 ctxt.Out.Write64(addr)
498 func (f *peFile) emitRelocations(ctxt *Link) {
499 for ctxt.Out.Offset()&7 != 0 {
500 ctxt.Out.Write8(0)
511 sect.Reloff = uint64(ctxt.Out.Offset()
    [all...]
go.go 32 func ldpkg(ctxt *Link, f *bio.Reader, pkg string, length int64, filename string, whence int) {
124 loadcgo(ctxt, filename, pkg, data[p0:p1])
128 func loadcgo(ctxt *Link, file string, pkg string, p string) {
174 if ctxt.HeadType == objabi.Hdarwin {
175 machoadddynlib(lib, ctxt.LinkMode)
187 s = ctxt.Syms.Lookup(local, 0)
206 s = ctxt.Syms.Lookup(local, 0)
224 s = ctxt.Syms.Lookup(local, 0)
226 switch ctxt.BuildMode {
228 if s == ctxt.Syms.Lookup("main", 0)
    [all...]
elf.go 485 func Elfinit(ctxt *Link) {
486 ctxt.IsELF = true
488 if ctxt.Arch.InFamily(sys.AMD64, sys.ARM64, sys.MIPS64, sys.PPC64, sys.S390X) {
494 switch ctxt.Arch.Family {
497 if ctxt.Arch.ByteOrder == binary.BigEndian {
504 if ctxt.Arch.Family == sys.MIPS64 {
517 if ctxt.Arch.Family == sys.ARM {
519 if ctxt.HeadType == objabi.Hlinux || ctxt.HeadType == objabi.Hfreebsd || ctxt.HeadType == objabi.Hnetbsd
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
line_test.go 14 ctxt := new(Link)
15 ctxt.hash = make(map[string]*LSym)
16 ctxt.statichash = make(map[string]*LSym)
34 f, l := linkgetlineFromPos(ctxt, ctxt.PosTable.XPos(test.pos))
objfile.go 24 ctxt *Link
80 func newObjWriter(ctxt *Link, b *bufio.Writer) *objWriter {
82 ctxt: ctxt,
89 func WriteObjFile(ctxt *Link, b *bufio.Writer) {
90 w := newObjWriter(ctxt, b)
99 for _, pkg := range ctxt.Imports {
105 for _, s := range ctxt.Text {
109 for _, s := range ctxt.Data {
120 for _, s := range ctxt.Text
    [all...]
pcln.go 26 func funcpctab(ctxt *Link, dst *Pcdata, func_ *LSym, desc string, valfunc func(*Link, *LSym, int32, *Prog, int32, interface{}) int32, arg interface{}) {
27 dbg := desc == ctxt.Debugpcln
32 ctxt.Logf("funcpctab %s [valfunc=%s]\n", func_.Name, desc)
44 ctxt.Logf("%6x %6d %v\n", uint64(pc), val, func_.Func.Text)
51 val = valfunc(ctxt, func_, val, p, 0, arg)
54 val = valfunc(ctxt, func_, val, p, 1, arg)
56 ctxt.Logf("%6x %6s %v\n", uint64(p.Pc), "", p)
66 val = valfunc(ctxt, func_, val, p, 1, arg)
68 ctxt.Logf("%6x %6s %v\n", uint64(p.Pc), "", p)
88 ctxt.Logf("%6x %6d %v\n", uint64(p.Pc), val, p
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
config.go 163 func mustLinkExternal(ctxt *Link) (res bool, reason string) {
164 if ctxt.Debugvlog > 1 {
176 if ctxt.Arch.InFamily(sys.ARM, sys.ARM64) {
189 if iscgo && ctxt.Arch.InFamily(sys.ARM64, sys.MIPS64, sys.MIPS, sys.PPC64) {
194 switch ctxt.BuildMode {
211 if ctxt.linkShared {
218 // determineLinkMode sets ctxt.LinkMode.
221 // so the ctxt.LinkMode variable has an initial value from the -linkmode
223 func determineLinkMode(ctxt *Link) {
224 switch ctxt.LinkMode
    [all...]
pe.go 465 func (f *peFile) addInitArray(ctxt *Link) *peSection {
483 ctxt.Out.SeekSet(int64(sect.pointerToRawData))
484 sect.checkOffset(ctxt.Out.Offset())
486 init_entry := ctxt.Syms.Lookup(*flagEntrySymbol, 0)
490 ctxt.Out.Write32(uint32(addr))
492 ctxt.Out.Write64(addr)
498 func (f *peFile) emitRelocations(ctxt *Link) {
499 for ctxt.Out.Offset()&7 != 0 {
500 ctxt.Out.Write8(0)
511 sect.Reloff = uint64(ctxt.Out.Offset()
    [all...]
go.go 32 func ldpkg(ctxt *Link, f *bio.Reader, pkg string, length int64, filename string, whence int) {
124 loadcgo(ctxt, filename, pkg, data[p0:p1])
128 func loadcgo(ctxt *Link, file string, pkg string, p string) {
174 if ctxt.HeadType == objabi.Hdarwin {
175 machoadddynlib(lib, ctxt.LinkMode)
187 s = ctxt.Syms.Lookup(local, 0)
206 s = ctxt.Syms.Lookup(local, 0)
224 s = ctxt.Syms.Lookup(local, 0)
226 switch ctxt.BuildMode {
228 if s == ctxt.Syms.Lookup("main", 0)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/dwarf/
dwarf.go 269 func Uleb128put(ctxt Context, s Sym, v int64) {
275 ctxt.AddBytes(s, b)
279 func Sleb128put(ctxt Context, s Sym, v int64) {
285 ctxt.AddBytes(s, b)
831 func putattr(ctxt Context, s Sym, abbrev int, form int, cls int, value int64, data interface{}) error {
834 ctxt.AddAddress(s, data, value)
838 ctxt.AddInt(s, 1, int64(1+ctxt.PtrSize()))
839 ctxt.AddInt(s, 1, DW_OP_addr)
840 ctxt.AddAddress(s, data, 0
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/dwarf/
dwarf.go 269 func Uleb128put(ctxt Context, s Sym, v int64) {
275 ctxt.AddBytes(s, b)
279 func Sleb128put(ctxt Context, s Sym, v int64) {
285 ctxt.AddBytes(s, b)
831 func putattr(ctxt Context, s Sym, abbrev int, form int, cls int, value int64, data interface{}) error {
834 ctxt.AddAddress(s, data, value)
838 ctxt.AddInt(s, 1, int64(1+ctxt.PtrSize()))
839 ctxt.AddInt(s, 1, DW_OP_addr)
840 ctxt.AddAddress(s, data, 0
    [all...]
  /external/libxml2/include/libxml/
debugXML.h 125 * @ctxt: a shell context
134 typedef int (* xmlShellCmd) (xmlShellCtxtPtr ctxt,
145 xmlShellList (xmlShellCtxtPtr ctxt,
150 xmlShellBase (xmlShellCtxtPtr ctxt,
155 xmlShellDir (xmlShellCtxtPtr ctxt,
160 xmlShellLoad (xmlShellCtxtPtr ctxt,
168 xmlShellCat (xmlShellCtxtPtr ctxt,
173 xmlShellWrite (xmlShellCtxtPtr ctxt,
178 xmlShellSave (xmlShellCtxtPtr ctxt,
185 xmlShellValidate (xmlShellCtxtPtr ctxt,
    [all...]
xmlsave.h 66 xmlSaveDoc (xmlSaveCtxtPtr ctxt,
69 xmlSaveTree (xmlSaveCtxtPtr ctxt,
73 xmlSaveFlush (xmlSaveCtxtPtr ctxt);
75 xmlSaveClose (xmlSaveCtxtPtr ctxt);
77 xmlSaveSetEscape (xmlSaveCtxtPtr ctxt,
80 xmlSaveSetAttrEscape (xmlSaveCtxtPtr ctxt,
  /prebuilts/go/darwin-x86/src/runtime/cgo/
asm_386.s 8 // func crosscall2(fn func(a unsafe.Pointer, n int32, ctxt uintptr), a unsafe.Pointer, n int32, ctxt uintptr)
16 MOVL ctxt+12(FP), AX
  /prebuilts/go/linux-x86/src/runtime/cgo/
asm_386.s 8 // func crosscall2(fn func(a unsafe.Pointer, n int32, ctxt uintptr), a unsafe.Pointer, n int32, ctxt uintptr)
16 MOVL ctxt+12(FP), AX
  /external/libxml2/doc/examples/
parse2.c 25 xmlParserCtxtPtr ctxt; /* the parser context */ local
29 ctxt = xmlNewParserCtxt();
30 if (ctxt == NULL) {
35 doc = xmlCtxtReadFile(ctxt, filename, NULL, XML_PARSE_DTDVALID);
41 if (ctxt->valid == 0)
47 xmlFreeParserCtxt(ctxt);
  /external/libxml2/
xmlregexp.c 51 ctxt->error = XML_REGEXP_COMPILE_ERROR; \
52 xmlRegexpErrCompile(ctxt, str);
53 #define NEXT ctxt->cur++
54 #define CUR (*(ctxt->cur))
55 #define NXT(index) (ctxt->cur[index])
58 #define NEXTL(l) ctxt->cur += l;
62 * when it's guaranteed that cur is not at the beginning of ctxt->string!
64 #define PREV (ctxt->cur[-1])
356 static void xmlFAParseRegExp(xmlRegParserCtxtPtr ctxt, int top);
378 xmlRegexpErrMemory(xmlRegParserCtxtPtr ctxt, const char *extra
5468 xmlRegParserCtxtPtr ctxt; local
5616 xmlAutomataPtr ctxt; local
    [all...]
error.c 245 xmlReportError(xmlErrorPtr err, xmlParserCtxtPtr ctxt, const char *str,
281 if (ctxt != NULL) {
282 input = ctxt->input;
284 (ctxt->inputNr > 1)) {
286 input = ctxt->inputTab[ctxt->inputNr - 2];
405 if (ctxt != NULL) {
462 xmlParserCtxtPtr ctxt = NULL; local
476 ctxt = (xmlParserCtxtPtr) ctx;
477 if ((schannel == NULL) && (ctxt != NULL) && (ctxt->sax != NULL) &
683 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx; local
726 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx; local
775 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx; local
819 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx; local
918 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx; local
937 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx; local
    [all...]
pattern.c 323 * @ctxt: an XSLT parser context
325 * Free up the memory allocated by @ctxt
328 xmlFreePatParserContext(xmlPatParserContextPtr ctxt) {
329 if (ctxt == NULL)
331 memset(ctxt, -1, sizeof(xmlPatParserContext));
332 xmlFree(ctxt);
347 xmlPatternAdd(xmlPatParserContextPtr ctxt ATTRIBUTE_UNUSED,
356 ERROR(ctxt, NULL, NULL,
427 ERROR(ctxt, NULL, NULL,
716 #define CUR (*ctxt->cur
2362 xmlPatParserContextPtr ctxt = NULL; local
    [all...]

Completed in 533 milliseconds

1 2 3 45 6 7 8 91011>>