Lines Matching defs:out
126 unsigned char* out) {
128 bool hasOut = (out != NULL);
143 if (hasOut) { *out = kLF_PdfWhiteSpace; }
144 out++;
149 if (hasOut) { *out = kCR_PdfWhiteSpace; }
150 out++;
155 if (hasOut) { *out = kHT_PdfWhiteSpace; }
156 out++;
162 if (hasOut) { *out = kBackspace_PdfSpecial; }
163 out++;
168 if (hasOut) { *out = kFF_PdfWhiteSpace; }
169 out++;
174 if (hasOut) { *out = kOpenedRoundBracket_PdfDelimiter; }
175 out++;
180 if (hasOut) { *out = kClosedRoundBracket_PdfDelimiter; }
181 out++;
186 if (hasOut) { *out = kEscape_PdfSpecial; }
187 out++;
209 if (hasOut) { *out = code & 0xff; }
210 out++;
215 if (hasOut) { *out = code & 0xff; }
216 out++;
230 if (hasOut) { *out = *in; }
232 out++;
240 return start + (out - (const unsigned char*)NULL);
256 unsigned char* out = (unsigned char*)allocator->alloc(outLength);
257 const unsigned char* now = readString(start, end, out);
258 SkPdfNativeObject::makeString(out, out + outLength, str);
260 TRACE_STRING(out, out + outLength);
265 unsigned char* out) {
266 bool hasOut = (out != NULL);
332 if (hasOut) { *out = code; }
333 out++;
338 if (hasOut) { *out = code; }
339 out++;
381 if (hasOut) { *out = code; }
382 out++;
390 return start + (out - (const unsigned char*)NULL);
404 unsigned char* out = (unsigned char*)allocator->alloc(outLength);
405 const unsigned char* now = readHexString(start, end, out);
406 SkPdfNativeObject::makeHexString(out, out + outLength, str);
408 TRACE_HEXSTRING(out, out + outLength);
414 unsigned char* out) {
415 bool hasOut = (out != NULL);
503 if (hasOut) { *out = code; }
504 out++;
507 if (hasOut) { *out = *in; }
508 out++;
517 return start + (out - (const unsigned char*)NULL);
532 unsigned char* out = (unsigned char*)allocator->alloc(outLength);
533 const unsigned char* now = readName(start, end, out);
534 SkPdfNativeObject::makeName(out, out + outLength, name);
536 TRACE_NAME(out, out + outLength);