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

<<11121314151617181920>>

  /external/clang/lib/Format/
WhitespaceManager.cpp 475 void WhitespaceManager::storeReplacement(SourceRange Range,
477 unsigned WhitespaceLength = SourceMgr.getFileOffset(Range.getEnd()) -
478 SourceMgr.getFileOffset(Range.getBegin());
480 if (StringRef(SourceMgr.getCharacterData(Range.getBegin()),
484 SourceMgr, CharSourceRange::getCharRange(Range), Text));
Format.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 66 void HighlightRange(Rewriter& R, FileID BugFileID, SourceRange Range,
599 SourceRange Range,
605 SourceLocation InstantiationStart = SM.getExpansionLoc(Range.getBegin());
608 SourceLocation InstantiationEnd = SM.getExpansionLoc(Range.getEnd());
624 EndColNo += Lexer::MeasureTokenLength(Range.getEnd(), SM, LangOpts)-1;
627 // Highlight the range. Make the span tag the outermost tag for the
628 // selected range.
  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.cpp 101 assert(Count < InsertPosIndex && "Instruction index out of expected range!");
106 // we don't know the extent of its live-range anymore (now that it
191 // If an alias of the reg is used during the live range, give up.
627 Range = RegRefs.equal_range(AntiDepReg);
628 if (unsigned NewReg = findSuitableFreeRegister(Range.first, Range.second,
640 Q = Range.first, QE = Range.second; Q != QE; ++Q) {
  /toolchain/binutils/binutils-2.25/gold/
dwarf_reader.h 294 // A DWARF range list. The start and end offsets are relative
295 // to the input section SHNDX. Each range must lie entirely
301 struct Range
303 Range(unsigned int a_shndx, off_t a_start, off_t a_end)
318 { this->range_list_.push_back(Range(shndx, start, end)); }
324 const Range&
329 std::vector<Range> range_list_;
359 // Read the range table from an object file.
368 // Look for a relocation at offset OFF in the range table,
810 // Read the range table
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h 57 SourceRange Range;
72 Range = getSourceRangeImpl();
96 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); }
97 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
98 SourceRange getSourceRange() const { return Range; }
191 SourceRange AngleBrackets; // range for '<' '>'
541 SourceRange Range;
552 Operand(Operand), Range(R) { }
562 Operand(Operand), Range(R) { }
603 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin();
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp 316 // Reset the source range in DS, as the leading "extern"
573 if (MisplacedAttrs.Range.isValid()) {
574 Diag(MisplacedAttrs.Range.getBegin(), diag::err_attributes_not_allowed)
577 CharSourceRange::getTokenRange(MisplacedAttrs.Range))
578 << FixItHint::CreateRemoval(MisplacedAttrs.Range);
598 SourceRange Range;
600 Range = SourceRange(Name.TemplateId->LAngleLoc,
603 Range = TemplateInfo.getSourceRange();
604 Diag(Range.getBegin(), diag::err_alias_declaration_specialization)
605 << SpecKind << Range;
    [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp 247 static bool checkAttrMutualExclusion(Sema &S, Decl *D, SourceRange Range,
250 S.Diag(Range.getBegin(), diag::err_attributes_are_not_compatible) << Ident
827 // argument; namely, it must be in the range [0, 3].
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringSearch.java 838 * Checks if the offset runs out of the text string range
839 * @param textstart offset of the first character in the range
2004 CollationPCE.Range range = new CollationPCE.Range(); local
2046 CollationPCE.Range range = new CollationPCE.Range(); local
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
StringSearch.java 2020 CollationPCE.Range range = new CollationPCE.Range(); local
2062 CollationPCE.Range range = new CollationPCE.Range(); local
    [all...]
  /external/opencv3/modules/core/misc/java/src/java/
core+Mat.java 82 // C++: Mat::Mat(Mat m, Range rowRange, Range colRange = Range::all())
86 public Mat(Mat m, Range rowRange, Range colRange)
95 public Mat(Mat m, Range rowRange)
236 // C++: Mat Mat::colRange(Range r)
240 public Mat colRange(Range r)
696 // C++: Mat Mat::rowRange(Range r)
700 public Mat rowRange(Range r
    [all...]
  /external/opencv3/modules/stitching/src/
matchers.cpp 71 void operator ()(const Range &r) const
433 UMat gray_image_part=gray_image(Range(yl, yr), Range(xl, xr));
547 parallel_for_(Range(0, static_cast<int>(near_pairs.size())), body);
549 body(Range(0, static_cast<int>(near_pairs.size())));
687 parallel_for_(Range(0, static_cast<int>(near_pairs.size())), body);
689 body(Range(0, static_cast<int>(near_pairs.size())));
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/
TestingCamera2.java 39 import android.util.Range;
523 Range<Integer> defaultRange = new Range<Integer>(MIN_SENSITIVITY,
526 Range<Integer> sensitivityRange = properties.get(
530 Log.e(TAG, "unable to get sensitivity range, use default range");
560 Range<Long> defaultRange = new Range<Long>(MIN_EXPOSURE, MAX_EXPOSURE);
562 Range<Long> exposureRange = properties.get(
569 Log.e(TAG, "exposure time range is invalid, use default range")
    [all...]
  /external/opencv3/modules/core/misc/java/test/
MatTest.java 10 import org.opencv.core.Range;
115 Range range = new Range(0, 5); local
116 dst = gray0.colRange(range);
555 dst = new Mat(gray0, new Range(0, 5));
563 dst = new Mat(gray255_32f, new Range(0, 5), new Range(0, 5));
832 Mat rows = gray255.rowRange(new Range(0, 5));
930 Mat submat = gray255.submat(new Range(2, 4), new Range(2, 4))
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyMetadataMapper.java 38 import android.util.Range;
415 throw new AssertionError("At least one FPS range must be supported.");
417 Range<Integer>[] ranges = new Range[rangesSize];
420 ranges[i++] = Range.create(
468 m.set(CONTROL_AE_COMPENSATION_RANGE, Range.create(min, max));
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
ExtendedCameraCharacteristicsTest.java 37 import android.util.Range;
485 "No WhiteLevel available, cannot check BlackLevelPattern range.");
    [all...]
  /external/chromium-trace/catapult/third_party/WebOb/webob/
descriptors.py 10 Range,
147 for i in range(len(items)-1, -1, -1):
254 return Range.parse(value)
260 return str(Range(*value))
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 134 CXSourceRange CXLoadedDiagnostic::getRange(unsigned Range) const {
135 assert(Range < Ranges.size());
136 return Ranges[Range];
  /external/libchrome/sandbox/linux/bpf_dsl/
policy_compiler.cc 66 // of returning an exit code in the range of -1..-4096. They do not try to
85 struct PolicyCompiler::Range {
203 // expected number range.
225 // and then verifying that the rest of the number range (both positive and
243 ranges->push_back(Range{old_sysnum, old_node});
248 ranges->push_back(Range{old_sysnum, old_node});
257 CHECK(start < stop) << "Invalid iterator range";
260 // If we have narrowed things down to a single range object, we can
265 // Pick the range object that is located at the mid point of our list.
267 // number in this range object. If our number is lower, it is outside o
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugInfoEntry.cpp 102 for (const auto &Range: Ranges) {
106 AddressSize*2, Range.first,
107 AddressSize*2, Range.second);
335 // Single range specified by low/high PC.
  /external/opencv3/modules/core/test/
test_operations.cpp 156 Mat roi2 = mat4x4(Range(1, 3), Range(1, 3));
476 T_bs(Range(0,3),Range(2,3)) = 1.0*Mat(cdir); // wierd OpenCV stuff, need to do multiply
477 T_bs(Range(0,3),Range(1,2)) = 1.0*Mat(ydir);
478 T_bs(Range(0,3),Range(0,1)) = 1.0*Mat(cdir.cross(ydir));
479 T_bs(Range(0,3),Range(3,4)) = 1.0*Mat(fpt)
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 179 class Range {
181 Range(void) : _l(0), _u(0) {}
182 Range(uint32_t lower, uint32_t upper) : _l(lower), _u(upper) {}
193 Range::operator string()
216 static void double2Rational(double f, Range nRange, Range dRange,
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/
ZslOneCameraFactory.java 23 import android.util.Range;
119 * frame rate range in the HAL and get buy-in from the manufacturer to
127 Range<Integer> frameRateBackOff = new Range<>(7, 28);
  /packages/apps/DevCamera/src/com/android/devcamera/
CameraDeviceReport.java 32 import android.util.Range;
218 for (Range<Integer> item : p.get(CameraCharacteristics.CONTROL_AE_AVAILABLE_TARGET_FPS_RANGES)) {
224 Range<Long> rr = p.get(CameraCharacteristics.SENSOR_INFO_EXPOSURE_TIME_RANGE);
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 261 // Find space location range between receiver expression and getter method.
301 SourceRange Range(BegLoc, EndLoc);
302 commit.replace(Range, PropertyDotString);
    [all...]

Completed in 1365 milliseconds

<<11121314151617181920>>