/third_party/skia/third_party/externals/tint/src/writer/ |
D | text_generator.cc | 25 TextGenerator::TextGenerator(const Program* program) in TextGenerator() function in tint::writer::TextGenerator 28 TextGenerator::~TextGenerator() = default; 30 std::string TextGenerator::UniqueIdentifier(const std::string& prefix) { in UniqueIdentifier() 34 std::string TextGenerator::StructName(const sem::Struct* s) { in StructName() 43 std::string TextGenerator::TrimSuffix(std::string str, in TrimSuffix() 53 TextGenerator::LineWriter::LineWriter(TextBuffer* buf) : buffer(buf) {} in LineWriter() 55 TextGenerator::LineWriter::LineWriter(LineWriter&& other) { in LineWriter() 60 TextGenerator::LineWriter::~LineWriter() { in ~LineWriter() 66 TextGenerator::TextBuffer::TextBuffer() = default; 67 TextGenerator::TextBuffer::~TextBuffer() = default; [all …]
|
D | text_generator.h | 31 class TextGenerator { 92 explicit TextGenerator(const Program* program); 93 ~TextGenerator(); 185 explicit ScopedIndent(TextGenerator* generator);
|
D | text_generator_test.cc | 26 TextGenerator gen(&program); in TEST() 38 TextGenerator gen(&program); in TEST()
|
/third_party/protobuf/src/google/protobuf/ |
D | text_format.h | 370 class TextGenerator; 376 void Print(const Message& message, TextGenerator* generator) const; 381 TextGenerator* generator) const; 387 TextGenerator* generator) const; 394 TextGenerator* generator) const; 400 TextGenerator* generator) const; 406 TextGenerator* generator, 409 bool PrintAny(const Message& message, TextGenerator* generator) const;
|
D | text_format.cc | 1217 class TextFormat::Printer::TextGenerator class in google::protobuf::TextFormat::Printer 1220 explicit TextGenerator(io::ZeroCopyOutputStream* output, in TextGenerator() function in google::protobuf::TextFormat::Printer::TextGenerator 1230 ~TextGenerator() { in ~TextGenerator() 1290 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(TextGenerator); 1904 TextGenerator generator(output, initial_indent_level_); in Print() 1919 TextGenerator generator(output, initial_indent_level_); in PrintUnknownFields() 1948 TextGenerator* generator) const { in PrintAny() 1996 TextGenerator* generator) const { in Print() 2051 TextGenerator generator(&output_stream, initial_indent_level_); in PrintFieldValueToString() 2233 TextGenerator* generator) const { in PrintField() [all …]
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | TextFormat.java | 247 final int tag, final Object value, final TextGenerator generator) throws IOException { in printUnknownFieldValue() 344 private void print(final MessageOrBuilder message, final TextGenerator generator) in print() 358 private boolean printAny(final MessageOrBuilder message, final TextGenerator generator) in printAny() 422 final FieldDescriptor field, final Object value, final TextGenerator generator) in printField() 532 final FieldDescriptor field, final Object value, final TextGenerator generator) in printFieldValue() 663 final int tag, final Object value, final TextGenerator generator) throws IOException { in printUnknownFieldValue() 699 private void printMessage(final MessageOrBuilder message, final TextGenerator generator) in printMessage() 708 final FieldDescriptor field, final Object value, final TextGenerator generator) in printSingleField() 750 final UnknownFieldSet unknownFields, final TextGenerator generator) throws IOException { in printUnknownFields() 776 final int number, final int wireType, final List<?> values, final TextGenerator generator) in printUnknownField() [all …]
|
/third_party/skia/third_party/externals/tint/src/writer/msl/ |
D | generator_impl_type_test.cc | 223 TextGenerator::TextBuffer buf; in TEST_F() 274 TextGenerator::TextBuffer buf; in TEST_F() 384 TextGenerator::TextBuffer buf; in TEST_F() 479 TextGenerator::TextBuffer buf; in TEST_F() 565 TextGenerator::TextBuffer buf; in TEST_F() 628 TextGenerator::TextBuffer buf; in TEST_F()
|
D | generator_impl.h | 90 class GeneratorImpl : public TextGenerator {
|
D | generator_impl.cc | 194 GeneratorImpl::GeneratorImpl(const Program* program) : TextGenerator(program) {} in GeneratorImpl()
|
/third_party/skia/third_party/externals/tint/src/writer/wgsl/ |
D | generator_impl.h | 45 class GeneratorImpl : public TextGenerator {
|
D | generator_impl.cc | 64 GeneratorImpl::GeneratorImpl(const Program* program) : TextGenerator(program) {} in GeneratorImpl()
|
/third_party/skia/third_party/externals/tint/src/writer/hlsl/ |
D | generator_impl_type_test.cc | 176 TextGenerator::TextBuffer buf; in TEST_F() 250 TextGenerator::TextBuffer buf; in TEST_F()
|
D | generator_impl.h | 83 class GeneratorImpl : public TextGenerator {
|
D | generator_impl.cc | 203 GeneratorImpl::GeneratorImpl(const Program* program) : TextGenerator(program) {} in GeneratorImpl()
|
/third_party/skia/third_party/externals/tint/src/writer/glsl/ |
D | generator_impl_type_test.cc | 176 TextGenerator::TextBuffer buf; in TEST_F() 231 TextGenerator::TextBuffer buf; in TEST_F()
|
D | generator_impl.h | 54 class GeneratorImpl : public TextGenerator {
|
D | generator_impl.cc | 82 GeneratorImpl::GeneratorImpl(const Program* program) : TextGenerator(program) {} in GeneratorImpl()
|
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
D | JsonFormat.java | 619 interface TextGenerator { interface in JsonFormat 630 private static final class CompactTextGenerator implements TextGenerator { 654 private static final class PrettyTextGenerator implements TextGenerator { 722 private final TextGenerator generator;
|
/third_party/protobuf/csharp/ |
D | CHANGES.txt | 22 - TextGenerator introduces a new overload of PrintTo
|