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

<<21222324252627282930>>

  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
MultiSelectManager.java 79 private Range mRanger;
322 * held down, this performs a range select; otherwise, it simply toggles the item's selection
379 * Starts a range selection. If a range selection is already active, this will start a new range
380 * selection (which will reset the range anchor).
382 * @param pos The anchor position for the selection range.
390 * Sets the end point for the current range selection, started by a call to
391 * {@link #startRangeSelection(int)}. This function should only be called when a range selection
392 * is active (see {@link #isRangeSelectionActive()}. Items in the range [anchor, end] will b
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
patchapi.h 126 } Range[1];
  /system/media/camera/docs/
html.mako 205 <th class="th_range">Range</th>
228 <th class="th_range">Range</th>
340 % if prop.range is not None:
341 ${prop.range | md_html, linkify_tags(metadata), wbr}
  /external/clang/include/clang/Basic/
SourceManager.h 351 /// Start and End specify the expansion range (where the macro is
368 /// expanded). This doesn't need to be a range because a macro is always
386 // expansion range to mark that this is a macro argument ion rather than
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 292 Error->addError(Arg.Range, Error->ET_RegistryWrongArgType)
407 Error->addError(Args[index].Range, Error->ET_RegistryWrongArgType) \
586 Error->addError(Arg.Range, Error->ET_RegistryWrongArgType)
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 347 for (const std::pair<unsigned, unsigned> &Range : D.getRanges()) {
349 B << SourceRange(Loc.getLocWithOffset(Range.first - Column),
350 Loc.getLocWithOffset(Range.second - Column));
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
FreshValueGenerator.java 57 import com.google.common.collect.Range;
492 @Generates private static <C extends Comparable> Range<C> freshRange(C freshElement) {
493 return Range.singleton(freshElement);
  /external/guava/guava-testlib/test/com/google/common/testing/
ArbitraryInstancesTest.java 49 import com.google.common.collect.Range;
206 assertEquals(Range.all(), ArbitraryInstances.get(Range.class));
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_build.c 336 full_declaration.Range = tgsi_default_declaration_range();
378 full_decl->Range.First,
379 full_decl->Range.Last,
    [all...]
  /external/clang/include/clang/AST/
DeclCXX.h 158 /// \brief The source code range that covers the full base
161 SourceRange Range;
189 /// range does not include the \c virtual or the access specifier.
197 : Range(R), EllipsisLoc(EllipsisLoc), Virtual(V), BaseOfClass(BC),
200 /// \brief Retrieves the source range that contains the entire base specifier.
201 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
202 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); }
203 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nvfx_fragprog.c 914 unsigned idx = fdec->Range.First;
    [all...]
  /external/v8/test/cctest/
test-types.cc 420 void Range() {
427 TypeHandle type = T.Range(min, max);
432 // Range attributes
438 TypeHandle type = T.Range(min, max);
445 // Range(min1, max1) = Range(min2, max2) <=> min1 = min2 /\ max1 = max2
460 TypeHandle type1 = T.Range(min1, max1);
461 TypeHandle type2 = T.Range(min2, max2);
681 // If b is regular numeric bitset, then Range(b->Min(), b->Max())->Is(b).
688 TypeHandle range = T.Range
1917 typename Type::RangeType* range = type1->GetRange(); local
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp 365 void ReportBadFree(CheckerContext &C, SVal ArgVal, SourceRange Range,
368 SourceRange Range) const;
369 void ReportMismatchedDealloc(CheckerContext &C, SourceRange Range,
372 void ReportOffsetFree(CheckerContext &C, SVal ArgVal, SourceRange Range,
375 void ReportUseAfterFree(CheckerContext &C, SourceRange Range,
377 void ReportDoubleFree(CheckerContext &C, SourceRange Range, bool Released,
382 void ReportUseZeroAllocated(CheckerContext &C, SourceRange Range,
475 // Do not add the statement itself as a range in case of leak.
    [all...]
BasicObjCFoundationChecks.cpp 124 SourceRange Range,
204 SourceRange Range,
211 R->addRange(Range);
240 getKeywordSelector(Ctx, "compare", "options", "range", nullptr),
241 getKeywordSelector(Ctx, "compare", "options", "range", "locale",
    [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0-beta-4584/
kotlin-runtime-1.0.0-beta-4584.jar 
  /prebuilts/tools/common/offline-m2/org/jetbrains/kotlin/kotlin-runtime/1.0.0-beta-4584/
kotlin-runtime-1.0.0-beta-4584.jar 
  /external/clang/lib/Serialization/
ASTReader.cpp 5816 SourceRange range; local
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 796 Field(SExpr *R, SExpr *B) : SExpr(COP_Field), Range(R), Body(B) {}
798 : SExpr(C), Range(R), Body(B) {}
800 SExpr *range() { return Range; } function in class:clang::threadSafety::Field
801 const SExpr *range() const { return Range; } function in class:clang::threadSafety::Field
808 auto Nr = Vs.traverse(Range, Vs.typeCtx(Ctx));
815 typename C::CType Ct = Cmp.compare(range(), E->range());
822 SExpr* Range;
    [all...]
  /external/libmtp/src/
ptp-pack.c 749 ret = ptp_unpack_DPV (params, data, &offset, dpdlen, &dpd->FORM.Range.MinimumValue, dpd->DataType);
751 ret = ptp_unpack_DPV (params, data, &offset, dpdlen, &dpd->FORM.Range.MaximumValue, dpd->DataType);
753 ret = ptp_unpack_DPV (params, data, &offset, dpdlen, &dpd->FORM.Range.StepSize, dpd->DataType);
818 ret = ptp_unpack_DPV (params, data, &offset, opdlen, &opd->FORM.Range.MinimumValue, opd->DataType);
820 ret = ptp_unpack_DPV (params, data, &offset, opdlen, &opd->FORM.Range.MaximumValue, opd->DataType);
822 ret = ptp_unpack_DPV (params, data, &offset, opdlen, &opd->FORM.Range.StepSize, opd->DataType);
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
core_c.h 644 , cvSetND , cvSetRealND ) raise an error in case if the element index is out of range.
    [all...]
  /external/opencv3/modules/imgproc/src/
demosaicing.cpp 514 virtual void operator ()(const Range& range) const
530 if (range.start % 2)
537 bayer0 += range.start * bayer_step;
538 dst0 += range.start * dst_step;
540 for(int i = range.start ; i < range.end; ++i, bayer0 += bayer_step, dst0 += dst_step )
630 Range range(0, size.height);
633 parallel_for_(range, invoker, dstmat.total()/static_cast<double>(1<<16))
    [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 550 // Range of arguments up until and including the last key.
592 // Range of arguments up until and including the last key.
    [all...]

Completed in 366 milliseconds

<<21222324252627282930>>