HomeSort by relevance Sort by last modified time
    Searched defs:Range (Results 201 - 225 of 843) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
TryWithResourcesJavacFilterTest.java 108 final Range range0 = new Range();
109 final Range range1 = new Range();
110 final Range range2 = new Range();
111 final Range range3 = new Range();
359 final Range range0 = new Range();
    [all...]
  /external/libcxx/utils/google-benchmark/src/
benchmark_register.cc 50 // For non-dense Range, intermediate values are powers of kRangeMultiplier.
281 Benchmark* Benchmark::Range(int start, int limit) {
  /external/libmojo/mojo/public/cpp/bindings/tests/
validation_test_input_parser.cc 37 typedef std::pair<const char*, const char*> Range;
58 bool GetNextItem(Range* range);
60 bool ParseItem(const Range& range);
74 bool StartsWith(const Range& range, const char* prefix, size_t prefix_length);
168 Range range; local
170 while (result && GetNextItem(&range))
    [all...]
  /external/llvm/include/llvm/Support/
SourceMgr.h 199 /// Represents a single fixit, a replacement of one range of text with another.
201 SMRange Range;
208 : Range(Loc, Loc), Text(Insertion.str()) {
214 : Range(R), Text(Replacement.str()) {
219 SMRange getRange() const { return Range; }
222 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
223 return Range.Start.getPointer() < Other.Range.Start.getPointer();
224 if (Range.End.getPointer() != Other.Range.End.getPointer()
    [all...]
  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.cpp 101 assert(Count < InsertPosIndex && "Instruction index out of expected range!");
106 // we don't know the extent of its live-range anymore (now that it
190 // If an alias of the reg is used during the live range, give up.
628 Range = RegRefs.equal_range(AntiDepReg);
629 if (unsigned NewReg = findSuitableFreeRegister(Range.first, Range.second,
641 Q = Range.first, QE = Range.second; Q != QE; ++Q) {
  /external/lzma/C/
Ppmd7.h 110 UInt32 Range;
127 UInt32 Range;
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.h 63 struct tgsi_declaration_range Range;
  /external/python/cpython2/Lib/plat-mac/
aetypes.py 145 class Range:
146 """An AE range object"""
153 return "Range(%r, %r)" % (self.start, self.stop)
162 return isinstance(x, Range)
399 e.g. by index, by range, by name, or by property specifier
  /external/python/cpython3/Lib/test/
test_bisect.py 9 class Range(object):
10 """A trivial range()-like object that has an insert() method."""
132 data = range(n-1)
139 # Same as above, but without C-imposed limits on range() parameters
142 data = Range(0, n-1)
156 for i in range(n):
157 data = [randrange(0, n, 2) for j in range(i)]
173 for lo in range(4):
175 for hi in range(3,8):
214 for i in range(n)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
CriticalAntiDepBreaker.cpp 131 assert(Count < InsertPosIndex && "Instruction index out of expected range!");
136 // we don't know the extent of its live-range anymore (now that it
221 // If an alias of the reg is used during the live range, give up.
610 Range = RegRefs.equal_range(AntiDepReg);
611 if (unsigned NewReg = findSuitableFreeRegister(Range.first, Range.second,
623 Q = Range.first, QE = Range.second; Q != QE; ++Q) {
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LowerSwitch.cpp 191 // Make range comparison
221 uint64_t Range = cast<ConstantInt>(Leaf.High)->getSExtValue() -
223 for (uint64_t j = 0; j < Range; ++j) {
266 // A range counts double, since it requires two compares.
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
SourceMgr.h 194 /// Represents a single fixit, a replacement of one range of text with another.
196 SMRange Range;
203 : Range(Loc, Loc), Text(Insertion.str()) {
209 : Range(R), Text(Replacement.str()) {
214 SMRange getRange() const { return Range; }
217 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
218 return Range.Start.getPointer() < Other.Range.Start.getPointer();
219 if (Range.End.getPointer() != Other.Range.End.getPointer()
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_region_unittest.cc 554 struct Range {
625 struct Range {
  /frameworks/base/tools/aapt2/util/
Util.h 48 struct Range {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 44 ParserValue() : Text(), Range(), Value() {}
46 SourceRange Range;
140 ArgStream addError(SourceRange Range, ErrorType Error);
145 SourceRange Range;
153 SourceRange Range;
175 ArgStream pushContextFrame(ContextType Type, SourceRange Range);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Tooling/Core/
Replacement.h 41 /// \brief A source range independent of the \c SourceManager.
42 class Range {
44 Range() : Offset(0), Length(0) {}
45 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {}
53 /// \name Range Predicates
55 /// \brief Whether this range overlaps with \p RHS or not.
56 bool overlapsWith(Range RHS) const {
60 /// \brief Whether this range contains \p RHS or not.
61 bool contains(Range RHS) const {
66 /// \brief Whether this range equals to \p RHS or not
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
SourceMgr.h 199 /// Represents a single fixit, a replacement of one range of text with another.
201 SMRange Range;
208 : Range(Loc, Loc), Text(Insertion.str()) {
214 : Range(R), Text(Replacement.str()) {
219 SMRange getRange() const { return Range; }
222 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
223 return Range.Start.getPointer() < Other.Range.Start.getPointer();
224 if (Range.End.getPointer() != Other.Range.End.getPointer()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 44 ParserValue() : Text(), Range(), Value() {}
46 SourceRange Range;
140 ArgStream addError(SourceRange Range, ErrorType Error);
145 SourceRange Range;
153 SourceRange Range;
175 ArgStream pushContextFrame(ContextType Type, SourceRange Range);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Tooling/Core/
Replacement.h 41 /// \brief A source range independent of the \c SourceManager.
42 class Range {
44 Range() : Offset(0), Length(0) {}
45 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {}
53 /// \name Range Predicates
55 /// \brief Whether this range overlaps with \p RHS or not.
56 bool overlapsWith(Range RHS) const {
60 /// \brief Whether this range contains \p RHS or not.
61 bool contains(Range RHS) const {
66 /// \brief Whether this range equals to \p RHS or not
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Option/
ArgList.h 144 /// Get the range of indexes in which options with the specified IDs might
210 OptRange Range = getRange({toOptSpecifier(Ids)...});
211 auto B = Args.begin() + Range.first;
212 auto E = Args.begin() + Range.second;
221 OptRange Range = getRange({toOptSpecifier(Ids)...});
222 auto B = Args.rend() - Range.second;
223 auto E = Args.rend() - Range.first;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
SourceMgr.h 199 /// Represents a single fixit, a replacement of one range of text with another.
201 SMRange Range;
208 : Range(Loc, Loc), Text(Insertion.str()) {
214 : Range(R), Text(Replacement.str()) {
219 SMRange getRange() const { return Range; }
222 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
223 return Range.Start.getPointer() < Other.Range.Start.getPointer();
224 if (Range.End.getPointer() != Other.Range.End.getPointer()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 44 ParserValue() : Text(), Range(), Value() {}
46 SourceRange Range;
140 ArgStream addError(SourceRange Range, ErrorType Error);
145 SourceRange Range;
153 SourceRange Range;
175 ArgStream pushContextFrame(ContextType Type, SourceRange Range);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Tooling/Core/
Replacement.h 41 /// \brief A source range independent of the \c SourceManager.
42 class Range {
44 Range() : Offset(0), Length(0) {}
45 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {}
53 /// \name Range Predicates
55 /// \brief Whether this range overlaps with \p RHS or not.
56 bool overlapsWith(Range RHS) const {
60 /// \brief Whether this range contains \p RHS or not.
61 bool contains(Range RHS) const {
66 /// \brief Whether this range equals to \p RHS or not
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Option/
ArgList.h 144 /// Get the range of indexes in which options with the specified IDs might
210 OptRange Range = getRange({toOptSpecifier(Ids)...});
211 auto B = Args.begin() + Range.first;
212 auto E = Args.begin() + Range.second;
221 OptRange Range = getRange({toOptSpecifier(Ids)...});
222 auto B = Args.rend() - Range.second;
223 auto E = Args.rend() - Range.first;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
SourceMgr.h 199 /// Represents a single fixit, a replacement of one range of text with another.
201 SMRange Range;
208 : Range(Loc, Loc), Text(Insertion.str()) {
214 : Range(R), Text(Replacement.str()) {
219 SMRange getRange() const { return Range; }
222 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
223 return Range.Start.getPointer() < Other.Range.Start.getPointer();
224 if (Range.End.getPointer() != Other.Range.End.getPointer()
    [all...]

Completed in 3355 milliseconds

1 2 3 4 5 6 7 891011>>