HomeSort by relevance Sort by last modified time
    Searched refs:Range (Results 376 - 400 of 800) sorted by null

<<11121314151617181920>>

  /external/protobuf/src/google/protobuf/stubs/
strutil.h 531 // These methods concatenate a range of components into a C++ string, using
545 template <typename Range>
546 string Join(const Range& components,
  /packages/apps/TV/src/com/android/tv/dvr/
ScheduledRecording.java 23 import android.util.Range;
181 * Record with given time range.
395 public boolean isOverLapping(Range<Long> period) {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/
dwarf2-1.d 44 Line Range: 1
dwarf2-2.d 44 Line Range: 1
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
dw2-compress-1.d 70 Line Range: 1
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
24k-triple-stores-7.d 3 #name: 24K: Triple Store (Extended Range Check)
loc-swap.d 19 Line Range: 14
micromips@24k-triple-stores-4.d 3 #name: 24K: Triple Store (Range Check >= 32)
micromips@24k-triple-stores-8.d 3 #name: 24K: Triple Store (Range Check >= 24)
mips16@loc-swap.d 19 Line Range: 14
  /cts/tests/camera/src/android/hardware/camera2/cts/helpers/
CameraMetadataGetter.java 47 import android.util.Range;
352 private static Object serializeRange(Range range)
355 rangeObj.put(range.getLower());
356 rangeObj.put(range.getUpper());
491 ((ParameterizedType) keyType).getRawType() == Range.class) {
492 return new MetadataEntry(keyName, serializeRange((Range) keyValue));
573 ((ParameterizedType) elmtType).getRawType() == Range.class) {
576 jsonArray.put(serializeRange((Range) Array.get(keyValue, i)));
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 219 void DwarfCompileUnit::addRange(RangeSpan Range) {
222 // If we have no current ranges just add the range and return, otherwise,
225 // same then extend our current range, otherwise add this as a new range.
228 &Range.getEnd()->getSection())) {
229 CURanges.push_back(Range);
233 CURanges.back().setEnd(Range.getEnd());
380 SmallVector<RangeSpan, 2> Range) {
388 RangeSpanList List(Asm->createTempSymbol("debug_ranges"), std::move(Range));
399 // Add the range list to the set of ranges to be emitted
    [all...]
  /external/opencv3/modules/imgproc/test/
test_cvtyuv.cpp 678 Mat src = src_full(Range(roi_offset_top, roi_offset_top + srcSize.height), Range(roi_offset_left, roi_offset_left + srcSize.width));
679 Mat dst = dst_full(Range(roi_offset_left, roi_offset_left + dstSize.height), Range(roi_offset_top, roi_offset_top + dstSize.width));
680 Mat gold = gold_full(Range(roi_offset_left, roi_offset_left + dstSize.height), Range(roi_offset_top, roi_offset_top + dstSize.width));
  /frameworks/av/media/libstagefright/foundation/
ColorUtils.cpp 37 ALookup<CU::ColorRange, CA::Range> sRanges{
144 static bool isValid(ColorAspects::Range r) {
148 static bool isDefined(ColorAspects::Range r) {
153 int32_t ColorUtils::wrapColorAspectsIntoColorRange(ColorAspects::Range range) {
155 if (sRanges.map(range, &res)) {
157 } else if (!isValid(range)) {
160 CHECK(!isDefined(range));
162 return kColorRangeVendorStart + range;
168 int32_t range, ColorAspects::Range *aspect)
475 ColorRange range = kColorRangeLimited; local
535 int32_t range, standard, transfer; local
561 int32_t range = 0, standard = 0, transfer = 0; local
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp 58 SourceRange Range;
59 Range.setBegin(DigraphToken.getLocation());
60 Range.setEnd(ColonToken.getLocation());
63 << FixItHint::CreateReplacement(Range, "< ::");
292 // Include code completion token into the range of the scope otherwise
791 Intro.Range.setBegin(T.getOpenLocation());
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 674 /// Check the specified case value is in range for the given unpromoted switch
851 // Check the unconverted value is within the range of possible values of
861 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
    [all...]
SemaExceptionSpec.cpp 71 bool Sema::CheckSpecifiedExceptionType(QualType &T, SourceRange Range) {
101 Diag(Range.getBegin(), diag::err_rref_in_exception_spec)
102 << T << Range;
115 RequireCompleteType(Range.getBegin(), PointeeT,
116 diag::err_incomplete_in_exception_spec, Kind, Range))
    [all...]
  /external/v8/tools/profviz/
composer.js 80 function Range(start, end) {
90 Range.prototype.duration = function() { return this.end - this.start; }
175 new Range(tick - kTickHalfDuration, tick + kTickHalfDuration));
186 if (merge_start > range_end) break; // Out of plot range.
193 if (next_range.end > merge_end) { // Extend range end.
197 if (merge_end < range_start) continue; // Out of plot range.
198 if (merge_end < merge_start) continue; // Not an actual range.
199 result.push(new Range(merge_start, merge_end));
208 result.push(new Range(Math.max(ranges[i].start, start),
240 var new_range = new Range(last_time_stamp[thread_id], start)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_text.c 575 /* it can be an empty bracket [] which means its range
1091 decl.Range.First = brackets[0].first;
1092 decl.Range.Last = brackets[0].last;
1094 decl.Range.First = brackets[1].first;
1095 decl.Range.Last = brackets[1].last;
1268 (decl.Range.Last + 1));
1270 for (i = 0; i <= decl.Range.Last; ++i) {
1278 if (i != decl.Range.Last) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackLayoutAlgorithm.java 49 * Used to describe a visible range that can be normalized to [0, 1].
51 class Range {
58 public Range(float relMin, float relMax) {
64 * Offsets this range to a given absolute position.
73 * Returns x normalized to the range 0 to 1 such that 0 = min, 0.5 = origin and 1 = max
86 * Given a normalized {@param x} value in this range, projected onto the full range to get an
98 * Returns whether a value at an absolute x would be within range.
248 private Range mUnfocusedRange;
249 private Range mFocusedRange
    [all...]
  /external/clang/lib/Lex/
Lexer.cpp 130 /// range will outlive it, so it doesn't take ownership of it.
143 /// range will outlive it, so it doesn't take ownership of it.
328 assert((int)Tok.getLength() >= 0 && "Token character range is bogus!");
361 assert((int)Tok.getLength() >= 0 && "Token character range is bogus!");
829 static CharSourceRange makeRangeFromFileLocs(CharSourceRange Range,
832 SourceLocation Begin = Range.getBegin();
833 SourceLocation End = Range.getEnd();
835 if (Range.isTokenRange()) {
856 CharSourceRange Lexer::makeFileCharRange(CharSourceRange Range,
859 SourceLocation Begin = Range.getBegin()
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_setup_tgsi_llvm.c 214 for (idx = decl->Range.First; idx <= decl->Range.Last; idx++) {
232 for (idx = decl->Range.First; idx <= decl->Range.Last; idx++) {
241 for (idx = decl->Range.First; idx <= decl->Range.Last; idx++) {
250 for (idx = decl->Range.First; idx <= decl->Range.Last; idx++) {
260 decl->Range.Last + 1);
    [all...]
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 375 void SDiagsWriter::AddCharSourceRangeToRecord(CharSourceRange Range,
378 AddLocToRecord(Range.getBegin(), Record, &SM);
380 if (Range.isTokenRange())
381 TokSize = Lexer::MeasureTokenLength(Range.getEnd(),
384 AddLocToRecord(Range.getEnd(), Record, &SM, TokSize);
    [all...]
  /external/opencv3/modules/imgproc/src/
approx.cpp 477 bool is_closed0, double eps, AutoBuffer<Range>* _stack )
501 Range slice(0, 0), right_slice(0, 0);
507 Range* stack = *_stack;
688 AutoBuffer<Range> _stack(npoints);
709 cv::AutoBuffer<cv::Range> stack(100);
  /external/llvm/lib/IR/
Verifier.cpp 318 void visitRangeMetadata(Instruction& I, MDNode* Range, Type* Ty);
    [all...]

Completed in 2603 milliseconds

<<11121314151617181920>>