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

  /external/webkit/Source/WebCore/css/
CSSPropertySourceData.cpp 45 SourceRange::SourceRange()
51 SourceRange::SourceRange(unsigned start, unsigned end)
57 CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range)
80 , range(SourceRange(0, 0))
113 new ((void *) &emptyCSSPropertySourceData) CSSPropertySourceData("", "e", false, false, SourceRange(0, 0));
CSSPropertySourceData.h 44 struct SourceRange {
45 SourceRange();
46 SourceRange(unsigned start, unsigned end);
55 CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range);
66 SourceRange range;
80 SourceRange styleBodyRange;
91 SourceRange selectorListRange;
  /external/clang/include/clang/Basic/
SourceLocation.h 183 /// SourceRange - a trival tuple used to represent a source range.
184 class SourceRange {
188 SourceRange(): B(SourceLocation()), E(SourceLocation()) {}
189 SourceRange(SourceLocation loc) : B(loc), E(loc) {}
190 SourceRange(SourceLocation begin, SourceLocation end) : B(begin), E(end) {}
201 bool operator==(const SourceRange &X) const {
205 bool operator!=(const SourceRange &X) const {
211 /// The underlying SourceRange can either specify the starting/ending character
217 SourceRange Range;
221 CharSourceRange(SourceRange R, bool ITR) : Range(R),IsTokenRange(ITR){
    [all...]
  /external/clang/bindings/python/clang/
cindex.py 40 SourceRange, SourceLocation, and File
63 # o implement additional SourceLocation, SourceRange, and File methods.
142 class SourceRange(Structure):
144 A SourceRange describes a range of source locations within the source
175 return "<SourceRange start %r, end %r>" % (self.start, self.end)
234 range = SourceRange()
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 84 SourceRange range(call->getArg(desiredArgCount)->getLocStart(),
    [all...]

Completed in 620 milliseconds