HomeSort by relevance Sort by last modified time
    Searched defs:ModelType (Results 1 - 8 of 8) sorted by null

  /external/chromium/chrome/browser/ui/toolbar/
back_forward_menu_model.h 35 enum ModelType {
40 BackForwardMenuModel(Browser* browser, ModelType model_type);
184 ModelType model_type_;
  /external/chromium_org/chrome/browser/ui/toolbar/
back_forward_menu_model.h 45 enum ModelType {
50 BackForwardMenuModel(Browser* browser, ModelType model_type);
199 ModelType model_type_;
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
Distance.h 39 enum ModelType {
50 ModelType model() { return m_model; }
52 void setModel(ModelType model, bool clamped)
72 ModelType m_model;
  /external/chromium_org/sync/android/javatests/src/org/chromium/sync/notifier/
InvalidationServiceTest.java 25 import org.chromium.sync.internal_api.pub.base.ModelType;
86 ModelType.modelTypesToObjectIds(
87 Sets.newHashSet(ModelType.BOOKMARK, ModelType.SESSION)),
88 ModelType.modelTypesToObjectIds(
89 Sets.newHashSet(ModelType.BOOKMARK, ModelType.SESSION)),
103 Sets.newHashSet(ModelType.BOOKMARK.toObjectId(), ModelType.SESSION.toObjectId());
109 Sets.newHashSet(ModelType.BOOKMARK.toObjectId(), ModelType.SESSION.toObjectId())
    [all...]
InvalidationControllerTest.java 22 import org.chromium.sync.internal_api.pub.base.ModelType;
158 Sets.newHashSet(ModelType.BOOKMARK, ModelType.SESSION));
172 Sets.newHashSet(ModelType.BOOKMARK.name(), ModelType.SESSION.name());
183 Sets.newHashSet(ModelType.BOOKMARK, ModelType.SESSION));
196 Set<String> expectedTypes = Sets.newHashSet(ModelType.ALL_TYPES_TYPE);
210 storedModelTypes.add(ModelType.BOOKMARK.name());
211 storedModelTypes.add(ModelType.TYPED_URL.name())
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
model_type.h 30 enum ModelType {
77 typedef std::set<ModelType> ModelTypeSet;
79 inline ModelType ModelTypeFromInt(int i) {
82 return static_cast<ModelType>(i);
85 void AddDefaultExtensionValue(syncable::ModelType datatype,
88 // Extract the model type of a SyncEntity protocol buffer. ModelType is a
89 // local concept: the enum is not in the protocol. The SyncEntity's ModelType
92 ModelType GetModelType(const sync_pb::SyncEntity& sync_entity);
97 ModelType GetModelTypeFromSpecifics(const sync_pb::EntitySpecifics& specifics);
101 ModelType GetModelTypeFromExtensionFieldNumber(int field_number)
    [all...]
  /external/chromium_org/sync/android/java/src/org/chromium/sync/internal_api/pub/base/
ModelType.java 20 public enum ModelType {
77 private static final String TAG = "ModelType";
83 ModelType(String modelType, boolean nonInvalidationType) {
84 mModelType = modelType;
88 ModelType(String modelType) {
89 this(modelType, false);
93 * Returns the {@link ObjectId} representation of this {@link ModelType}.
95 * This should be used with caution, since it converts even {@link ModelType} instances wit
    [all...]
  /external/chromium_org/sync/internal_api/public/base/
model_type.h 35 enum ModelType {
139 typedef EnumSet<ModelType, FIRST_REAL_MODEL_TYPE, LAST_REAL_MODEL_TYPE>
141 typedef EnumSet<ModelType, UNSPECIFIED, LAST_REAL_MODEL_TYPE>
144 inline ModelType ModelTypeFromInt(int i) {
147 return static_cast<ModelType>(i);
151 SYNC_EXPORT void AddDefaultFieldValue(ModelType datatype,
154 // Extract the model type of a SyncEntity protocol buffer. ModelType is a
155 // local concept: the enum is not in the protocol. The SyncEntity's ModelType
158 SYNC_EXPORT_PRIVATE ModelType GetModelType(
164 SYNC_EXPORT ModelType GetModelTypeFromSpecifics
    [all...]

Completed in 266 milliseconds