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

<<21222324252627282930>>

  /external/opencv3/modules/cudafeatures2d/test/
test_features2d.cpp 163 mask(cv::Range(0, image.rows / 2), cv::Range(0, image.cols / 2)).setTo(cv::Scalar::all(0));
  /external/opencv3/modules/flann/include/opencv2/flann/
kmeans_index.h 294 void operator()(const cv::Range& range) const
296 const int begin = range.start;
297 const int end = range.end;
804 parallel_for_(cv::Range(0, (int)indices_length), invoker);
    [all...]
  /external/opencv3/modules/video/src/
bgfg_gaussmix2.cpp 552 void operator()(const Range& range) const
554 int y0 = range.start, y1 = range.end;
    [all...]
  /external/v8/src/compiler/
js-intrinsic-lowering.cc 546 value_type = Type::Range(0.0, value_type->Max(), graph()->zone());
556 Type::Range(value_type->Min(), kMaxSafeInteger, graph()->zone());
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_region_unittest.cc 554 struct Range {
625 struct Range {
  /system/netd/server/
RouteController.cpp 262 // range (inclusive). Otherwise, the rule matches packets from all UIDs.
574 // If this rule does not specify a UID range, then also add a corresponding high-priority rule
778 for (const UidRanges::Range& range : uidRanges.getRanges()) {
782 range.first, range.second)) {
798 for (const UidRanges::Range& range : uidRanges.getRanges()) {
799 if (int ret = modifyVpnUidRangeRule(table, range.first, range.second, secure, add))
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaCast.cpp 307 SourceRange range, Expr *src,
330 = (CT == CT_CStyle)? InitializationKind::CreateCStyleCast(range.getBegin(),
331 range, listInitialization)
332 : (CT == CT_Functional)? InitializationKind::CreateFunctionalCast(range,
334 : InitializationKind::CreateCast(/*type range?*/ range);
372 S.Diag(range.getBegin(), msg)
374 << range << src->getSourceRange();
    [all...]
  /external/opencv3/modules/core/src/
matrix.cpp 437 Mat::Mat(const Mat& m, const Range& _rowRange, const Range& _colRange)
444 AutoBuffer<Range> rs(m.dims);
448 rs[i] = Range::all();
454 if( _rowRange != Range::all() && _rowRange != Range(0,rows) )
462 if( _colRange != Range::all() && _colRange != Range(0,cols) )
522 Mat::Mat(const Mat& m, const Range* ranges)
531 Range r = ranges[i]
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp     [all...]
CodeGenFunction.h 515 SourceRange Range;
524 explicit LexicalScope(CodeGenFunction &CGF, SourceRange Range)
525 : RunCleanupsScope(CGF), Range(Range), ParentScope(CGF.CurLexicalScope) {
528 DI->EmitLexicalBlockStart(CGF.Builder, Range.getBegin());
540 DI->EmitLexicalBlockEnd(CGF.Builder, Range.getEnd());
545 ApplyDebugLocation DL(CGF, Range.getEnd());
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp     [all...]
  /external/opencv3/modules/java/generator/src/cpp/
Mat.cpp 160 // Mat::Mat(Mat m, Range rowRange, Range colRange = Range::all())
172 Range rowRange(rowRange_start, rowRange_end);
173 Range colRange(colRange_start, colRange_end);
195 Range rowRange(rowRange_start, rowRange_end);
    [all...]
  /external/opencv3/modules/imgproc/src/
color.cpp 180 virtual void operator()(const Range& range) const
182 const uchar* yS = src.ptr<uchar>(range.start);
183 uchar* yD = dst.ptr<uchar>(range.start);
185 for( int i = range.start; i < range.end; ++i, yS += src.step, yD += dst.step )
200 parallel_for_(Range(0, src.rows), CvtColorLoop_Invoker<Cvt>(src, dst, cvt), src.total()/(double)(1<<16) );
221 virtual void operator()(const Range& range) const
223 const void *yS = src.ptr<uchar>(range.start)
    [all...]
  /external/opencv3/modules/objdetect/src/
haar.cpp     [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_exec.c 740 for (reg = parse.FullToken.FullDeclaration.Range.First;
741 reg <= parse.FullToken.FullDeclaration.Range.Last;
751 debug_assert(decl->Range.Last < TGSI_EXEC_NUM_IMMEDIATES);
752 for (reg = decl->Range.First; reg <= decl->Range.Last; ++reg) {
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/
validators.py 686 the range of reported min/max values.
689 To check the range of observed edge-to-edge positions:
699 """Check the left/right or top/bottom range based on the direction."""
702 Range = namedtuple('Range', valid_directions)
703 actual_range = Range(*self.packets.get_range())
704 spec_range = Range(self.device.axis_x.min, self.device.axis_x.max,
724 metric_name = self.mnprops.RANGE.format(edge_name)
732 self.log_details('short of range: %d px == %f mm' %
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 221 /// Whether this initializer list originally had a GNU array-range
    [all...]
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 486 Callbacks->MacroExpands(Info.Tok, Info.MD, Info.Range,
610 /// of an initializer list starting a macro argument, the range of those
    [all...]
  /external/google-breakpad/src/common/
dwarf_cu_to_module_unittest.cc 803 // An address range.
804 struct Range
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 621 /// \brief Emit a source range.
622 void AddSourceRange(SourceRange Range, RecordDataImpl &Record);
    [all...]
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 28 SourceRange range) {
29 if (range.isInvalid())
36 if ((IDs.empty() || // empty means clear all diagnostics in the range.
38 !diagLoc.isBeforeInTranslationUnitThan(range.getBegin()) &&
39 (diagLoc == range.getEnd() ||
40 diagLoc.isBeforeInTranslationUnitThan(range.getEnd()))) {
58 SourceRange range) const {
59 if (range.isInvalid())
65 if ((IDs.empty() || // empty means any diagnostic in the range.
67 !diagLoc.isBeforeInTranslationUnitThan(range.getBegin()) &
    [all...]
  /external/guice/extensions/persist/lib/
easymock.jar 
  /external/guice/lib/build/
easymock.jar 

Completed in 1226 milliseconds

<<21222324252627282930>>