Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for indent_level (0.16 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_to_string.cc

    struct IndentedToStringVisitor : flatbuffers::ToStringVisitor {
      std::string indent_str;
      int indent_level;
    
      IndentedToStringVisitor(const std::string& delimiter,
                              const std::string& indent)
          : ToStringVisitor(delimiter), indent_str(indent), indent_level(0) {}
    
      void indent() {
        for (int i = 0; i < indent_level; ++i) s.append(indent_str);
      }
    
      // Adjust indention for fields in sequences.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top