/aosp_15_r20/external/moshi/moshi/src/test/java/com/squareup/moshi/ |
H A D | JsonWriterTest.java | 50 JsonWriter writer = factory.newWriter(); in nullsValuesNotSerializedByDefault() local 61 JsonWriter writer = factory.newWriter(); in nullsValuesSerializedWhenConfigured() local 73 JsonWriter writer = factory.newWriter(); in topLevelBoolean() local 81 JsonWriter writer = factory.newWriter(); in topLevelNull() local 89 JsonWriter writer = factory.newWriter(); in topLevelInt() local 97 JsonWriter writer = factory.newWriter(); in topLevelDouble() local 105 JsonWriter writer = factory.newWriter(); in topLevelString() local 113 JsonWriter writer = factory.newWriter(); in invalidTopLevelTypes() local 123 JsonWriter writer = factory.newWriter(); in twoNames() local 135 JsonWriter writer = factory.newWriter(); in nameWithoutValue() local [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/noder/ |
D | writer.go | 165 type writer struct { struct 166 p *pkgWriter 168 pkgbits.Encoder 171 sig *types2.Signature 179 localsIdx map[*types2.Var]int 183 closureVars []posVar 184 closureVarsIdx map[*types2.Var]int // index of previously seen free variables 186 dict *writerDict 190 derived bool 372 func (w *writer) pos(p poser) { [all …]
|
/aosp_15_r20/external/google-smali/dexlib2/src/test/java/com/android/tools/smali/dexlib2/formatter/ |
H A D | DexFormattedWriterTest.java | 83 DexFormattedWriter writer = new DexFormattedWriter(output); in testWriteMethodDescriptor() local 92 DexFormattedWriter writer = new DexFormattedWriter(output); in testWriteShortMethodDescriptor() local 101 DexFormattedWriter writer = new DexFormattedWriter(output); in testWriteMethodProtoDescriptor() local 110 DexFormattedWriter writer = new DexFormattedWriter(output); in testWriteFieldDescriptor() local 119 DexFormattedWriter writer = new DexFormattedWriter(output); in testWriteShortFieldDescriptor() local 128 DexFormattedWriter writer = new DexFormattedWriter(output); in testWriteMethodHandle_fieldAccess() local 137 DexFormattedWriter writer = new DexFormattedWriter(output); in testWriteMethodHandle_methodAccess() local 147 DexFormattedWriter writer = new DexFormattedWriter(output); in testWriteCallsite() local 161 DexFormattedWriter writer = new DexFormattedWriter(output); in testWriteEncodedValue_boolean_true() local 170 DexFormattedWriter writer = new DexFormattedWriter(output); in testWriteEncodedValue_boolean_false() local [all …]
|
/aosp_15_r20/external/emboss/compiler/back_end/cpp/testcode/ |
H A D | condition_test.cc | 29 auto writer = BasicConditionalWriter(buffer, sizeof buffer); in TEST() local 37 auto writer = BasicConditionalWriter(buffer, sizeof buffer); in TEST() local 58 auto writer = BasicConditionalWriter(buffer, sizeof buffer); in TEST() local 67 auto writer = BasicConditionalWriter(buffer, sizeof buffer); in TEST() local 73 auto writer = BasicConditionalWriter(buffer, sizeof buffer); in TEST() local 80 auto writer = BasicConditionalWriter(buffer, sizeof buffer); in TEST() local 90 auto writer = BasicConditionalWriter(buffer, sizeof buffer); in TEST() local 98 auto writer = BasicConditionalWriter(buffer, sizeof buffer); in TEST() local 106 auto writer = BasicConditionalWriter(buffer, sizeof buffer); in TEST() local 116 auto writer = NegativeConditionalWriter(buffer, sizeof buffer); in TEST() local [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/internal/obj/ |
D | objfile.go | 221 type writer struct { struct 222 *goobj.Writer 223 filebuf []byte 224 ctxt *Link 225 pkgpath string // the package import path (escaped), "" if unknown 226 pkglist []string // list of packages referenced, indexed by ctxt.pkgIdx 230 tmpSym goobj.Sym 231 tmpReloc goobj.Reloc 232 tmpAux goobj.Aux 233 tmpHash64 goobj.Hash64Type [all …]
|
/aosp_15_r20/external/perfetto/src/base/ |
H A D | string_writer_unittest.cc | 28 base::StringWriter writer(buffer, sizeof(buffer)); in TEST() local 33 base::StringWriter writer(buffer, sizeof(buffer)); in TEST() local 38 base::StringWriter writer(buffer, sizeof(buffer)); in TEST() local 43 base::StringWriter writer(buffer, sizeof(buffer)); in TEST() local 48 base::StringWriter writer(buffer, sizeof(buffer)); in TEST() local 53 base::StringWriter writer(buffer, sizeof(buffer)); in TEST() local 58 base::StringWriter writer(buffer, sizeof(buffer)); in TEST() local 63 base::StringWriter writer(buffer, sizeof(buffer)); in TEST() local 68 base::StringWriter writer(buffer, sizeof(buffer)); in TEST() local 73 base::StringWriter writer(buffer, sizeof(buffer)); in TEST() local [all …]
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | ast_unparse.c | 31 append_charp(_PyUnicodeWriter *writer, const char *charp) in append_charp() 70 append_repr(_PyUnicodeWriter *writer, PyObject *obj) in append_repr() 122 append_ast_boolop(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_boolop() 144 append_ast_binop(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_binop() 179 append_ast_unaryop(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_unaryop() 203 append_ast_arg(_PyUnicodeWriter *writer, arg_ty arg) in append_ast_arg() 216 append_ast_args(_PyUnicodeWriter *writer, arguments_ty args) in append_ast_args() 282 append_ast_lambda(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_lambda() 296 append_ast_ifexp(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_ifexp() 309 append_ast_dict(_PyUnicodeWriter *writer, expr_ty e) in append_ast_dict() [all …]
|
/aosp_15_r20/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | MessageSchema.java | 2579 public void writeTo(T message, Writer writer) throws IOException { in writeTo() 2592 private void writeFieldsInAscendingOrderProto2(T message, Writer writer) throws IOException { in writeFieldsInAscendingOrderProto2() 2725 numberAt(pos), (List<Double>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2729 numberAt(pos), (List<Float>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2733 numberAt(pos), (List<Long>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2737 numberAt(pos), (List<Long>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2741 numberAt(pos), (List<Integer>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2745 numberAt(pos), (List<Long>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2749 numberAt(pos), (List<Integer>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2753 numberAt(pos), (List<Boolean>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local [all …]
|
H A D | SchemaUtil.java | 73 public static void writeDouble(int fieldNumber, double value, Writer writer) throws IOException { in writeDouble() 79 public static void writeFloat(int fieldNumber, float value, Writer writer) throws IOException { in writeFloat() 85 public static void writeInt64(int fieldNumber, long value, Writer writer) throws IOException { in writeInt64() 91 public static void writeUInt64(int fieldNumber, long value, Writer writer) throws IOException { in writeUInt64() 97 public static void writeSInt64(int fieldNumber, long value, Writer writer) throws IOException { in writeSInt64() 103 public static void writeFixed64(int fieldNumber, long value, Writer writer) throws IOException { in writeFixed64() 109 public static void writeSFixed64(int fieldNumber, long value, Writer writer) throws IOException { in writeSFixed64() 115 public static void writeInt32(int fieldNumber, int value, Writer writer) throws IOException { in writeInt32() 121 public static void writeUInt32(int fieldNumber, int value, Writer writer) throws IOException { in writeUInt32() 127 public static void writeSInt32(int fieldNumber, int value, Writer writer) throws IOException { in writeSInt32() [all …]
|
H A D | ExtensionSchemaLite.java | 336 void serializeExtension(Writer writer, Map.Entry<?, ?> extension) throws IOException { in serializeExtension() 345 writer, in serializeExtension() local 352 writer, in serializeExtension() local 359 writer, in serializeExtension() local 366 writer, in serializeExtension() local 373 writer, in serializeExtension() local 380 writer, in serializeExtension() local 387 writer, in serializeExtension() local 394 writer, in serializeExtension() local 399 descriptor.getNumber(), (List<ByteString>) extension.getValue(), writer); in serializeExtension() local [all …]
|
H A D | ExtensionSchemaFull.java | 315 void serializeExtension(Writer writer, Map.Entry<?, ?> extension) throws IOException { in serializeExtension() 323 writer, in serializeExtension() local 330 writer, in serializeExtension() local 337 writer, in serializeExtension() local 344 writer, in serializeExtension() local 351 writer, in serializeExtension() local 358 writer, in serializeExtension() local 365 writer, in serializeExtension() local 372 writer, in serializeExtension() local 377 descriptor.getNumber(), (List<ByteString>) extension.getValue(), writer); in serializeExtension() local [all …]
|
/aosp_15_r20/external/cronet/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | MessageSchema.java | 2579 public void writeTo(T message, Writer writer) throws IOException { in writeTo() 2592 private void writeFieldsInAscendingOrderProto2(T message, Writer writer) throws IOException { in writeFieldsInAscendingOrderProto2() 2725 numberAt(pos), (List<Double>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2729 numberAt(pos), (List<Float>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2733 numberAt(pos), (List<Long>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2737 numberAt(pos), (List<Long>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2741 numberAt(pos), (List<Integer>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2745 numberAt(pos), (List<Long>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2749 numberAt(pos), (List<Integer>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local 2753 numberAt(pos), (List<Boolean>) unsafe.getObject(message, offset), writer, false); in writeFieldsInAscendingOrderProto2() local [all …]
|
H A D | SchemaUtil.java | 73 public static void writeDouble(int fieldNumber, double value, Writer writer) throws IOException { in writeDouble() 79 public static void writeFloat(int fieldNumber, float value, Writer writer) throws IOException { in writeFloat() 85 public static void writeInt64(int fieldNumber, long value, Writer writer) throws IOException { in writeInt64() 91 public static void writeUInt64(int fieldNumber, long value, Writer writer) throws IOException { in writeUInt64() 97 public static void writeSInt64(int fieldNumber, long value, Writer writer) throws IOException { in writeSInt64() 103 public static void writeFixed64(int fieldNumber, long value, Writer writer) throws IOException { in writeFixed64() 109 public static void writeSFixed64(int fieldNumber, long value, Writer writer) throws IOException { in writeSFixed64() 115 public static void writeInt32(int fieldNumber, int value, Writer writer) throws IOException { in writeInt32() 121 public static void writeUInt32(int fieldNumber, int value, Writer writer) throws IOException { in writeUInt32() 127 public static void writeSInt32(int fieldNumber, int value, Writer writer) throws IOException { in writeSInt32() [all …]
|
H A D | ExtensionSchemaFull.java | 315 void serializeExtension(Writer writer, Map.Entry<?, ?> extension) throws IOException { in serializeExtension() 323 writer, in serializeExtension() local 330 writer, in serializeExtension() local 337 writer, in serializeExtension() local 344 writer, in serializeExtension() local 351 writer, in serializeExtension() local 358 writer, in serializeExtension() local 365 writer, in serializeExtension() local 372 writer, in serializeExtension() local 377 descriptor.getNumber(), (List<ByteString>) extension.getValue(), writer); in serializeExtension() local [all …]
|
H A D | ExtensionSchemaLite.java | 336 void serializeExtension(Writer writer, Map.Entry<?, ?> extension) throws IOException { in serializeExtension() 345 writer, in serializeExtension() local 352 writer, in serializeExtension() local 359 writer, in serializeExtension() local 366 writer, in serializeExtension() local 373 writer, in serializeExtension() local 380 writer, in serializeExtension() local 387 writer, in serializeExtension() local 394 writer, in serializeExtension() local 399 descriptor.getNumber(), (List<ByteString>) extension.getValue(), writer); in serializeExtension() local [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/java/src/gen/cc/ |
H A D | source_writer_test.cc | 28 SourceBufferWriter writer; in TEST() local 36 SourceBufferWriter writer; in TEST() local 44 SourceBufferWriter writer; in TEST() local 52 SourceBufferWriter writer; in TEST() local 60 SourceBufferWriter writer; in TEST() local 68 SourceBufferWriter writer; in TEST() local 76 SourceBufferWriter writer; in TEST() local 84 SourceBufferWriter writer; in TEST() local 92 SourceBufferWriter writer; in TEST() local 100 SourceBufferWriter writer; in TEST() local [all …]
|
/aosp_15_r20/external/libxml2/ |
H A D | xmlwriter.c | 462 xmlFreeTextWriter(xmlTextWriterPtr writer) in xmlFreeTextWriter() 504 xmlTextWriterStartDocument(xmlTextWriterPtr writer, const char *version, in xmlTextWriterStartDocument() 624 xmlTextWriterEndDocument(xmlTextWriterPtr writer) in xmlTextWriterEndDocument() 714 xmlTextWriterStartComment(xmlTextWriterPtr writer) in xmlTextWriterStartComment() 798 xmlTextWriterEndComment(xmlTextWriterPtr writer) in xmlTextWriterEndComment() 856 xmlTextWriterWriteFormatComment(xmlTextWriterPtr writer, in xmlTextWriterWriteFormatComment() 881 xmlTextWriterWriteVFormatComment(xmlTextWriterPtr writer, in xmlTextWriterWriteVFormatComment() 913 xmlTextWriterWriteComment(xmlTextWriterPtr writer, const xmlChar * content) in xmlTextWriterWriteComment() 945 xmlTextWriterStartElement(xmlTextWriterPtr writer, const xmlChar * name) in xmlTextWriterStartElement() 1042 xmlTextWriterStartElementNS(xmlTextWriterPtr writer, in xmlTextWriterStartElementNS() [all …]
|
/aosp_15_r20/external/cronet/third_party/libxml/src/ |
H A D | xmlwriter.c | 466 xmlFreeTextWriter(xmlTextWriterPtr writer) in xmlFreeTextWriter() 508 xmlTextWriterStartDocument(xmlTextWriterPtr writer, const char *version, in xmlTextWriterStartDocument() 628 xmlTextWriterEndDocument(xmlTextWriterPtr writer) in xmlTextWriterEndDocument() 718 xmlTextWriterStartComment(xmlTextWriterPtr writer) in xmlTextWriterStartComment() 802 xmlTextWriterEndComment(xmlTextWriterPtr writer) in xmlTextWriterEndComment() 860 xmlTextWriterWriteFormatComment(xmlTextWriterPtr writer, in xmlTextWriterWriteFormatComment() 885 xmlTextWriterWriteVFormatComment(xmlTextWriterPtr writer, in xmlTextWriterWriteVFormatComment() 917 xmlTextWriterWriteComment(xmlTextWriterPtr writer, const xmlChar * content) in xmlTextWriterWriteComment() 949 xmlTextWriterStartElement(xmlTextWriterPtr writer, const xmlChar * name) in xmlTextWriterStartElement() 1046 xmlTextWriterStartElementNS(xmlTextWriterPtr writer, in xmlTextWriterStartElementNS() [all …]
|
/aosp_15_r20/external/google-smali/baksmali/src/test/java/com/android/tools/smali/baksmali/formatter/ |
H A D | BaksmaliWriterTest.java | 70 BaksmaliWriter writer = new BaksmaliWriter(output); in testWriteMethodDescriptor_withSpaces() local 82 BaksmaliWriter writer = new BaksmaliWriter(output); in testWriteShortMethodDescriptor_withSpaces() local 94 BaksmaliWriter writer = new BaksmaliWriter(output); in testWriteMethodProtoDescriptor_withSpaces() local 105 BaksmaliWriter writer = new BaksmaliWriter(output); in testWriteFieldDescriptor_withSpaces() local 115 BaksmaliWriter writer = new BaksmaliWriter(output); in testWriteShortFieldDescriptor_withSpaces() local 125 BaksmaliWriter writer = new BaksmaliWriter(output); in testWriteMethodHandle_fieldAccess_withSpaces() local 135 BaksmaliWriter writer = new BaksmaliWriter(output); in testWriteMethodHandle_methodAccess_withSpaces() local 146 BaksmaliWriter writer = new BaksmaliWriter(output); in testWriteCallsite_withSpaces() local 170 BaksmaliWriter writer = new BaksmaliWriter(output); in testWriteEncodedValue_annotation_withSpaces() local 192 BaksmaliWriter writer = new BaksmaliWriter(output); in testWriteEncodedValue_array_withSpaces() local [all …]
|
/aosp_15_r20/external/cronet/net/ntlm/ |
H A D | ntlm_buffer_writer_unittest.cc | 15 const uint8_t* GetBufferPtr(const NtlmBufferWriter& writer) { in GetBufferPtr() 20 uint8_t GetByteFromBuffer(const NtlmBufferWriter& writer, size_t index) { in GetByteFromBuffer() 28 NtlmBufferWriter writer(1); in TEST() local 39 NtlmBufferWriter writer(0); in TEST() local 78 NtlmBufferWriter writer(sizeof(uint16_t)); in TEST() local 90 NtlmBufferWriter writer(sizeof(uint16_t) - 1); in TEST() local 100 NtlmBufferWriter writer(sizeof(uint32_t)); in TEST() local 110 NtlmBufferWriter writer(sizeof(uint32_t) - 1); in TEST() local 120 NtlmBufferWriter writer(sizeof(uint64_t)); in TEST() local 130 NtlmBufferWriter writer(sizeof(uint64_t) - 1); in TEST() local [all …]
|
/aosp_15_r20/external/gson/gson/src/test/java/com/google/gson/internal/bind/ |
H A D | JsonTreeWriterTest.java | 36 JsonTreeWriter writer = new JsonTreeWriter(); in testArray() local 47 JsonTreeWriter writer = new JsonTreeWriter(); in testNestedArray() local 61 JsonTreeWriter writer = new JsonTreeWriter(); in testObject() local 71 JsonTreeWriter writer = new JsonTreeWriter(); in testNestedObject() local 88 JsonTreeWriter writer = new JsonTreeWriter(); in testWriteAfterClose() local 103 JsonTreeWriter writer = new JsonTreeWriter(); in testPrematureClose() local 115 JsonTreeWriter writer = new JsonTreeWriter(); in testSerializeNullsFalse() local 126 JsonTreeWriter writer = new JsonTreeWriter(); in testSerializeNullsTrue() local 137 JsonTreeWriter writer = new JsonTreeWriter(); in testEmptyWriter() local 143 JsonTreeWriter writer = new JsonTreeWriter(); in testBeginArray() local [all …]
|
/aosp_15_r20/platform_testing/libraries/flicker/utils/test/src/android/tools/io/ |
H A D | ResultWriterTest.kt | 50 val writer = in cannotWriteFileWithoutScenario() constant 61 val writer = newTestResultWriter() in writesEmptyFile() constant 78 val writer = in writesUndefinedFile() constant 88 val writer = newTestResultWriter().setRunComplete() in writesRunCompleteFile() constant 97 val writer = newTestResultWriter().setRunFailed(EXPECTED_FAILURE) in writesRunFailureFile() constant 108 val writer = in writesTransitionTime() constant 124 val writer = in writeWMTrace() constant 136 val writer = newTestResultWriter().addTraceResult(TraceType.SF, TestTraces.LayerTrace.FILE) in writeLayersTrace() constant 147 val writer = in writeTransactionTrace() constant 160 val writer = in writeTransitionTrace() constant [all …]
|
/aosp_15_r20/out/soong/.intermediates/external/oj-libjdwp/jdwpgen/linux_glibc_common/javac/ |
D | jdwpgen.jar | ... .jdwpgen.Node node
java.io.PrintWriter writer
void documentIndex (java.io.PrintWriter)
java ... |
/aosp_15_r20/external/google-smali/third_party/baksmali/src/main/java/com/android/tools/smali/baksmali/Adaptors/Format/ |
H A D | InstructionMethodItem.java | 94 public boolean writeTo(BaksmaliWriter writer) throws IOException { in writeTo() 401 protected void writeOpcode(BaksmaliWriter writer) throws IOException { in writeOpcode() 405 protected void writeTargetLabel(BaksmaliWriter writer) throws IOException { in writeTargetLabel() 411 protected void writeRegister(BaksmaliWriter writer, int registerNumber) throws IOException { in writeRegister() 415 protected void writeFirstRegister(BaksmaliWriter writer) throws IOException { in writeFirstRegister() 419 protected void writeSecondRegister(BaksmaliWriter writer) throws IOException { in writeSecondRegister() 423 protected void writeThirdRegister(BaksmaliWriter writer) throws IOException { in writeThirdRegister() 427 protected void writeInvokeRegisters(BaksmaliWriter writer) throws IOException { in writeInvokeRegisters() 472 protected void writeInvokeRangeRegisters(BaksmaliWriter writer) throws IOException { in writeInvokeRangeRegisters() 484 protected void writeLiteral(BaksmaliWriter writer) throws IOException { in writeLiteral() [all …]
|
/aosp_15_r20/external/skia/tools/debugger/ |
H A D | DrawCommand.cpp | 285 void DrawCommand::toJSON(SkJSONWriter& writer, UrlDataManager& urlDataManager) const { in toJSON() 392 void apply_paint_blend_mode(const SkPaint& paint, SkJSONWriter& writer) { in apply_paint_blend_mode() 401 void DrawCommand::MakeJsonColor(SkJSONWriter& writer, const SkColor color) { in MakeJsonColor() 410 void DrawCommand::MakeJsonColor4f(SkJSONWriter& writer, const SkColor4f& color) { in MakeJsonColor4f() 419 void DrawCommand::MakeJsonPoint(SkJSONWriter& writer, const SkPoint& point) { in MakeJsonPoint() 426 void DrawCommand::MakeJsonPoint(SkJSONWriter& writer, SkScalar x, SkScalar y) { in MakeJsonPoint() 433 void DrawCommand::MakeJsonPoint3(SkJSONWriter& writer, const SkPoint3& point) { in MakeJsonPoint3() 441 void DrawCommand::MakeJsonRect(SkJSONWriter& writer, const SkRect& rect) { in MakeJsonRect() 450 void DrawCommand::MakeJsonIRect(SkJSONWriter& writer, const SkIRect& rect) { in MakeJsonIRect() 459 static void make_json_rrect(SkJSONWriter& writer, const SkRRect& rrect) { in make_json_rrect() [all …]
|