HomeSort by: relevance | last modified time | path
    Searched refs:OutBuffer (Results 1 - 25 of 50) sorted by relevancy

1 2

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
json.h 16 struct OutBuffer;
18 void json_generate(OutBuffer *, Modules *);
mangle.h 18 struct OutBuffer;
31 void mangleToBuffer(Type *s, OutBuffer *buf);
32 void mangleToBuffer(Expression *s, OutBuffer *buf);
33 void mangleToBuffer(Dsymbol *s, OutBuffer *buf);
34 void mangleToBuffer(TemplateInstance *s, OutBuffer *buf);
hdrgen.h 20 void moduleToBuffer(OutBuffer *buf, Module *m);
dversion.d 25 import dmd.common.outbuffer;
63 OutBuffer buf;
157 OutBuffer buf;
doc.d 48 import dmd.common.outbuffer;
107 void write(Loc loc, DocComment* dc, Scope* sc, Dsymbols* a, OutBuffer* buf)
162 override void write(Loc loc, DocComment* dc, Scope* sc, Dsymbols* a, OutBuffer* buf)
321 override void write(Loc loc, DocComment* dc, Scope* sc, Dsymbols* a, OutBuffer* buf)
375 __gshared OutBuffer mbuf;
377 OutBuffer buf;
456 OutBuffer buf2;
524 void escapeDdocString(OutBuffer* buf, size_t start)
560 * buf = an OutBuffer containing the DDoc
566 private void escapeStrayParenthesis(Loc loc, OutBuffer* buf, size_t start, bool respectBackslashEscapes
    [all...]
utils.d 19 import dmd.common.outbuffer;
123 void escapePath(OutBuffer* buf, const(char)* fname)
156 void writeEscapedMakePath(ref OutBuffer buf, const(char)* fname)
211 OutBuffer buf;
dmangle.d 26 OutBuffer buf;
34 extern (C++) void mangleToBuffer(Type t, OutBuffer* buf)
45 extern (C++) void mangleToBuffer(Expression e, OutBuffer* buf)
51 extern (C++) void mangleToBuffer(Dsymbol s, OutBuffer* buf)
57 extern (C++) void mangleToBuffer(TemplateInstance ti, OutBuffer* buf)
142 import dmd.common.outbuffer;
240 OutBuffer* buf;
243 extern (D) this(OutBuffer* buf, Type rootType = null)
877 OutBuffer tmp;
1071 bool addRefToType(OutBuffer* buf, Type t
    [all...]
globals.d 17 import dmd.common.outbuffer;
228 OutBuffer* mixinOut; // write expanded mixins for debugging
243 OutBuffer* moduleDeps; // contents to be written to deps file
528 OutBuffer buf;
hdrgen.d 47 import dmd.common.outbuffer;
76 OutBuffer buf;
92 extern (C++) void moduleToBuffer(OutBuffer* buf, Module m)
99 void moduleToBuffer2(Module m, OutBuffer* buf, HdrGenState* hgs)
133 private void statementToBuffer(Statement s, OutBuffer* buf, HdrGenState* hgs)
143 OutBuffer* buf;
146 extern (D) this(OutBuffer* buf, HdrGenState* hgs)
794 private void dsymbolToBuffer(Dsymbol s, OutBuffer* buf, HdrGenState* hgs)
804 OutBuffer* buf;
807 extern (D) this(OutBuffer* buf, HdrGenState* hgs
    [all...]
identifier.d 19 import dmd.common.outbuffer;
199 OutBuffer buf;
221 OutBuffer idBuf;
globals.h 15 #include "common/outbuffer.h"
206 OutBuffer *mixinOut; // write expanded mixins for debugging
221 OutBuffer *moduleDeps; // contents to be written to deps file
staticcond.d 25 import dmd.common.outbuffer;
145 OutBuffer buf;
156 const Expression[] negatives, ref OutBuffer buf)
162 static void printOr(uint indent, ref OutBuffer buf)
295 const Expression[] negatives, ref OutBuffer buf)
dtoh.d 31 import dmd.common.outbuffer;
57 OutBuffer fwd;
58 OutBuffer done;
59 OutBuffer decl;
72 OutBuffer check;
78 OutBuffer buf;
233 OutBuffer* fwdbuf;
236 debug (Debug_DtoH_Checks) OutBuffer* checkbuf;
240 OutBuffer* donebuf;
243 OutBuffer* buf
    [all...]
tokens.d 22 import dmd.common.outbuffer;
925 void setString(const ref OutBuffer buf)
957 OutBuffer buf;
994 OutBuffer buf;
1067 void writeCharLiteral(ref OutBuffer buf, dchar c)
1111 OutBuffer buf;
1129 void writeSingleCharLiteral(ref OutBuffer buf, dchar c)
1145 OutBuffer buf;
dmodule.d 43 import dmd.common.outbuffer;
104 OutBuffer buf;
105 OutBuffer dotmods;
516 OutBuffer buf;
555 OutBuffer buf;
713 OutBuffer dbuf;
759 OutBuffer dbuf;
1460 void fullyQualifiedName(ref OutBuffer buf) nothrow
1503 OutBuffer buf;
printast.d 64 import dmd.common.outbuffer : OutBuffer;
65 OutBuffer buf;
lambdacomp.d 31 import dmd.common.outbuffer;
120 OutBuffer buf;
156 OutBuffer value;
397 OutBuffer mangledName;
cppmangle.d 44 import dmd.common.outbuffer;
72 OutBuffer buf;
82 OutBuffer buf;
93 OutBuffer buf;
165 OutBuffer* buf; /// append the mangling to buf[]
172 * buf = `OutBuffer` to write the mangling to
175 this(OutBuffer* buf, Loc loc)
350 OutBuffer b2;
2422 void write (ref OutBuffer buf, ArrayLiteralExp ale, bool skipKnown = false)
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/common/
outbuffer.h 7 * https://github.com/dlang/dmd/blob/master/src/dmd/common/outbuffer.h
18 struct OutBuffer
20 // IMPORTANT: PLEASE KEEP STATE AND DESTRUCTOR IN SYNC WITH DEFINITION IN ./outbuffer.d.
31 OutBuffer()
41 ~OutBuffer()
63 void write(const OutBuffer *buf);
outbuffer.d 7 * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/root/outbuffer.d, root/_outbuffer.d)
9 * Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/root/outbuffer.d
12 module dmd.common.outbuffer;
36 `OutBuffer` is a write-only output stream of untyped data. It is backed up by
39 struct OutBuffer
43 // IMPORTANT: PLEASE KEEP STATE AND DESTRUCTOR IN SYNC WITH DEFINITION IN ./outbuffer.h.
111 /// For porting with ease from dmd.backend.outbuf.Outbuffer
116 /// For porting with ease from dmd.backend.outbuf.Outbuffer
161 //debug (stomp) printf("OutBuffer::reserve: size = %lld, offset = %lld, nbytes = %lld\n", data.length, offset, nbytes);
181 p || assert(0, "OutBuffer: out of memory.")
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
object.h 17 struct OutBuffer;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
outbuffer.d 9 * Source: $(PHOBOSSRC std/outbuffer.d)
13 module std.outbuffer;
19 * OutBuffer provides a way to build up an array of bytes out
22 * OutBuffer's byte order is the format native to the computer.
24 * from OutBuffer.
25 * OutBuffer's internal buffer is allocated with the GC. Pointers
30 class OutBuffer
74 * put enables OutBuffer to be used as an OutputRange.
170 void write(scope const OutBuffer buf) /// ditto
240 //printf("OutBuffer.toString()\n")
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
asloptions.c 64 char *OutBuffer);
958 * OutBuffer - Merged output buffer
969 char *OutBuffer)
974 *OutBuffer = 0;
979 strcat (OutBuffer, Token);
  /src/sys/external/bsd/acpica/dist/utilities/
utxface.c 130 * PARAMETERS: OutBuffer - A buffer to receive the resources for the
137 * in the OutBuffer.
140 * and the value of OutBuffer is undefined.
146 ACPI_BUFFER *OutBuffer)
157 Status = AcpiUtValidateBuffer (OutBuffer);
165 Status = AcpiUtInitializeBuffer (OutBuffer, sizeof (ACPI_SYSTEM_INFO));
174 InfoPtr = (ACPI_SYSTEM_INFO *) OutBuffer->Pointer;
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-lang.cc 673 global.params.mixinOut = d_gc_malloc<OutBuffer> ();
1286 OutBuffer buf;
1335 OutBuffer buf;
1378 OutBuffer buf;
1426 OutBuffer *buf = global.params.mixinOut;

Completed in 39 milliseconds

1 2