HomeSort by relevance Sort by last modified time
    Searched refs:maxvalue (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/ipc/
param_traits_macros.h 34 // range-checked by the IPC system to be in the range of 0..maxvalue inclusive.
36 #define IPC_ENUM_TRAITS_MAX_VALUE(type, maxvalue) \
37 IPC_ENUM_TRAITS_MIN_MAX_VALUE(type, 0, maxvalue)
40 // range-checked by the IPC system to be in the range of minvalue..maxvalue
42 #define IPC_ENUM_TRAITS_MIN_MAX_VALUE(type, minvalue, maxvalue) \
43 IPC_ENUM_TRAITS_VALIDATE(type, (value >= (minvalue) && value <= (maxvalue)))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
185 self.maxvalue = maxvalue
232 if self.maxvalue is not None and result > self.maxvalue:
236 "Please try again." % self.maxvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
185 self.maxvalue = maxvalue
232 if self.maxvalue is not None and result > self.maxvalue:
236 "Please try again." % self.maxvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 74 def __init__(self, kind, value, maxvalue):
75 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
97 return (Popen.duplicate_for_child(sl.handle), sl.kind, sl.maxvalue)
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
138 (value, self._semlock.maxvalue)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 74 def __init__(self, kind, value, maxvalue):
75 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
97 return (Popen.duplicate_for_child(sl.handle), sl.kind, sl.maxvalue)
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
138 (value, self._semlock.maxvalue)
  /external/qemu-pc-bios/bochs/
bochs.h 139 #define BXRS_PARAM_SPECIAL(parent, name, maxvalue, save_handler, restore_handler) \
141 bx_param_num_c *param = new bx_param_num_c(parent, #name, "", "", 0, maxvalue, 0); \
  /cts/tests/tests/media/src/android/media/cts/
DecoderTest.java 1661 short maxvalue = 0; local
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
db_impl.cc 86 static void ClipToRange(T* ptr, V minvalue, V maxvalue) {
87 if (static_cast<V>(*ptr) > maxvalue) *ptr = maxvalue;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py     [all...]

Completed in 149 milliseconds