Searched refs:range (Results 101 - 125 of 1783) sorted by relevance

1234567891011>>

/external/chromium_org/net/url_request/
H A Durl_request_file_job_unittest.cc131 // A simple holder for start/end used in http range requests.
158 // the request and verify that only the bytes in that range (inclusive) were
160 void RunRequest(const std::string& content, const Range* range);
170 const Range* range) {
180 if (range) {
181 ASSERT_GE(range->start, 0);
182 ASSERT_GE(range->end, 0);
183 ASSERT_LE(range->start, range->end);
184 ASSERT_LT(static_cast<unsigned int>(range
169 RunRequest(const std::string& content, const Range* range) argument
251 RunRequest(MakeContentOfSize(size), &range); local
[all...]
/external/openssl/crypto/bn/
H A Dbn_rand.c230 /* random number r: 0 <= r < range */
231 static int bn_rand_range(int pseudo, BIGNUM *r, const BIGNUM *range) argument
237 if (range->neg || BN_is_zero(range))
243 n = BN_num_bits(range); /* n > 0 */
245 /* BN_is_bit_set(range, n - 1) always holds */
249 else if (!BN_is_bit_set(range, n - 2) && !BN_is_bit_set(range, n - 3))
251 /* range = 100..._2,
252 * so 3*range (
298 BN_rand_range(BIGNUM *r, const BIGNUM *range) argument
303 BN_pseudo_rand_range(BIGNUM *r, const BIGNUM *range) argument
314 BN_generate_dsa_nonce(BIGNUM *out, const BIGNUM *range, const BIGNUM* priv, const unsigned char *message, size_t message_len, BN_CTX *ctx) argument
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRFastQueue.h39 NSUInteger range; variable
44 @property (assign) NSUInteger range; variable
57 - (NSUInteger) range;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DIndexRangeCache.h26 void addRange(GLenum type, unsigned int offset, GLsizei count, const RangeUI &range,
51 RangeUI range; member in struct:rx::IndexRangeCache::IndexBounds
55 IndexBounds(const RangeUI &range, unsigned int offset);
/external/chromium_org/tools/sheriffing/
H A Dfailureinfo.js6 * Return the range of intersection between the two lists. Ranges are sets of
34 var range = testData[botName];
35 intersections.push([range, [botName]]);
38 range = testData[botName];
41 var intersect = rangeIntersection(intersections[j][0], range);
50 intersections.push([range, [botName]]);
96 var range = row.insertCell(-1);
97 range.className = 'failure-range';
102 'changelog.html?url=%2Ftrunk%2Fsrc&range
[all...]
/external/libcxx/test/algorithms/alg.sorting/alg.binary.search/equal.range/
H A DAndroid.mk17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.binary.search/equal.range/Android.mk
19 test_name := algorithms/alg.sorting/alg.binary.search/equal.range/equal_range
23 test_name := algorithms/alg.sorting/alg.binary.search/equal.range/equal_range_comp
/external/lldb/source/Symbol/
H A DLineEntry.cpp18 range(),
44 range(section_sp, section_offset, byte_size),
59 range.Clear();
74 return range.GetBaseAddress().IsValid() && line != 0;
113 // Show address range
114 if (!range.Dump(s, target, style, fallback_style))
120 if (!range.GetBaseAddress().Dump(s,
157 range.GetBaseAddress().Dump(s, target, Address::DumpStyleLoadAddress, Address::DumpStyleFileAddress);
161 range.Dump(s, target, Address::DumpStyleLoadAddress, Address::DumpStyleFileAddress);
214 int result = Address::CompareFileAddress (a.range
[all...]
/external/chromium_org/content/renderer/android/
H A Dcontent_detector.cc36 blink::WebRange range = FindContentRange(hit_test, &content_text); local
37 if (range.isNull())
41 return Result(range, content_text, intent_url);
71 WebRange range = surrounding_text.rangeFromContentOffsets( local
73 DCHECK(!range.isNull());
74 return range;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPropertySourceData.cpp58 CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool disabled, bool parsedOk, const SourceRange& range) argument
64 , range(range)
74 , range(other.range)
84 , range(SourceRange(0, 0))
/external/chromium_org/third_party/icu/source/common/
H A Dusetiter.cpp53 if (range < endRange) {
54 loadRange(++range);
69 * else the value is a range of codepoints in the <codepoint, codepointEnd> fields.
85 if (range < endRange) {
86 loadRange(++range);
119 range = 0;
123 loadRange(range);
/external/chromium_org/ui/base/ime/
H A Ddummy_text_input_client.h33 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;
38 virtual bool GetTextFromRange(const gfx::Range& range,
/external/icu/icu4c/source/common/
H A Dusetiter.cpp53 if (range < endRange) {
54 loadRange(++range);
69 * else the value is a range of codepoints in the <codepoint, codepointEnd> fields.
85 if (range < endRange) {
86 loadRange(++range);
119 range = 0;
123 loadRange(range);
/external/llvm/test/MC/ARM/
H A Dinvalid-barrier.s10 @ CHECK: error: immediate value out of range
18 @ CHECK: error: immediate value out of range
27 @ CHECK: error: immediate value out of range
/external/llvm/unittests/ADT/
H A DDAGDeltaAlgorithmTest.cpp49 std::set<unsigned> range(unsigned Start, unsigned End) { function in namespace:__anon26438
56 std::set<unsigned> range(unsigned N) { function in namespace:__anon26438
57 return range(0, N);
72 EXPECT_EQ(fixed_set(4, 1, 3, 5, 7), FDA.Run(range(20), Deps));
91 EXPECT_EQ(fixed_set(4, 0, 1, 2, 3), FDA2.Run(range(5), Deps));
100 EXPECT_EQ(fixed_set(2, 0, 4), FDA3.Run(range(5), Deps));
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Deditable_text_area_shadow.js79 var range = document.createRange(); variable
87 range.setStart(textNode, offset);
99 range.setEnd(textNode, offset);
100 rect = range.getBoundingClientRect();
103 range.setEnd(textNode, offset + SKIP);
104 rect = range.getBoundingClientRect();
114 range.setEnd(textNode, offset);
115 rect = range.getBoundingClientRect();
/external/chromium_org/content/renderer/
H A Dtext_input_client_observer.h12 #include "ui/gfx/range/range.h"
40 void OnFirstRectForCharacterRange(gfx::Range range);
41 void OnStringForRange(gfx::Range range);
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
H A Dgenerate_transposeGLSL.py13 for i in range(x):
14 for j in range(y):
/external/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_transposeGLSL.py13 for i in range(x):
14 for j in range(y):
/external/clang/lib/ARCMigrate/
H A DTransformActions.cpp23 /// with applyRewrites(). E.g. if the same source range
64 /// \brief A range to remove. It is a character range.
68 CharRange(CharSourceRange range, SourceManager &srcMgr, Preprocessor &PP) { argument
69 SourceLocation beginLoc = range.getBegin(), endLoc = range.getEnd();
71 if (range.isTokenRange()) {
136 void remove(SourceRange range);
138 void replace(SourceRange range, StringRef text);
139 void replace(SourceRange range, SourceRang
305 remove(SourceRange range) argument
321 replace(SourceRange range, StringRef text) argument
328 replace(SourceRange range, SourceRange replacementRange) argument
357 increaseIndentation(SourceRange range, SourceLocation parentIndent) argument
368 clearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range) argument
408 canRemoveRange(SourceRange range) argument
412 canReplaceRange(SourceRange range, SourceRange replacementRange) argument
445 commitRemove(SourceRange range) argument
463 commitReplace(SourceRange range, SourceRange replacementRange) argument
491 commitIncreaseIndentation(SourceRange range, SourceLocation parentIndent) argument
500 commitClearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range) argument
519 addRemoval(CharSourceRange range) argument
568 CharSourceRange range = CharSourceRange::getCharRange(I->first.Begin, local
575 CharSourceRange range = CharSourceRange::getCharRange(I->Begin, I->End); local
634 remove(SourceRange range) argument
642 replace(SourceRange range, StringRef text) argument
646 replace(SourceRange range, SourceRange replacementRange) argument
661 increaseIndentation(SourceRange range, SourceLocation parentIndent) argument
667 clearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range) argument
676 report(SourceLocation loc, unsigned diagId, SourceRange range) argument
683 reportError(StringRef message, SourceLocation loc, SourceRange range) argument
688 reportWarning(StringRef message, SourceLocation loc, SourceRange range) argument
693 reportNote(StringRef message, SourceLocation loc, SourceRange range) argument
[all...]
/external/clang/lib/Edit/
H A DCommit.cpp60 CharSourceRange range,
64 if (!canRemoveRange(range, RangeOffs, RangeLen)) {
77 PPRec->areInDifferentConditionalDirectiveRegion(loc, range.getBegin())) {
86 bool Commit::remove(CharSourceRange range) { argument
89 if (!canRemoveRange(range, Offs, Len)) {
94 addRemove(range.getBegin(), Offs, Len);
98 bool Commit::insertWrap(StringRef before, CharSourceRange range, argument
100 bool commitableBefore = insert(range.getBegin(), before, /*afterToken=*/false,
103 if (range.isTokenRange())
104 commitableAfter = insertAfterToken(range
59 insertFromRange(SourceLocation loc, CharSourceRange range, bool afterToken, bool beforePreviousInsertions) argument
111 replace(CharSourceRange range, StringRef text) argument
127 replaceWithInner(CharSourceRange range, CharSourceRange replacementRange) argument
295 canRemoveRange(CharSourceRange range, FileOffset &Offs, unsigned &Len) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DTextRange.js85 * @param {!WebInspector.TextRange} range
88 immediatelyPrecedes: function(range)
90 if (!range)
92 return this.endLine === range.startLine && this.endColumn === range.startColumn;
96 * @param {!WebInspector.TextRange} range
99 immediatelyFollows: function(range)
101 if (!range)
103 return range.immediatelyPrecedes(this);
107 * @param {!WebInspector.TextRange} range
[all...]
/external/chromium_org/third_party/libwebp/utils/
H A Dbit_reader_inl.h111 // 'range' *before* calling VP8LoadNewBytes(), even if this function doesn't
113 range_t range = br->range_; local
119 const range_t split = (range * prob) >> 8;
124 range -= split + 1;
127 range = split;
132 range -= split + 1;
136 range = split;
140 if (range <= (range_t)0x7e) {
141 const int shift = kVP8Log2Range[range];
142 range
[all...]
/external/iptables/extensions/
H A Dlibipt_REDIRECT.c21 " Port (range) to map to.\n"
46 mr->range[0].flags |= NF_NAT_RANGE_PROTO_SPECIFIED;
54 mr->range[0].min.tcp.port
55 = mr->range[0].max.tcp.port
66 mr->range[0].min.tcp.port = htons(port);
67 mr->range[0].max.tcp.port = htons(maxport);
98 mr->range[0].flags |= NF_NAT_RANGE_PROTO_RANDOM;
102 mr->range[0].flags |= NF_NAT_RANGE_PROTO_RANDOM;
111 const struct nf_nat_ipv4_range *r = &mr->range[0];
118 if (mr->range[
[all...]
H A Dlibipt_SAME.c39 /* Parses range of IPs */
40 static void parse_to(const char *orig_arg, struct nf_nat_ipv4_range *range) argument
48 range->flags |= NF_NAT_RANGE_MAP_IPS;
58 range->min_ip = ip->s_addr;
66 range->max_ip = ip->s_addr;
68 if (range->min_ip > range->max_ip)
69 xtables_error(PARAMETER_PROBLEM, "Bad IP range \"%s-%s\"\n",
87 parse_to(cb->arg, &mr->range[mr->rangesize]);
95 mr->range[coun
[all...]
/external/webp/src/utils/
H A Dbit_reader_inl.h110 // 'range' *before* calling VP8LoadNewBytes(), even if this function doesn't
112 range_t range = br->range_; local
118 const range_t split = (range * prob) >> 8;
123 range -= split + 1;
126 range = split;
131 range -= split + 1;
135 range = split;
139 if (range <= (range_t)0x7e) {
140 const int shift = kVP8Log2Range[range];
141 range
[all...]

Completed in 6123 milliseconds

1234567891011>>