HomeSort by relevance Sort by last modified time
    Searched refs:range (Results 101 - 125 of 3230) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_ipv4/
ipt_SAME.h 16 struct nf_nat_range range[IPT_SAME_MAX_RANGE]; member in struct:ipt_same_info
  /external/lldb/source/Symbol/
UnwindTable.cpp 93 AddressRange range; local
94 if (!sc.GetAddressRange(eSymbolContextFunction | eSymbolContextSymbol, 0, false, range) || !range.GetBaseAddress().IsValid())
97 if (m_eh_frame == NULL || !m_eh_frame->GetAddressRange (addr, range))
103 FuncUnwindersSP func_unwinder_sp(new FuncUnwinders(*this, m_assembly_profiler, range));
104 m_unwinds.insert (insert_pos, std::make_pair(range.GetBaseAddress().GetFileAddress(), func_unwinder_sp));
120 AddressRange range; local
121 if (!sc.GetAddressRange(eSymbolContextFunction | eSymbolContextSymbol, 0, false, range) || !range.GetBaseAddress().IsValid())
124 if (m_eh_frame == NULL || !m_eh_frame->GetAddressRange (addr, range))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dictcomps.py 14 actual = {k: k + 10 for k in range(10)}
18 actual = {k: v for k in range(10) for v in range(10) if k == v}
26 actual = {k: None for k in range(10)}
36 actual = {k: v for v in range(10) for k in range(v * 9, v * 10)}
43 actual = {g: None for g in range(10)}
53 actual = {g: v for v in range(10) for g in range(v * 9, v * 10)}
63 actual = {k: g for k in range(10)
    [all...]
test_pow.py 7 for i in range(-1000, 1000):
13 for i in range(-100, 100):
17 for i in range(0,31):
22 for i in range(-10, 0) + range(1, 10):
24 for j in range(1, 11):
29 for i in range(1, 100):
47 for i in range(il, ih+1):
48 for j in range(jl, jh+1):
49 for k in range(kl, kh+1)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dictcomps.py 14 actual = {k: k + 10 for k in range(10)}
18 actual = {k: v for k in range(10) for v in range(10) if k == v}
26 actual = {k: None for k in range(10)}
36 actual = {k: v for v in range(10) for k in range(v * 9, v * 10)}
43 actual = {g: None for g in range(10)}
53 actual = {g: v for v in range(10) for g in range(v * 9, v * 10)}
63 actual = {k: g for k in range(10)
    [all...]
test_pow.py 7 for i in range(-1000, 1000):
13 for i in range(-100, 100):
17 for i in range(0,31):
22 for i in range(-10, 0) + range(1, 10):
24 for j in range(1, 11):
29 for i in range(1, 100):
47 for i in range(il, ih+1):
48 for j in range(jl, jh+1):
49 for k in range(kl, kh+1)
    [all...]
  /external/libsepol/src/
mls.c 113 unsigned int i, l, len, range; local
121 range = 0;
124 p_sens_val_to_name[context->range.level[l].sens -
127 ebitmap_for_each_bit(&context->range.level[l].cat, cnode, i) {
129 if (range) {
130 range++;
136 range++;
138 if (range > 1)
143 range = 0;
146 /* Handle case where last category is the end of range */
172 unsigned int i, l, range, wrote_sep; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRMismatchedRangeException.h 34 NSRange range; variable
37 @property (assign) NSRange range; variable
  /external/chromium_org/content/renderer/
text_input_client_observer.h 12 #include "ui/gfx/range/range.h"
40 void OnFirstRectForCharacterRange(gfx::Range range);
41 void OnStringForRange(gfx::Range range);
  /external/chromium_org/third_party/WebKit/Source/core/css/
themeChromiumLinux.css 40 input[type=range] {
  /external/chromium_org/tools/ipc_fuzzer/mutate/
rand_util.h 30 inline uint32 RandInRange(uint32 range) {
31 return RandU32() % range;
  /external/libcxx/test/diagnostics/std.exceptions/out.of.range/
Android.mk 17 test_makefile := external/libcxx/test/diagnostics/std.exceptions/out.of.range/Android.mk
19 test_name := diagnostics/std.exceptions/out.of.range/out_of_range
  /external/libcxx/test/diagnostics/std.exceptions/range.error/
Android.mk 17 test_makefile := external/libcxx/test/diagnostics/std.exceptions/range.error/Android.mk
19 test_name := diagnostics/std.exceptions/range.error/range_error
  /external/libcxx/test/language.support/support.initlist/support.initlist.range/
Android.mk 17 test_makefile := external/libcxx/test/language.support/support.initlist/support.initlist.range/Android.mk
19 test_name := language.support/support.initlist/support.initlist.range/begin_end
  /external/llvm/test/MC/ARM/
invalid-hint-arm.s 6 @ CHECK: error: immediate operand must be in the range [0,239]
7 @ CHECK: error: immediate operand must be in the range [0,239]
invalid-hint-thumb.s 6 @ CHECK: error: immediate operand must be in the range [0,239]
7 @ CHECK: error: immediate operand must be in the range [0,239]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeFieldElements.cpp 81 DateTimeDayFieldElement::DateTimeDayFieldElement(Document& document, FieldOwner& fieldOwner, const String& placeholder, const Range& range)
82 : DateTimeNumericFieldElement(document, fieldOwner, range, Range(1, 31), placeholder)
86 PassRefPtrWillBeRawPtr<DateTimeDayFieldElement> DateTimeDayFieldElement::create(Document& document, FieldOwner& fieldOwner, const String& placeholder, const Range& range)
89 RefPtrWillBeRawPtr<DateTimeDayFieldElement> field = adoptRefWillBeNoop(new DateTimeDayFieldElement(document, fieldOwner, placeholder.isEmpty() ? "--" : placeholder, range));
112 if (range().isInRange(static_cast<int>(value))) {
122 DateTimeHourFieldElementBase::DateTimeHourFieldElementBase(Document& document, FieldOwner& fieldOwner, const Range& range, const Range& hardLimits, const Step& step
    [all...]
  /art/test/701-easy-div-rem/
genMain.py 17 [('CheckDiv', 'idiv_by_pow2_', [2**i for i in range(31)]),
18 ('CheckDiv', 'idiv_by_small_', [i for i in range(3, 16) if i not in (4, 8)]),
19 ('CheckRem', 'irem_by_pow2_', [2**i for i in range(31)])]),
21 [('CheckDiv', 'ldiv_by_pow2_', [2**i for i in range(63)]),
22 ('CheckDiv', 'ldiv_by_small_', [i for i in range(3, 16) if i not in (4, 8)]),
23 ('CheckRem', 'lrem_by_pow2_', [2**i for i in range(63)])])
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
cb_search_core.c 24 int16_t range, /* (i) Search range */
50 for (i=0;i<range;i++) {
57 maxW32 = WebRtcSpl_MaxAbsValueW32(cDot, range);
66 for (i=0;i<range;i++) {
95 for (i=0;i<range;i++) {
106 *bestIndex = WebRtcSpl_MaxIndexW32(Crit, range);
  /external/chromium_org/ui/base/ime/
dummy_text_input_client.cc 65 bool DummyTextInputClient::GetTextRange(gfx::Range* range) const {
69 bool DummyTextInputClient::GetCompositionTextRange(gfx::Range* range) const {
73 bool DummyTextInputClient::GetSelectionRange(gfx::Range* range) const {
77 bool DummyTextInputClient::SetSelectionRange(const gfx::Range& range) {
81 bool DummyTextInputClient::DeleteRange(const gfx::Range& range) {
    [all...]
dummy_text_input_client.h 33 virtual bool GetTextRange(gfx::Range* range) const OVERRIDE;
34 virtual bool GetCompositionTextRange(gfx::Range* range) const OVERRIDE;
35 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE;
36 virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE;
37 virtual bool DeleteRange(const gfx::Range& range) OVERRIDE
    [all...]
text_input_client.h 16 #include "ui/gfx/range/range.h"
86 // Returns false if there is no composition text or |index| is out of range.
100 // Retrieves the UTF-16 based character range containing accessibled text in
101 // the View. It must cover the composition and selection range.
103 virtual bool GetTextRange(gfx::Range* range) const = 0;
105 // Retrieves the UTF-16 based character range of current composition text.
107 virtual bool GetCompositionTextRange(gfx::Range* range) const = 0
    [all...]
  /external/guava/guava/src/com/google/common/collect/
RegularContiguousSet.java 37 private final Range<C> range; field in class:RegularContiguousSet
39 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) {
41 this.range = range;
46 return range.intersection(Ranges.upTo(toElement, BoundType.forBoolean(inclusive)))
58 return range.intersection(Ranges.range(fromElement, BoundType.forBoolean(fromInclusive),
64 return range.intersection(Ranges.downTo(fromElement, BoundType.forBoolean(inclusive))
144 @Override public Range<C> range() { method
148 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { method
173 final Range<C> range; field in class:SerializedForm
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
UnicodeRange.cpp 40 // This table depends on unicode range definitions.
41 // Each item's index must correspond to a unicode range value
380 // code points so that the number of entries in the tertiary range
381 // table for that range is obtained by dividing (0x1700 - 0x0700) by 128.
422 // A two level index is almost enough for locating a range, with the
423 // exception of u03xx and u05xx. Since we don't really care about range for
435 unsigned range; local
438 range = gUnicodeSubrangeTable[0][ch >> 12];
440 if (range < cRangeTableBase)
441 // we try to get a specific range
    [all...]
  /external/lldb/include/lldb/Core/
VMRange.h 19 // A vm address range. These can represent offsets ranges or actual
61 // Set the start value for the range, and keep the same size
115 Contains (const VMRange& range) const
117 if (Contains(range.GetBaseAddress()))
119 lldb::addr_t range_end = range.GetEndAddress();
135 bool operator()(const VMRange& range) const
137 return range.Contains(_value);
145 RangeInRangeUnaryPredicate(VMRange range) :
146 _range(range)
149 bool operator()(const VMRange& range) cons
    [all...]

Completed in 320 milliseconds

1 2 3 45 6 7 8 91011>>