HomeSort by relevance Sort by last modified time
    Searched defs:SourceRange (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPropertySourceData.cpp 45 SourceRange::SourceRange()
51 SourceRange::SourceRange(unsigned start, unsigned end)
57 unsigned SourceRange::length() const
62 CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool disabled, bool parsedOk, const SourceRange& range)
88 , range(SourceRange(0, 0))
125 new ((void *) &emptyCSSPropertySourceData) CSSPropertySourceData("", "e", false, false, false, SourceRange(0, 0));
CSSPropertySourceData.h 43 struct SourceRange {
44 SourceRange();
45 SourceRange(unsigned start, unsigned end);
55 CSSPropertySourceData(const String& name, const String& value, bool important, bool disabled, bool parsedOk, const SourceRange& range);
67 SourceRange range;
85 typedef Vector<SourceRange> SelectorRangeList;
124 SourceRange ruleHeaderRange;
127 SourceRange ruleBodyRange;
  /external/clang/bindings/python/tests/cindex/
test_location.py 4 from clang.cindex import SourceRange
89 range1 = SourceRange.from_locations(location1, location2)
90 range2 = SourceRange.from_locations(location1, location2)
94 range3 = SourceRange.from_locations(location1, location3)
test_tokens.py 4 from clang.cindex import SourceRange
49 ok_(isinstance(extent, SourceRange))
test_translation_unit.py 9 from clang.cindex import SourceRange
199 assert isinstance(r, SourceRange)
206 assert isinstance(r, SourceRange)
218 assert isinstance(r, SourceRange)
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 38 struct SourceRange {
47 SourceRange Range;
107 const SourceRange &MatcherRange);
111 const SourceRange &MatcherRange, unsigned ArgNumber);
140 ArgStream addError(const SourceRange &Range, ErrorType Error);
145 SourceRange Range;
153 SourceRange Range;
175 ArgStream pushContextFrame(ContextType Type, SourceRange Range);
  /external/clang/include/clang/Basic/
SourceLocation.h 192 class SourceRange {
196 SourceRange(): B(SourceLocation()), E(SourceLocation()) {}
197 SourceRange(SourceLocation loc) : B(loc), E(loc) {}
198 SourceRange(SourceLocation begin, SourceLocation end) : B(begin), E(end) {}
209 bool operator==(const SourceRange &X) const {
213 bool operator!=(const SourceRange &X) const {
220 /// The underlying SourceRange can either specify the starting/ending character
226 SourceRange Range;
230 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {}
232 static CharSourceRange getTokenRange(SourceRange R)
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 125 SMRange getSourceRange() const { return SourceRange; }
126 void setSourceRange(SMRange SR) { SourceRange = SR; }
152 SMRange SourceRange;
188 SourceRange = SMRange(Start, End);
  /external/clang/bindings/python/clang/
cindex.py 40 SourceRange, SourceLocation, and File
63 # o implement additional SourceLocation, SourceRange, and File methods.
231 class SourceRange(Structure):
233 A SourceRange describes a range of source locations within the source
270 return "<SourceRange start %r, end %r>" % (self.start, self.end)
329 range = SourceRange()
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 

Completed in 177 milliseconds