HomeSort by relevance Sort by last modified time
    Searched refs:minimum (Results 126 - 150 of 360) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/browser/chromeos/policy/
login_screen_power_management_policy.cc 58 int minimum,
63 if (!value || !value->GetAsInteger(&integer) || integer >= minimum)
  /external/chromium_org/chrome/browser/net/
url_info.cc 245 int minimum() const { return static_cast<int>(minimum_); } function in class:chrome_browser_net::MinMaxAverage
328 queue.minimum(), queue.average(), queue.maximum());
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeFieldElements.h 198 static PassRefPtr<DateTimeSymbolicMonthFieldElement> create(Document&, FieldOwner&, const Vector<String>&, int minimum, int maximum);
201 DateTimeSymbolicMonthFieldElement(Document&, FieldOwner&, const Vector<String>&, int minimum, int maximum);
  /frameworks/av/include/private/media/
AudioTrackShared.h 247 void setMinimum(size_t minimum) {
248 mCblk->mMinimum = minimum;
314 #define MIN_LOOP 16 // minimum length of each loop iteration in frames
  /external/jdiff/src/jdiff/
DiffMyers.java 115 final int dmin = xoff - ylim; // Minimum valid diagonal.
642 int minimum = 1; local
645 /* MINIMUM is approximate square root of LENGTH/4.
650 minimum *= 2;
651 minimum++;
653 /* Cancel any subrun of MINIMUM or more provisionals
658 else if (minimum == ++consec)
661 else if (minimum < consec)
  /frameworks/av/media/libmedia/
AudioTrackShared.cpp 625 size_t minimum = cblk->mMinimum; local
626 if (minimum == 0) {
627 minimum = mIsOut ? half : 1;
628 } else if (minimum > half) {
629 minimum = half;
632 if (!mIsOut || (mAvailToClient + stepCount >= minimum)) {
633 ALOGV("mAvailToClient=%u stepCount=%u minimum=%u", mAvailToClient, stepCount, minimum);
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_ncons.c 94 ASN1_IMP_OPT(GENERAL_SUBTREE, minimum, ASN1_INTEGER, 0),
309 if (sub->minimum || sub->maximum)
333 if (sub->minimum || sub->maximum)
  /external/openssl/crypto/x509v3/
v3_ncons.c 94 ASN1_IMP_OPT(GENERAL_SUBTREE, minimum, ASN1_INTEGER, 0),
309 if (sub->minimum || sub->maximum)
333 if (sub->minimum || sub->maximum)
  /external/chromium/chrome/common/
json_schema_validator.cc 461 double minimum = 0; local
462 if (GetNumberFromDictionary(schema, "minimum", &minimum)) {
463 if (value < minimum)
465 kNumberMinimum, base::DoubleToString(minimum))));
  /external/chromium_org/content/renderer/gpu/
render_widget_compositor.h 95 float minimum,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
logtesting.py 143 logging_level: An integer logging level that is the minimum level
  /external/chromium_org/third_party/libjingle/source/talk/base/
profiler.cc 197 << " min=" << FormattedTime(profiler_event.minimum())
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
__init__.py 141 min_bitrate_mbps: The minimum capture bitrate in MegaBits Per Second.
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CSpinner.java 191 * Sets minimum and maximum using single invocation.
193 public void setRange(int minimum, int maximum) {
194 setMinimum(minimum);
199 * @return the minimum value that the receiver will allow.
206 * Sets the minimum value that the receiver will allow.
208 public void setMinimum(int minimum) {
209 m_minimum = minimum;
231 * not within the range specified by minimum and maximum, it will be adjusted to fall within this
  /external/chromium_org/chrome/common/extensions/docs/examples/api/idle/idle_simple/
history.js 76 // Check every second (even though this is overkill - minimum idle
  /frameworks/av/services/audioflinger/
FastMixer.cpp 45 #define MIN_WARMUP_CYCLES 2 // minimum number of loop cycles to wait for warmup
570 // This forces a minimum cycle time. It:
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
DecimalTest.cpp 59 Decimal minimum; member in class:DecimalStepRange
62 DecimalStepRange(const Decimal& minimum, const Decimal& maximum, const Decimal& step)
64 , minimum(minimum)
71 const Decimal result = minimum + ((value - minimum) / step).round() * step;
93 protected: Decimal stepDown(const String& minimum, const String& maximum, const String& step, const String& valueString, int numberOfStepTimes)
95 DecimalStepRange stepRange(fromString(minimum), fromString(maximum), fromString(step));
104 protected: Decimal stepUp(const String& minimum, const String& maximum, const String& step, const String& valueString, int numberOfStepTimes)
106 DecimalStepRange stepRange(fromString(minimum), fromString(maximum), fromString(step))
    [all...]
  /device/lge/mako/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_main_menu.c 748 ctrl.value, zoom_queryctrl.minimum, zoom_queryctrl.maximum);
    [all...]
  /external/valgrind/main/none/tests/
cmdline2.stdout.exp 53 --alignment=<number> set minimum alignment of heap allocations [not used by this tool]
54 --redzone-size=<number> set minimum size of redzones added before/after
113 --core-redzone=<number> set minimum size of redzones added before/after
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseMultipleFieldsDateAndTimeInputType.cpp 508 setMillisecondToDateComponents(layoutParameters.stepRange.minimum().toDouble(), &date);
573 || !stepRange.minimum().remainder(static_cast<int>(msPerMinute)).isZero()
  /external/guava/guava-tests/test/com/google/common/cache/
EmptyCachesTest.java 380 private void warmUp(LoadingCache<Object, Object> cache, int minimum, int maximum) {
381 for (int i = minimum; i < maximum; i++) {
  /external/chromium_org/components/json_schema/
json_schema_validator.cc 718 double minimum = 0; local
719 if (schema->GetDouble(schema::kMinimum, &minimum)) {
720 if (value < minimum)
722 kNumberMinimum, base::DoubleToString(minimum))));
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLInputElement.h 68 // Returns the minimum value for type=date, number, or range. Don't call this for other types.
69 double minimum() const;
71 // This always returns a value which is >= minimum().
  /external/chromium_org/third_party/WebKit/Source/web/
DateTimeChooserImpl.cpp 128 addProperty("min", valueToDateTimeString(m_parameters.minimum, m_parameters.type), writer);
  /external/libffi/src/arm/
sysv.S 53 @ This selects the minimum architecture level required.

Completed in 644 milliseconds

1 2 3 4 56 7 8 91011>>