HomeSort by relevance Sort by last modified time
    Searched refs:preferred (Results 1 - 25 of 152) sorted by null

1 2 3 4 5 6 7

  /frameworks/base/rs/java/android/renderscript/
RenderScriptGL.java 48 * The configuration is described by pairs of minimum and preferred bit
93 throw new RSIllegalArgumentException("preferred must be >= Minimum.");
103 * @param preferred
105 public void setColor(int minimum, int preferred) {
106 validateRange(minimum, preferred, 5, 8);
108 mColorPref = preferred;
117 * @param preferred
119 public void setAlpha(int minimum, int preferred) {
120 validateRange(minimum, preferred, 0, 8);
122 mAlphaPref = preferred;
    [all...]
  /external/chromium_org/remoting/host/
desktop_resizer.h 26 // |preferred|. Implementations will generally do one of the following:
28 // driver, regardless of |preferred|.
29 // 2. Return a list containing just |preferred|, perhaps after imposing
34 const ScreenResolution& preferred) = 0;
resizing_host_observer.cc 26 const ScreenResolution& preferred)
30 DCHECK(!preferred.IsEmpty());
32 // The client scale factor is the smaller of the candidate:preferred ratios
34 if ((candidate.dimensions().width() > preferred.dimensions().width()) ||
35 (candidate.dimensions().height() > preferred.dimensions().height())) {
37 static_cast<float>(preferred.dimensions().width()) /
40 static_cast<float>(preferred.dimensions().height()) /
49 // of the two aspect ratios (candidate and preferred) to the larger. The
50 // best aspect ratio is the one that most closely matches the preferred
58 static_cast<float>(preferred.dimensions().width())
    [all...]
desktop_resizer_linux.cc 132 const ScreenResolution& preferred) OVERRIDE;
203 const ScreenResolution& preferred) {
211 int width = std::min(std::max(preferred.dimensions().width(), min_width),
213 int height = std::min(std::max(preferred.dimensions().height(), min_height),
  /external/libcxx/test/utilities/memory/util.dynamic.safety/
get_pointer_safety.pass.cpp 21 r == std::pointer_safety::preferred ||
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.dynamic.safety/
get_pointer_safety.pass.cpp 21 r == std::pointer_safety::preferred ||
  /build/core/
executable.mk 34 # check if preferred arch is supported
44 # check if preferred arch was not supported or asked to build both
48 # check if the non-preferred arch is the primary or secondary
55 # check if non-preferred arch is supported
58 # non-preferred arch is supported
package.mk 10 # the preferred if its supported, otherwise the non-preferred.
52 # check if preferred arch is supported
58 # check if the non-preferred arch is the primary or secondary
65 # check if non-preferred arch is supported
  /external/chromium_org/components/autofill/core/common/
password_form_fill_data_unittest.cc 16 // Tests that the when there is a single preferred match, and no extra
30 form_on_page.preferred = false;
44 preferred_match.preferred = true;
60 // The preferred realm should be empty since it's the same as the realm of
78 // preferred match that was found using public suffix matching, an additional
93 form_on_page.preferred = false;
108 preferred_match.preferred = true;
122 exact_match.preferred = false;
138 public_suffix_match.preferred = false;
154 // The preferred realm should match the original signon realm from th
    [all...]
password_form.cc 17 preferred(false),
46 preferred == form.preferred &&
80 << " preferred: " << form.preferred
password_form.h 156 // the PasswordManager ensures that only one of them has a preferred bit set
160 bool preferred; member in struct:autofill::PasswordForm
  /external/chromium_org/components/sync_driver/
non_blocking_data_type_manager.h 42 // The |preferred| flag indicates whether or not this type should be synced.
43 void RegisterType(syncer::ModelType type, bool preferred);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothProfile.java 48 void setPreferred(BluetoothDevice device, boolean preferred);
OppProfile.java 63 public void setPreferred(BluetoothDevice device, boolean preferred) {
  /external/chromium_org/components/password_manager/core/browser/
password_store_change.h 43 form().preferred == other.form().preferred &&
password_form_data.h 29 const bool preferred; member in struct:password_manager::PasswordFormData
password_form_data.cc 17 form->preferred = form_data.preferred;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
DOMExtension.js 208 * @param {?Size=} preferred
210 function Constraints(minimum, preferred)
220 this.preferred = preferred || minimum;
222 if (this.minimum.width > this.preferred.width || this.minimum.height > this.preferred.height)
223 throw new Error("Minimum size is greater than preferred.");
232 return !!constraints && this.minimum.isEqual(constraints.minimum) && this.preferred.isEqual(constraints.preferred);
242 return new Constraints(this.minimum.widthToMax(value), this.preferred.widthToMax(value))
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/drawables/
AutoThumbnailDrawable.java 233 byte[] preferred = getPreferredImageBytes(data);
234 boolean hasPreferred = (preferred != null && preferred.length > 0);
237 BitmapFactory.decodeByteArray(preferred, 0, preferred.length, mOptions);
262 b = BitmapFactory.decodeByteArray(preferred, 0, preferred.length, mOptions);
  /external/chromium_org/ash/shell/
widgets.cc 110 gfx::Size preferred = view->GetPreferredSize(); local
111 view->SetBounds(left, top, preferred.width(), preferred.height());
112 top += preferred.height() + kVerticalPad;
  /external/chromium_org/chrome/test/chromedriver/chrome/
chrome_finder_unittest.cc 71 base::FilePath preferred(FILE_PATH_LITERAL("preferred"));
74 existing_paths.push_back(dir2.Append(preferred));
77 rel_paths.push_back(preferred);
83 dir2.Append(preferred), existing_paths, rel_paths, locations));
  /external/chromium_org/components/autofill/content/common/
autofill_param_traits_macros.h 43 IPC_STRUCT_TRAITS_MEMBER(preferred)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ActivityMenuListener.java 108 List<String> preferred = ManifestInfo.guessActivities(project, layoutName, pkg); local
109 current = addActivities(chooser, menu, current, image, preferred);
113 if (preferred.size() > 0) {
116 Set<String> remove = new HashSet<String>(preferred);
126 if (preferred.size() > 0) {
ConfigurationDescription.java 319 /** Returns the preferred theme, or null */
346 String preferred = defaultTheme; local
354 preferred = attributes.getTheme();
357 if (preferred == null) {
358 preferred = defaultTheme;
360 theme = preferred;
363 return preferred;
  /external/chromium_org/chrome/browser/first_run/
try_chrome_dialog_view.cc 270 gfx::Size preferred = layout->GetPreferredSize(root_view); local
273 separator->SetSize(gfx::Size(preferred.width(), separator_height));
276 gfx::Rect pos = ComputeWindowPosition(preferred.width(), preferred.height(),
283 SetToastRegion(toast_window, preferred.width(), preferred.height());

Completed in 1176 milliseconds

1 2 3 4 5 6 7