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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /external/chromium-libpac/test/
jstocstring.pl 16 $upper = uc();
17 print FILE "#define $upper \\\n";
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBKeyRange.h 44 WebIDBKeyRange(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen) { assign(lower, upper, lowerOpen, upperOpen); }
47 BLINK_EXPORT WebIDBKey upper() const;
52 BLINK_EXPORT void assign(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen);
  /external/chromium_org/content/common/indexed_db/
indexed_db_key_range.h 19 const IndexedDBKey& upper,
25 const IndexedDBKey& upper() const { return upper_; } function in class:content::IndexedDBKeyRange
indexed_db_key_range.cc 19 const IndexedDBKey& upper,
23 upper_(upper),
  /external/icu/icu4c/source/samples/case/
ucase.c 25 static const UChar upper[] = {0x61, 0x42, 0x49, 0}; /* upper = "aBI" */ local
50 length = u_strToLower(buffer, sizeof(buffer)/sizeof(buffer[0]), upper,
51 sizeof(upper)/sizeof(upper[0]), "tr", &errorCode);
57 u_fprintf(out, "u_strToLower(%S, turkish) -> %S\n", upper, buffer);
63 length = u_strToUpper(buffer, sizeof(buffer)/sizeof(buffer[0]), upper,
64 sizeof(upper)/sizeof(upper[0]), "en", &errorCode);
  /frameworks/base/core/java/android/util/
Range.java 44 * The endpoints are {@code [lower, upper]}; that
46 * to {@code upper}.
50 * @param upper The upper endpoint (inclusive)
52 * @throws NullPointerException if {@code lower} or {@code upper} is {@code null}
54 public Range(final T lower, final T upper) {
56 mUpper = checkNotNull(upper, "upper must not be null");
58 if (lower.compareTo(upper) > 0) {
59 throw new IllegalArgumentException("lower must be less than or equal to upper");
    [all...]
  /external/chromium_org/ui/aura/test/
test_windows.cc 58 bool ObjectIsAbove(T* upper, T* lower) {
59 DCHECK_EQ(upper->parent(), lower->parent());
60 DCHECK_NE(upper, lower);
61 const std::vector<T*>& children = upper->parent()->children();
63 std::find(children.begin(), children.end(), upper) - children.begin();
69 bool WindowIsAbove(Window* upper, Window* lower) {
70 return ObjectIsAbove<Window>(upper, lower);
73 bool LayerIsAbove(Window* upper, Window* lower) {
74 return ObjectIsAbove<ui::Layer>(upper->layer(), lower->layer());
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyRange.h 50 static IDBKeyRange* create(IDBKey* lower, IDBKey* upper, LowerBoundType lowerType, UpperBoundType upperType)
52 return new IDBKeyRange(lower, upper, lowerType, upperType);
62 IDBKey* upper() const { return m_upper.get(); } function in class:WebCore::IDBKeyRange
72 static IDBKeyRange* bound(ExecutionContext*, const ScriptValue& lower, const ScriptValue& upper, bool lowerOpen, bool upperOpen, ExceptionState&);
77 IDBKeyRange(IDBKey* lower, IDBKey* upper, LowerBoundType lowerType, UpperBoundType upperType);
IDBKeyRange.cpp 54 IDBKeyRange::IDBKeyRange(IDBKey* lower, IDBKey* upper, LowerBoundType lowerType, UpperBoundType upperType)
56 , m_upper(upper)
125 IDBKey* upper = scriptValueToIDBKey(toIsolate(context), upperValue); local
127 if (!lower || !lower->isValid() || !upper || !upper->isValid()) {
131 if (upper->isLessThan(lower)) {
132 exceptionState.throwDOMException(DataError, "The lower key is greater than the upper key.");
135 if (upper->isEqual(lower) && (lowerOpen || upperOpen)) {
136 exceptionState.throwDOMException(DataError, "The lower key and upper key are equal and one of the bounds is open.");
140 return IDBKeyRange::create(lower, upper, lowerOpen ? LowerBoundOpen : LowerBoundClosed, upperOpen ? UpperBoundOpen : UpperBoundClosed)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBKeyRange.cpp 42 void WebIDBKeyRange::assign(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen)
44 if (!lower.isValid() && !upper.isValid())
47 m_private = IDBKeyRange::create(lower, upper, lowerOpen ? IDBKeyRange::LowerBoundOpen : IDBKeyRange::LowerBoundClosed, upperOpen ? IDBKeyRange::UpperBoundOpen : IDBKeyRange::UpperBoundClosed);
62 WebIDBKey WebIDBKeyRange::upper() const function in class:blink::WebIDBKeyRange
66 return WebIDBKey(m_private->upper());
  /external/chromium_org/ui/gfx/
color_utils_unittest.cc 74 HSL upper = {0.4, 0.5, 0.6}; local
75 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
78 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
80 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
82 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
84 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
86 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
88 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
94 HSL upper = {1.2, -1, -1}; local
96 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
    [all...]
  /external/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/
Android.mk 17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/Android.mk
19 test_name := algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound
23 test_name := algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound_comp
  /frameworks/base/core/java/com/android/internal/util/
Preconditions.java 163 * @param upper the upper endpoint of the inclusive range
170 public static float checkArgumentInRange(float value, float lower, float upper,
177 "%s is out of range of [%f, %f] (too low)", valueName, lower, upper));
178 } else if (value > upper) {
181 "%s is out of range of [%f, %f] (too high)", valueName, lower, upper));
192 * @param upper the upper endpoint of the inclusive range
199 public static int checkArgumentInRange(int value, int lower, int upper,
204 "%s is out of range of [%d, %d] (too low)", valueName, lower, upper));
    [all...]
  /external/bison/lib/
c-strcaseeq.h 34 # define CASEEQ(other,upper) \
35 (c_isupper (upper) ? ((other) & ~0x20) == (upper) : (other) == (upper))
37 # define CASEEQ(other,upper) \
38 (c_isupper (upper) ? (other) == (upper) || (other) == (upper) - 'A' + 'a' : (other) == (upper))
40 # define CASEEQ(other,upper) \
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Ranges.java 81 * lower} and strictly less than {@code upper}.
84 * equal to</i> {@code upper}
86 public static <C extends Comparable<?>> Range<C> open(C lower, C upper) {
87 return create(Cut.aboveValue(lower), Cut.belowValue(upper));
92 * {@code lower} and less than or equal to {@code upper}.
95 * upper}
97 public static <C extends Comparable<?>> Range<C> closed(C lower, C upper) {
98 return create(Cut.belowValue(lower), Cut.aboveValue(upper));
103 * {@code lower} and strictly less than {@code upper}.
106 * upper}
    [all...]
SortedLists.java 70 int upper = list.size() - 1; local
71 // Everything between lower and upper inclusive compares at >= 0.
72 while (lower < upper) {
73 int middle = (lower + upper + 1) >>> 1;
76 upper = middle - 1;
94 int upper = foundIndex; local
96 // Everything between lower and upper inclusive compares at <= 0.
97 while (lower < upper) {
98 int middle = (lower + upper) >>> 1;
103 upper = middle
268 int upper = list.size() - 1; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
ctype_base.h 50 static const mask upper = 1 << 0; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
ctype_base.h 50 static const mask upper = 1 << 0; member in struct:ctype_base
  /external/chromium_org/third_party/webrtc/common_audio/resampler/
sinc_resampler_neon.cc 27 const float* upper = input_ptr + kKernelSize; local
28 for (; input_ptr < upper; ) {

Completed in 1752 milliseconds

1 2 3 4 5 6 7 8 91011>>