HomeSort by relevance Sort by last modified time
    Searched refs:range (Results 401 - 425 of 2686) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
SegmentedFontData.h 62 void appendRange(const FontDataRange& range) { m_ranges.append(range); }
  /external/clang/test/SemaCXX/
for-range-dereference.cpp 40 for (auto i : pt) { } // expected-error{{invalid range expression of type 'T *'; did you mean to dereference it with '*'?}}
45 for (auto i : parr) { }// expected-error{{invalid range expression of type 'int (*)[10]'; did you mean to dereference it with '*'?}}
48 for (auto i : NB) { }// expected-error{{range type 'NoBegin' has 'end' member but no 'begin' member}}
50 for (auto i : pNB) { }// expected-error{{invalid range expression of type 'NoBegin *'; no viable 'begin' function available}}
52 for (auto i : ppNB) { }// expected-error{{invalid range expression of type 'NoBegin **'; no viable 'begin' function available}}
54 for (auto i : pppppNB) { }// expected-error{{invalid range expression of type 'NoBegin *****'; no viable 'begin' function available}}
57 for (auto i : ANE) { } // expected-error{{invalid range expression of type 'ADLNoEnd'; no viable 'end' function available}}
59 for (auto i : pANE) { } // expected-error{{invalid range expression of type 'ADLNoEnd *'; no viable 'begin' function available}}
63 expected-note {{when looking up 'end' function for range expression of type 'DeletedEnd'}}
66 for (auto i : pDE) { } // expected-error {{invalid range expression of type 'DeletedEnd *'; no viable 'begin' function available}
    [all...]
  /external/clang/tools/clang-format/
clang-format.py 37 # Determine range to format.
39 lines = '%s:%s' % (vim.current.range.start + 1, vim.current.range.end + 1)
  /external/easymock/src/org/easymock/internal/
Results.java 29 private final LinkedList<Range> ranges = new LinkedList<Range>();
33 public void add(Result result, Range range) {
35 Range lastRange = ranges.getLast();
41 ranges.add(range);
48 Range interval = ranges.get(i);
71 private Range getMainInterval() {
74 for (Range interval : ranges) {
83 return new Range(min, max);
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
EmptyContiguousSet.java 51 @Override public Range<C> range() { method in class:EmptyContiguousSet
55 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { method in class:EmptyContiguousSet
  /external/libvorbis/vq/
make_floor_books.pl 60 my($datafile,$range,$guard)=split(' ',$1);
77 my $command="huffbuild $datafile.tmp $range $guard";
  /external/valgrind/main/memcheck/tests/
sh-mem-random.stdout.exp 1 -------- testing non-auxmap range --------
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/detail/
implementation_help.hpp 1 // Boost.Range library
8 // For more information, see http://www.boost.org/libs/range/
14 #include <boost/range/config.hpp>
15 #include <boost/range/detail/common.hpp>
  /packages/apps/Camera2/tests/exiftool_parser/
parser.py 53 for i in range(layer - new_layer):
62 for i in range(layer - new_layer):
  /packages/apps/Launcher2/
print_db.py 147 for i in range(0,len(columns)):
157 for i in range(0,len(row)):
171 for i in range(0, HOTSEAT_SIZE):
186 for i in range(0,SCREENS):
188 for j in range(0,ROWS):
190 for k in range(0,COLUMNS):
204 for j in range(cellY, cellY+spanY):
205 for k in range(cellX, cellX+spanX):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_imp.py 21 for i in range(LOOPS):
25 for i in range(LOOPS):
test_long_future.py 148 for exp in range(base - 15, base + 15):
155 for n in range(-10, 10):
160 for n in range(250):
178 for i in range(1000):
185 for n in range(-10, 10):
189 for n in range(-20, 20):
197 for i in range(1000):
206 for _ in range(10000):
test_threadedtempfile.py 36 for i in range(FILES_PER_THREAD):
52 for i in range(NUM_THREADS):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_imp.py 21 for i in range(LOOPS):
25 for i in range(LOOPS):
test_long_future.py 148 for exp in range(base - 15, base + 15):
155 for n in range(-10, 10):
160 for n in range(250):
178 for i in range(1000):
185 for n in range(-10, 10):
189 for n in range(-20, 20):
197 for i in range(1000):
206 for _ in range(10000):
test_threadedtempfile.py 36 for i in range(FILES_PER_THREAD):
52 for i in range(NUM_THREADS):
  /system/extras/libpagemap/
pm_process.c 106 uint64_t *range; local
116 range = malloc(numpages * sizeof(uint64_t));
117 if (!range)
123 free(range);
126 error = read(proc->pagemap_fd, (char*)range, numpages * sizeof(uint64_t));
128 /* EOF, mapping is not in userspace mapping range (probably vectors) */
130 free(range);
135 free(range);
139 *range_out = range;
  /external/chromium_org/
PRESUBMIT_test.py 143 mock_input_api, mock_file, range(1, len(contents) + 1))
152 mock_input_api, mock_file, range(1, len(contents) + 1))
161 mock_input_api, mock_file, range(1, len(contents) + 1))
170 mock_input_api, mock_file, range(1, len(contents) + 1))
180 mock_input_api, mock_file, range(1, len(contents) + 1))
190 mock_input_api, mock_file, range(1, len(contents) + 1))
239 mock_input_api, mock_file, range(1, len(contents) + 1))
249 mock_input_api, mock_file, range(1, len(contents) + 1))
256 mock_input_api, mock_file, range(1, len(contents) + 1))
263 mock_input_api, mock_file, range(1, len(contents) + 1)
    [all...]
  /external/chromium_org/ui/gfx/
canvas_skia.cc 12 #include "ui/gfx/range/range.h"
87 // Returns a range in |text| to underline or gfx::Range::InvalidRange() if
89 Range StripAcceleratorChars(int flags, base::string16* text) {
95 return Range(char_pos, char_pos + char_span);
97 return Range::InvalidRange();
100 // Elides |text| and adjusts |range| appropriately. If eliding causes |range|
101 // to no longer point to the same character in |text|, |range| is made invalid
261 Range range = StripAcceleratorChars(flags, &strings[i]); local
288 Range range = StripAcceleratorChars(flags, &adjusted_text); local
    [all...]
  /external/llvm/test/MC/ARM/
diagnostics.s 12 @ Out of range shift immediate values.
26 @ CHECK-ERRORS: error: immediate shift value out of range
29 @ CHECK-ERRORS: error: immediate shift value out of range
32 @ CHECK-ERRORS: error: immediate shift value out of range
35 @ CHECK-ERRORS: error: immediate shift value out of range
38 @ CHECK-ERRORS: error: immediate shift value out of range
41 @ CHECK-ERRORS: error: immediate shift value out of range
44 @ CHECK-ERRORS: error: immediate shift value out of range
47 @ CHECK-ERRORS: error: immediate shift value out of range
50 @ Out of range shift immediate values for load/store
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorStyleTextEditor.cpp 49 propertyStart = property.sourceData.range.start;
138 const SourceRange& range = property.sourceData.range; local
139 long replaceRangeStart = range.start;
140 long replaceRangeEnd = range.end;
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkLinearGradient.cpp 138 SkClampRange range; local
139 range.init(fx, dx, count, 0, SkGradientShaderBase::kCache32Count - 1);
141 if ((count = range.fCount0) > 0) {
143 cache[toggle + range.fV0],
144 cache[next_dither_toggle(toggle) + range.fV0],
148 if ((count = range.fCount1) > 0) {
150 fx = range.fFx1;
163 if ((count = range.fCount2) > 0) {
165 cache[toggle + range.fV1],
166 cache[next_dither_toggle(toggle) + range.fV1]
    [all...]
  /external/marisa-trie/lib/marisa/
trie-build.cc 6 #include "range.h"
173 std::queue<Range> queue;
175 queue.push(Range(0, (UInt32)keys.size(), 0));
178 Range range = queue.front(); local
181 while ((range.begin() < range.end()) &&
182 (keys[range.begin()].str().length() == range.pos())) {
183 keys[range.begin()].set_terminal(node)
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie-build.cc 6 #include "range.h"
182 std::queue<Range> queue;
184 queue.push(Range(0, (UInt32)keys.size(), 0));
187 Range range = queue.front(); local
190 while ((range.begin() < range.end()) &&
191 (keys[range.begin()].str().length() == range.pos())) {
192 keys[range.begin()].set_terminal(node)
    [all...]
  /external/skia/src/effects/gradients/
SkLinearGradient.cpp 138 SkClampRange range; local
139 range.init(fx, dx, count, 0, SkGradientShaderBase::kCache32Count - 1);
141 if ((count = range.fCount0) > 0) {
143 cache[toggle + range.fV0],
144 cache[next_dither_toggle(toggle) + range.fV0],
148 if ((count = range.fCount1) > 0) {
150 fx = range.fFx1;
163 if ((count = range.fCount2) > 0) {
165 cache[toggle + range.fV1],
166 cache[next_dither_toggle(toggle) + range.fV1]
    [all...]

Completed in 1721 milliseconds

<<11121314151617181920>>