Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SeparateNamespaces (0.15 sec)

  1. tensorflow/cc/framework/cc_op_gen_util.h

    string PrintAttrValue(StringPiece, const AttrValue& attr_value);
    
    bool IsEmptyList(const AttrValue::ListValue& list);
    
    string ToCamelCase(StringPiece str);
    
    string SeparateNamespaces(StringPiece str);
    
    // Returns a <string, bool> pair. The string is the C++ type name to be used for
    // attr_type when defining an object of that type. The bool is a flag to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/cc_op_gen_util.cc

          cap = true;
        } else if (cap) {
          result += toupper(c);
          cap = false;
        } else {
          result += c;
        }
      }
      return result;
    }
    
    string SeparateNamespaces(StringPiece str) {
      string result;
      const char joiner = '_';
      size_t i = 0;
      while (i < str.size()) {
        const char c = str[i++];
        if (c == '>') {
          result += joiner;
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top