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

<<11121314151617181920>>

  /cts/tests/camera/src/android/hardware/camera2/cts/
BurstCaptureTest.java 30 import android.util.Range;
102 Range<Integer> targetRange = getSuitableFpsRangeForDuration(cameraId, minStillFrameDuration);
104 Log.i(TAG, String.format("Selected frame rate range %d - %d for YUV burst",
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 303 for (const CharSourceRange &Range : DiagStorage->DiagRanges)
304 DB.AddSourceRange(Range);
  /external/google-breakpad/src/processor/
map_serializers-inl.h 125 typename std::map<Address, Range>::const_iterator iter;
157 typename std::map<Address, Range>::const_iterator iter;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
ContractionsAndExpansions.java 59 Iterator<Trie2.Range> trieIterator = data.trie.iterator();
60 Trie2.Range range; local
61 while (trieIterator.hasNext() && !(range = trieIterator.next()).leadSurrogate) {
62 enumCnERange(range.startCodePoint, range.endCodePoint, range.value, this);
72 while (trieIterator.hasNext() && !(range = trieIterator.next()).leadSurrogate) {
73 enumCnERange(range.startCodePoint, range.endCodePoint, range.value, this)
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
ContractionsAndExpansions.java 55 Iterator<Trie2.Range> trieIterator = data.trie.iterator();
56 Trie2.Range range; local
57 while (trieIterator.hasNext() && !(range = trieIterator.next()).leadSurrogate) {
58 enumCnERange(range.startCodePoint, range.endCodePoint, range.value, this);
68 while (trieIterator.hasNext() && !(range = trieIterator.next()).leadSurrogate) {
69 enumCnERange(range.startCodePoint, range.endCodePoint, range.value, this)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h 38 // Data structure to hold a range for range lists.
62 void addRange(RangeSpan Range) { Ranges.push_back(Range); }
DwarfCompileUnit.cpp 231 void DwarfCompileUnit::addRange(RangeSpan Range) {
234 // If we have no current ranges just add the range and return, otherwise,
237 // same then extend our current range, otherwise add this as a new range.
240 &Range.getEnd()->getSection())) {
241 CURanges.push_back(Range);
245 CURanges.back().setEnd(Range.getEnd());
393 SmallVector<RangeSpan, 2> Range) {
401 RangeSpanList List(Asm->createTempSymbol("debug_ranges"), std::move(Range));
412 // Add the range list to the set of ranges to be emitted
    [all...]
  /external/llvm/lib/CodeGen/
SafeStackColoring.cpp 259 LiveRange &Range = LiveRanges[AllocaNo];
260 dbgs() << " " << AllocaNo << ": " << Range << "\n";
  /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.
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
SelectionManager.java 67 private @Nullable Range mRanger;
285 * Starts a range selection. If a range selection is already active, this will start a new range
286 * selection (which will reset the range anchor).
288 * @param pos The anchor position for the selection range.
304 * Starts and extends range selection in one go. This assumes item at startPos is not selected
314 * Sets the end point for the current range selection, started by a call to
315 * {@link #startRangeSelection(int)}. This function should only be called when a range selection
316 * is active (see {@link #isRangeSelectionActive()}. Items in the range [anchor, end] will b
    [all...]
  /prebuilts/go/darwin-x86/src/math/
atan.go 26 // Range reduction is from three intervals into the interval from zero to 0.66.
54 // xatan evaluates a series valid in the range [0, 0.66].
75 // to the range [0, 0.66] and calls xatan.
  /prebuilts/go/linux-x86/src/math/
atan.go 26 // Range reduction is from three intervals into the interval from zero to 0.66.
54 // xatan evaluates a series valid in the range [0, 0.66].
75 // to the range [0, 0.66] and calls xatan.
  /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/utils/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/swiftshader/third_party/LLVM/lib/CodeGen/
AggressiveAntiDepBreaker.cpp 208 assert(Count < InsertPosIndex && "Instruction index out of expected range!");
222 // we don't know the extent of its live-range anymore (now that it
470 // the previous live-range information and start a new live-range
525 Range = State->GetRegRefs().equal_range(Reg);
527 AggressiveAntiDepState::RegisterReference>::iterator Q = Range.first,
528 QE = Range.second; Q != QE; ++Q) {
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
fs.go 84 for _, d := range dirs {
100 // is that it handles Range requests properly, sets the MIME type, and
102 // and If-Range requests.
120 // ServeContent uses it to handle requests using If-Match, If-None-Match, or If-Range.
145 // all of the byte-range-spec values is greater than the content size.
146 var errNoOverlap = errors.New("invalid range: failed to overlap")
189 // handle Content-Range header.
196 w.Header().Set("Content-Range", fmt.Sprintf("bytes */%d", size))
205 // dumb client. Ignore the range request.
212 // range (for example, a response to a request for
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
fs.go 84 for _, d := range dirs {
100 // is that it handles Range requests properly, sets the MIME type, and
102 // and If-Range requests.
120 // ServeContent uses it to handle requests using If-Match, If-None-Match, or If-Range.
145 // all of the byte-range-spec values is greater than the content size.
146 var errNoOverlap = errors.New("invalid range: failed to overlap")
189 // handle Content-Range header.
196 w.Header().Set("Content-Range", fmt.Sprintf("bytes */%d", size))
205 // dumb client. Ignore the range request.
212 // range (for example, a response to a request for
    [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
794 Intro.Range.setBegin(T.getOpenLocation());
    [all...]

Completed in 431 milliseconds

<<11121314151617181920>>