Searched refs:range (Results 426 - 450 of 1039) sorted by relevance

<<11121314151617181920>>

/external/skia/platform_tools/android/gyp_gen/
H A Dvars_dict_lib.py111 for __unused__ in range(len(VAR_NAMES)):
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
H A Dip4.py2 """IP4 address range set implementation.
4 Implements an IPv4-range type.
31 """IP4 address range class with efficient storage of address ranges.
36 _UNITYTRANS = "".join([chr(n) for n in range(256)])
58 lower bound and 1.2.3.255 if specified as upper bound, not as a range
61 Specifying a range is done with the <-> operator. This is necessary
72 for i in range(len(args)):
164 for i in range(4):
252 raise ValueError("Address part out of range.")
/external/clang/lib/Frontend/Rewrite/
H A DFixItRewriter.cpp67 void replace(CharSourceRange range, StringRef text) override {
68 Rewrite.ReplaceText(range.getBegin(), Rewrite.getRangeSize(range), text);
/external/deqp/modules/gles2/functional/
H A Des2fImplementationLimitTests.cpp70 std::ostream& operator<< (std::ostream& str, const FloatRange& range) { return str << range.min << ", " << range.max; } argument
/external/eigen/demos/opengl/
H A Dcamera.cpp218 float range = mFarDist - mNearDist; local
223 mProjectionMatrix(2,2) = -(mNearDist + mFarDist) / range;
225 mProjectionMatrix(2,3) = -2 * mNearDist * mFarDist / range;
/external/fonttools/Lib/fontTools/pens/
H A DbasePen.py298 for i in range(2, n+1):
301 for j in range(1, nDivisions):
331 for i in range(n - 1):
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DE_B_L_C_.py78 for curStrikeIndex in range(self.numSizes):
91 for subtableIndex in range(curTable.numberOfIndexSubTables):
432 indexingOffsets = [glyphIndex * offsetDataSize for glyphIndex in range(numGlyphs+2)]
436 glyphIds = list(range(self.firstGlyphIndex, self.lastGlyphIndex+1))
451 assert all(glyphIds[i] < glyphIds[i+1] for i in range(len(glyphIds)-1))
457 allGlyphIds = list(range(self.firstGlyphIndex, self.lastGlyphIndex+1))
524 glyphIds = list(range(self.firstGlyphIndex, self.lastGlyphIndex+1))
525 offsets = [self.imageSize * i + self.imageDataOffset for i in range(len(glyphIds)+1)]
532 assert glyphIds == list(range(self.firstGlyphIndex, self.lastGlyphIndex+1)), "Format 2 ids must be consecutive."
549 indexingOffsets = [glyphIndex * codeOffsetPairSize for glyphIndex in range(numGlyph
[all...]
H A DttProgram.py153 for i in range(bits):
169 for i in range(1 << argBits):
245 for j in range(nValues):
342 assert -32768 <= value < 32768, "PUSH value out of range %d" % value
378 assert -32768 <= value < 32768, "PUSHW value out of range %d" % value
383 assert 0 <= value < 256, "PUSHB value out of range %d" % value
418 for j in range(nValues):
423 for j in range(nValues):
/external/fonttools/Tools/fontTools/pens/
H A DbasePen.py298 for i in range(2, n+1):
301 for j in range(1, nDivisions):
331 for i in range(n - 1):
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DE_B_L_C_.py78 for curStrikeIndex in range(self.numSizes):
91 for subtableIndex in range(curTable.numberOfIndexSubTables):
432 indexingOffsets = [glyphIndex * offsetDataSize for glyphIndex in range(numGlyphs+2)]
436 glyphIds = list(range(self.firstGlyphIndex, self.lastGlyphIndex+1))
451 assert all(glyphIds[i] < glyphIds[i+1] for i in range(len(glyphIds)-1))
457 allGlyphIds = list(range(self.firstGlyphIndex, self.lastGlyphIndex+1))
524 glyphIds = list(range(self.firstGlyphIndex, self.lastGlyphIndex+1))
525 offsets = [self.imageSize * i + self.imageDataOffset for i in range(len(glyphIds)+1)]
532 assert glyphIds == list(range(self.firstGlyphIndex, self.lastGlyphIndex+1)), "Format 2 ids must be consecutive."
549 indexingOffsets = [glyphIndex * codeOffsetPairSize for glyphIndex in range(numGlyph
[all...]
H A DttProgram.py153 for i in range(bits):
169 for i in range(1 << argBits):
245 for j in range(nValues):
342 assert -32768 <= value < 32768, "PUSH value out of range %d" % value
378 assert -32768 <= value < 32768, "PUSHW value out of range %d" % value
383 assert 0 <= value < 256, "PUSHB value out of range %d" % value
418 for j in range(nValues):
423 for j in range(nValues):
/external/harfbuzz_ng/src/
H A Dgen-arabic-table.py39 for u in range (start, end + 1):
95 for u in range(start, end+1):
195 for u in range (min_u, max_u + 1):
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUBiDiProps.java106 /* add the start code point of each same-value range of the trie */
108 Trie2.Range range;
109 while(trieIterator.hasNext() && !(range=trieIterator.next()).leadSurrogate) {
110 set.add(range.startCodePoint);
140 /* switch to the second Joining_Group range */
/external/lldb/include/lldb/Core/
H A DDisassembler.h291 const AddressRange &range,
365 const AddressRange &range,
371 const Address &range,
/external/lldb/scripts/Python/interface/
H A DSBTarget.i774 for idx in range(num_modules):
779 for idx in range(num_modules):
787 for idx in range(num_modules):
794 for idx in range(num_modules):
800 for idx in range(num_modules):
817 for idx in range(self.GetNumModules()):
/external/lldb/source/API/
H A DSBLineEntry.cpp72 sb_address.SetAddress(&m_opaque_ap->range.GetBaseAddress());
94 sb_address.SetAddress(&m_opaque_ap->range.GetBaseAddress());
95 sb_address.OffsetAddress(m_opaque_ap->range.GetByteSize());
/external/llvm/utils/lit/lit/
H A Drun.py52 for i in range(len(tests)):
54 for i in range(num_jobs):
268 for i in range(jobs)]
/external/parameter-framework/test/functional-tests/PfwTestCase/Types/
H A DtSTRING_128.py36 # Test of type UINT8_S - range [-100, 100]
83 for i in range(self.size_max-1):
143 for i in range(self.size_max+1):
171 for i in range(self.size_max-1):
/external/selinux/policycoreutils/gui/
H A DloginsPage.py75 range = seobject.translate(dict[k][1])
76 if not (self.match(k, filter) or self.match(dict[k][0], filter) or self.match(range, filter)):
81 self.store.set_value(iter, 2, range)
/external/v8/tools/profviz/
H A Dprofviz.js89 "range" : setRange,
222 var range = getRange();
230 worker.run(file, kResX, kResY, distortion, range[0], range[1]);
/external/v8/src/
H A Djsregexp.cc109 // Consider the range from last to ranges[i].
110 // We haven't got to the new range yet.
112 // New range is wholly inside last-ranges[i]. Note that new_range.to() is
1145 Interval range = static_cast<DeferredClearCaptures*>(this)->range(); local
1146 return range.Contains(that);
1189 Interval range = static_cast<DeferredClearCaptures*>(action)->range(); local
1190 for (int i = range.from(); i <= range
1502 ClearCaptures(Interval range, RegExpNode* on_success) argument
2135 CharacterRange& range = ranges->at(last_valid_range); local
2197 CharacterRange& range = ranges->at(i); local
2626 CharacterRange range = ranges->at(first_range); local
2642 CharacterRange range = ranges->at(i); local
2773 RangeContainsLatin1Equivalents(CharacterRange range) argument
4580 CharacterRange range = node->ranges(zone)->at(j); local
4757 CharacterRange range = ranges->at(0); local
4786 CharacterRange range = ranges->at(i >> 1); local
5373 unibrow::uchar range[unibrow::Ecma262UnCanonicalize::kMaxWidth]; local
5558 CharacterRange range = ranges->at(i); local
5898 CharacterRange& range = ranges->at(k); local
5987 CharacterRange range = ranges->at(i); local
[all...]
/external/squashfs-tools/squashfs-tools/
H A Daction.c1050 SYNTAX_ERROR("Uid out of range\n");
1074 SYNTAX_ERROR("Gid out of range\n");
1217 /* check mode is within range */
1219 SYNTAX_ERROR("Octal mode %o is out of range\n", mode);
2018 * A number can be of the form [range]number[size]
2019 * [range] is either:
2029 static int parse_number(char *start, long long *size, int *range, char **error) argument
2035 *range = NUM_GREATER;
2038 *range = NUM_LESS;
2041 *range
2099 int range; local
2123 struct test_range_args *range; local
2351 int range; local
2396 int range; local
[all...]
/external/clang/lib/Edit/
H A DEditedSource.cpp22 void EditsReceiver::remove(CharSourceRange range) { argument
23 replace(range, StringRef());
264 /// \brief Check the range that we are going to remove and:
266 /// -Insert a space if removing the range is going to mess up the source tokens.
273 return; // the range is not at the beginning of a token, keep the range.
287 assert(begin < buffer.size() && end < buffer.size() && "Invalid range!");
323 CharSourceRange range = CharSourceRange::getCharRange(Loc,
328 receiver.remove(range);
333 receiver.replace(range, tex
[all...]
/external/deqp/modules/gles2/scripts/
H A Dgen-conversions.py57 for ndx in range(len(comps[0])):
67 for ndx in range(len(comps[0])):
73 for ndx in range(len(comps[0])):
79 for ndx in range(len(comps[0])):
196 self.op = "out0 = %s(%s);" % (self.outType, ", ".join(["in%d" % x for x in range(len(inComps))]))
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DTailoredSet.java55 Trie2.Range range;
56 while (trieIterator.hasNext() && !(range = trieIterator.next()).leadSurrogate) {
57 enumTailoredRange(range.startCodePoint, range.endCodePoint, range.value, this);

Completed in 638 milliseconds

<<11121314151617181920>>