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

1 2 3 4 56 7 8 91011>>

  /frameworks/base/core/java/android/hardware/camera2/utils/
SurfaceUtils.java 23 import android.util.Range;
139 * and that the FPS range is supported
142 * @param fpsRange the target high-speed FPS range to validate
146 Range<Integer> fpsRange, StreamConfigurationMap config) {
156 // Check the FPS range first if provided
157 Range<Integer>[] highSpeedFpsRanges = config.getHighSpeedVideoFpsRanges();
159 throw new IllegalArgumentException("Fps range " + fpsRange.toString() + " in the"
160 + " request is not a supported high speed fps range " +
  /external/llvm/lib/Support/
YAMLParser.cpp 140 StringRef Range;
213 static UTF8Decoded decodeUTF8(StringRef Range) {
214 StringRef::iterator Position= Range.begin();
215 StringRef::iterator End = Range.end();
676 OS << T.Range << "\n";
1001 , i->Tok->Range.begin());
1021 T.Range = StringRef(Current, 1);
1040 T.Range = StringRef(Current, 0);
1088 T.Range = StringRef(Current, EI.second);
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/collect/
PowerSetBenchmark.java 38 Set<Integer> set = ContiguousSet.create(Range.closed(1, elements), integers());
  /external/libvpx/libvpx/test/
altref_test.cc 17 // lookahead range: [kLookAheadMin, kLookAheadMax).
68 ::testing::Range(kLookAheadMin, kLookAheadMax));
tile_independence_test.cc 105 VP9_INSTANTIATE_TEST_CASE(TileIndependenceTest, ::testing::Range(0, 2, 1));
107 VP10_INSTANTIATE_TEST_CASE(TileIndependenceTest, ::testing::Range(0, 2, 1));
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMUnwindOpAsm.cpp 76 uint32_t Range = countTrailingOnes(Mask >> 5); // Exclude r4.
78 Mask &= ~(0xffffffe0u << Range);
84 EmitInt8(ARM::EHABI::UNWIND_OPCODE_POP_REG_RANGE_R4 | Range);
88 EmitInt8(ARM::EHABI::UNWIND_OPCODE_POP_REG_RANGE_R4_R14 | Range);
  /external/opencv3/modules/core/test/ocl/
test_dft.cpp 119 dst = dst(cv::Range(0, dst.rows), cv::Range(0, dst.cols/2 + 1));
120 udst = udst(cv::Range(0, udst.rows), cv::Range(0, udst.cols/2 + 1));
  /external/opencv3/modules/photo/test/
test_denoise_tvl1.cpp 64 img(cv::Range(y,y+r),cv::Range(x,x+r))=(uchar)0;
66 img(cv::Range(y,y+r),cv::Range(x,x+r))=(uchar)255;
  /external/v8/src/crankshaft/
hydrogen-range-analysis.h 30 void AddRange(HValue* value, Range* range);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
altref_test.cc 17 // lookahead range: [kLookAheadMin, kLookAheadMax).
68 ::testing::Range(kLookAheadMin, kLookAheadMax));
  /system/update_engine/common/
multi_range_http_fetcher.cc 72 Range range = ranges_[current_index_]; local
73 LOG(INFO) << "starting transfer of range " << range.ToString();
76 base_fetcher_->SetOffset(range.offset());
77 if (range.HasLength())
78 base_fetcher_->SetLength(range.length());
82 delegate_->SeekToOffset(range.offset());
95 Range range = ranges_[current_index_] local
134 Range range = ranges_[current_index_]; local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CommonTokenStream.cs 127 if (i > Range)
128 Range = i;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonTokenStream.cs 138 if (i > Range)
139 Range = i;
  /external/clang/include/clang/Basic/
SourceLocation.h 192 /// \brief A trivial tuple used to represent a source range.
219 /// \brief Represents a character-granular source range.
222 /// of the range, or it can specify the start of the range and the start of the
223 /// last token of the range (a "token range"). In the token range case, the
225 /// range.
227 SourceRange Range;
231 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.h 83 virtual CXSourceRange getRange(unsigned Range) const = 0;
88 /// \brief Return the FixIt information (source range and inserted text).
144 CXSourceRange getRange(unsigned Range) const override;
149 /// \brief Return the FixIt information (source range and inserted text).
CXStoredDiagnostic.cpp 90 CXSourceRange CXStoredDiagnostic::getRange(unsigned int Range) const {
94 Diag.range_begin()[Range]);
107 // Create a range that covers the entire replacement (or
108 // removal) range, adjusting the end of the range to point to
  /external/clang/unittests/Format/
FormatTestProto.cpp 26 std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
  /external/google-breakpad/src/processor/
map_serializers.h 127 // Convenient type name for Range.
128 typedef typename RangeMap<Address, Entry>::Range Range;
130 // Serializer for RangeMap's key and Range::base_.
132 // Serializer for RangeMap::Range::entry_.
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
StringRange.java 78 // new possible range
134 static final class Range implements Comparable<Range>{
137 public Range(int min, int max) {
143 return compareTo((Range)obj) == 0;
145 public int compareTo(Range that) {
164 private final Range[] ranges;
167 ranges = new Range[array.length];
169 ranges[i] = new Range(array[i], array[i]);
243 throw new ICUException("Range must have 2 valid strings")
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
StringRange.java 74 // new possible range
130 static final class Range implements Comparable<Range>{
133 public Range(int min, int max) {
139 return compareTo((Range)obj) == 0;
141 public int compareTo(Range that) {
160 private final Range[] ranges;
163 ranges = new Range[array.length];
165 ranges[i] = new Range(array[i], array[i]);
239 throw new ICUException("Range must have 2 valid strings")
    [all...]
  /external/libchrome/sandbox/linux/bpf_dsl/
policy_compiler.h 64 // If "width" is 4, the argument must in the range of 0x0..(1u << 32 - 1)
65 // If it is outside this range, the sandbox treats the system call just
75 struct Range;
76 typedef std::vector<Range> Ranges;
113 // range.
117 // given range of system call numbers. This function runs recursively.
  /external/opencv3/modules/core/src/
parallel_pthreads.cpp 78 work_load(const cv::Range& range, const cv::ParallelLoopBody& body, int nstripes)
80 set(range, body, nstripes);
83 void set(const cv::Range& range, const cv::ParallelLoopBody& body, int nstripes)
86 m_range = &range;
92 const cv::Range* m_range;
183 void run(const cv::Range& range, const cv::ParallelLoopBody& body, double nstripes);
339 load.m_body->operator()(cv::Range(start, end))
    [all...]
  /external/opencv3/modules/imgproc/perf/
perf_sepfilters.cpp 76 src = src(Range(5, 5 + size.height), Range(5, 5 + size.width));
129 src = src(Range(5, 5 + size.height), Range(5, 5 + size.width));
184 src = src(Range(5, 5 + size.height), Range(5, 5 + size.width));
237 src = src(Range(5, 5 + size.height), Range(5, 5 + size.width));
  /external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/
calcBackProject_Demo2.cpp 70 mask = mask2( Range( 1, mask2.rows - 1 ), Range( 1, mask2.cols - 1 ) );
compareHist_Demo.cpp 42 hsv_half_down = hsv_base( Range( hsv_base.rows/2, hsv_base.rows - 1 ), Range( 0, hsv_base.cols - 1 ) );

Completed in 4270 milliseconds

1 2 3 4 56 7 8 91011>>