Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsCPPKeyword (0.58 sec)

  1. tensorflow/cc/framework/cc_op_gen_util.h

    // argument to a function.
    std::pair<StringPiece, bool> AttrTypeName(StringPiece attr_type);
    
    StringPiece ListElementTypeName(StringPiece attr_type);
    
    bool IsCPPKeyword(StringPiece name);
    
    string AvoidCPPKeywords(StringPiece name);
    
    void InferArgAttributes(const OpDef::ArgDef& arg,
                            std::unordered_map<string, string>* inferred_attrs);
    
    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

      if (entry == attr_list_type_map->end()) {
        LOG(FATAL) << "Unsupported or non-list Attr type: " << attr_type;
        return "";
      }
      return entry->second;
    }
    
    bool IsCPPKeyword(StringPiece name) {
      static const absl::flat_hash_set<StringPiece, StringPieceHasher>*
          // Keywords obtained from http://en.cppreference.com/w/cpp/keyword
    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