Searched refs:Type (Results 176 - 200 of 3758) sorted by path

1234567891011>>

/external/chromium_org/cc/animation/
H A Dtransform_operation.h17 enum Type { enum in struct:cc::TransformOperation
31 Type type;
/external/chromium_org/cc/quads/
H A Ddraw_quad_unittest.cc111 #define SETUP_AND_COPY_QUAD_NEW(Type, quad) \
115 const Type* ALLOW_UNUSED copy_quad = Type::MaterialCast(copy_new);
117 #define SETUP_AND_COPY_QUAD_ALL(Type, quad) \
121 copy_quad = Type::MaterialCast(copy_all);
123 #define SETUP_AND_COPY_QUAD_NEW_RP(Type, quad, a) \
127 const Type* ALLOW_UNUSED copy_quad = Type::MaterialCast(copy_new);
129 #define SETUP_AND_COPY_QUAD_ALL_RP(Type, quad, a) \
133 copy_quad = Type
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeBrowserProvider.java655 if (node == null || node.type() != Type.URL) return;
745 public enum Type { enum in class:ChromeBrowserProvider
760 private final Type mType;
770 public BookmarkNode(long id, Type type, String name, String url, BookmarkNode parent) {
802 public Type type() {
880 return new BookmarkNode(id, Type.values()[type], name, url, parent);
970 if (type < 0 || type >= Type.values().length) {
975 BookmarkNode node = new BookmarkNode(id, Type.values()[type], name, url,
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/
H A DAutocompleteController.java195 protected void onSuggestionSelected(int selectedIndex, OmniboxSuggestion.Type type,
H A DOmniboxSuggestion.java17 private final Type mType;
32 * This should be kept in sync with AutocompleteMatch::Type
36 public static enum Type { enum in class:OmniboxSuggestion
63 Type(int nativeType) { method in class:OmniboxSuggestion.Type
67 static Type getTypeFromNativeType(int nativeType) {
68 for (Type t : Type.values()) {
96 mType = Type.getTypeFromNativeType(nativeType);
118 public Type getType() {
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
H A DProviderBookmarkNodeTest.java13 import org.chromium.chrome.browser.ChromeBrowserProvider.Type;
68 BookmarkNode root = new BookmarkNode(1, Type.FOLDER, "Bookmarks", null, null);
69 root.addChild(new BookmarkNode(2, Type.URL, "Google", "http://www.google.com/", root));
70 root.addChild(new BookmarkNode(3, Type.URL, "GoogleMaps", "http://maps.google.com/", root));
72 BookmarkNode folder1 = new BookmarkNode(4, Type.FOLDER, "Youtube", null, root);
74 folder1.addChild(new BookmarkNode(5, Type.FOLDER, "Empty folder", null, folder1));
76 BookmarkNode folder2 = new BookmarkNode(6, Type.FOLDER, "Some other folder", null, folder1);
79 folder1.addChild(new BookmarkNode(7, Type.URL, "RickRoll'D",
81 folder2.addChild(new BookmarkNode(8, Type.URL, "Surprised Vader",
158 BookmarkNode node = new BookmarkNode(1, Type
[all...]
/external/chromium_org/chrome/browser/
H A Dabout_flags.h41 enum Type { enum in struct:about_flags::Experiment
86 // Type of experiment.
87 Type type;
/external/chromium_org/chrome/browser/android/
H A Dactivity_type_ids.cc11 Type GetActivityType(int type_id) {
13 return Type(type_id);
H A Dactivity_type_ids.h12 enum Type { enum in namespace:ActivityTypeIds
16 }; // enum Type
18 // Takes an int corresponding to a Type and returns the corresponding Type.
19 Type GetActivityType(int type_id);
/external/chromium_org/chrome/browser/apps/
H A Dshortcut_manager_factory.h10 template<typename Type> struct DefaultSingletonTraits;
/external/chromium_org/chrome/browser/autocomplete/
H A Dautocomplete_controller.cc44 const AutocompleteMatch::Type& match,
54 // Type will be set in the switch statement below where we'll enter one of
H A Dautocomplete_provider_unittest.cc76 AutocompleteMatch::Type type,
131 AutocompleteMatch::Type type,
169 const AutocompleteMatch::Type match_type;
H A Dchrome_autocomplete_scheme_classifier.cc23 metrics::OmniboxInputType::Type
H A Dchrome_autocomplete_scheme_classifier.h20 virtual metrics::OmniboxInputType::Type GetInputTypeForScheme(
H A Dhistory_provider.cc49 AutocompleteProvider::Type type)
H A Dhistory_provider.h28 HistoryProvider(Profile* profile, AutocompleteProvider::Type type);
H A Dhistory_url_provider.cc396 enum Type { enum in class:HistoryURLProvider::VisitClassifier
408 Type type() const { return type_; }
416 Type type_;
H A Dhistory_url_provider_unittest.cc203 metrics::OmniboxInputType::Type* identified_input_type);
211 metrics::OmniboxInputType::Type type;
292 metrics::OmniboxInputType::Type* identified_input_type) {
686 metrics::OmniboxInputType::Type type;
701 metrics::OmniboxInputType::Type type;
H A Dsearch_provider_unittest.cc124 AutocompleteMatch::Type result_type,
134 const AutocompleteMatch::Type result_type;
2287 AutocompleteMatch::Type match_type;
2693 AutocompleteMatchType::Type type;
2778 AutocompleteMatchType::Type type;
2911 AutocompleteMatchType::Type type;
2992 AutocompleteMatchType::Type type;
H A Dshortcuts_backend.cc55 AutocompleteMatch::Type GetTypeForShortcut(AutocompleteMatch::Type type) {
148 const AutocompleteMatch::Type match_type = GetTypeForShortcut(match.type);
H A Dshortcuts_backend_unittest.cc35 AutocompleteMatch::Type type = AutocompleteMatchType::URL_WHAT_YOU_TYPED);
86 AutocompleteMatch::Type type) {
180 AutocompleteMatch::Type input_type;
183 AutocompleteMatch::Type output_type;
H A Dshortcuts_provider.cc204 match.type = static_cast<AutocompleteMatch::Type>(shortcut.match_core.type);
H A Dshortcuts_provider_unittest.cc60 AutocompleteMatch::Type type;
/external/chromium_org/chrome/browser/autofill/
H A Dautofill_cc_infobar_delegate.cc65 infobars::InfoBarDelegate::Type AutofillCCInfoBarDelegate::GetInfoBarType()
H A Dautofill_cc_infobar_delegate.h51 virtual Type GetInfoBarType() const OVERRIDE;

Completed in 2133 milliseconds

1234567891011>>