Category          180 google_apis/drive/gdata_wapi_parser.cc   Category::CategoryType type;
Category          185 google_apis/drive/gdata_wapi_parser.cc     { Category::CATEGORY_KIND, "http://schemas.google.com/g/2005#kind" },
Category          186 google_apis/drive/gdata_wapi_parser.cc     { Category::CATEGORY_LABEL, "http://schemas.google.com/g/2005/labels" },
Category          334 google_apis/drive/gdata_wapi_parser.cc Category::Category() : type_(CATEGORY_UNKNOWN) {
Category          338 google_apis/drive/gdata_wapi_parser.cc bool Category::GetCategoryTypeFromScheme(
Category          339 google_apis/drive/gdata_wapi_parser.cc     const base::StringPiece& scheme, Category::CategoryType* result) {
Category          351 google_apis/drive/gdata_wapi_parser.cc void Category::RegisterJSONConverter(
Category          352 google_apis/drive/gdata_wapi_parser.cc     base::JSONValueConverter<Category>* converter) {
Category          353 google_apis/drive/gdata_wapi_parser.cc   converter->RegisterStringField(kLabelField, &Category::label_);
Category          354 google_apis/drive/gdata_wapi_parser.cc   converter->RegisterCustomField<Category::CategoryType>(
Category          355 google_apis/drive/gdata_wapi_parser.cc       kSchemeField, &Category::type_, &Category::GetCategoryTypeFromScheme);
Category          356 google_apis/drive/gdata_wapi_parser.cc   converter->RegisterStringField(kTermField, &Category::term_);
Category          441 google_apis/drive/gdata_wapi_parser.cc   converter->template RegisterRepeatedMessage<Category>(
Category          629 google_apis/drive/gdata_wapi_parser.cc     const Category* category = categories_[i];
Category          630 google_apis/drive/gdata_wapi_parser.cc     if (category->type() == Category::CATEGORY_KIND)
Category          632 google_apis/drive/gdata_wapi_parser.cc     else if (category->type() == Category::CATEGORY_LABEL)
Category          183 google_apis/drive/gdata_wapi_parser.h class Category {
Category          192 google_apis/drive/gdata_wapi_parser.h   Category();
Category          197 google_apis/drive/gdata_wapi_parser.h       base::JSONValueConverter<Category>* converter);
Category          225 google_apis/drive/gdata_wapi_parser.h   DISALLOW_COPY_AND_ASSIGN(Category);
Category          333 google_apis/drive/gdata_wapi_parser.h   const ScopedVector<Category>& categories() const { return categories_; }
Category          342 google_apis/drive/gdata_wapi_parser.h   void set_categories(ScopedVector<Category> categories) {
Category          359 google_apis/drive/gdata_wapi_parser.h   ScopedVector<Category> categories_;