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

  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
SourceLocation.h 13 struct SourceLocation
15 SourceLocation() : file(0), line(0) { }
16 SourceLocation(int f, int l) : file(f), line(l) { }
18 bool equals(const SourceLocation& other) const
27 inline bool operator==(const SourceLocation& lhs, const SourceLocation& rhs)
32 inline bool operator!=(const SourceLocation& lhs, const SourceLocation& rhs)
  /external/clang/bindings/python/tests/cindex/
test_location.py 3 from clang.cindex import SourceLocation
50 location = SourceLocation.from_position(tu, file, 1, 5)
58 location2 = SourceLocation.from_position(tu, file, 1, 5)
60 location3 = SourceLocation.from_position(tu, file, 1, 4)
63 offset_location = SourceLocation.from_offset(tu, file, 5)
86 location1 = SourceLocation.from_position(tu, file, 1, 1)
87 location2 = SourceLocation.from_position(tu, file, 1, 8)
93 location3 = SourceLocation.from_position(tu, file, 1, 6)
test_tokens.py 3 from clang.cindex import SourceLocation
35 ok_(isinstance(loc, SourceLocation))
test_translation_unit.py 8 from clang.cindex import SourceLocation
183 assert isinstance(location, SourceLocation)
188 assert isinstance(location, SourceLocation)
  /external/chromium_org/ppapi/
generate_ppapi_size_checks.py 33 class SourceLocation(object):
53 - source_location: A SourceLocation describing where the type is defined.
83 self.source_location = SourceLocation(source_file,
  /external/clang/utils/
ClangDataFormat.py 12 (clang::SourceLocation) $0 = {
19 (clang::SourceLocation) $4 = "/usr/include/i386/_types.h:37:1" (offset: 123582, file, local)
25 debugger.HandleCommand("type summary add -F ClangDataFormat.SourceLocation_summary clang::SourceLocation")
30 return SourceLocation(srcloc).summary()
38 class SourceLocation(object):
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 32 struct SourceLocation {
33 SourceLocation() : Line(), Column() {}
39 SourceLocation Start;
40 SourceLocation End;
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 52 class SourceLocation {
58 SourceLocation() : Filename(), Line(), Column() {}
59 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
67 SourceLocation acquire() {
71 return SourceLocation(Filename, Line, OldColumn);
  /external/clang/include/clang/Basic/
SourceLocation.h 1 //===--- SourceLocation.h - Compact identifier for Source Files -*- C++ -*-===//
11 /// \brief Defines the clang::SourceLocation class and associated facilities.
83 /// In addition, one bit of SourceLocation is used for quick access to the
87 class SourceLocation {
97 SourceLocation() : ID(0) {}
102 /// \brief Return true if this is a valid SourceLocation object.
116 static SourceLocation getFileLoc(unsigned ID) {
118 SourceLocation L;
123 static SourceLocation getMacroLoc(unsigned ID) {
125 SourceLocation L
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.h 109 struct SourceLocation {
263 bool GetSourceLocation(SourceLocation* out_location) const;
521 bool GetSourceLocation(SourceLocation* out_location) const;
638 bool GetSourceLocation(SourceLocation* out_location) const;
716 bool GetSourceLocation(SourceLocation* out_location) const;
    [all...]
  /external/clang/bindings/python/clang/
cindex.py 40 SourceRange, SourceLocation, and File
63 # o implement additional SourceLocation, SourceRange, and File methods.
160 class SourceLocation(Structure):
162 A SourceLocation represents a particular location within a source file.
189 """Retrieve a SourceLocation from a given character offset.
228 return "<SourceLocation file %r, line %r, column %r>" % (
250 Return a SourceLocation representing the first character within a
258 Return a SourceLocation representing the last character within a
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 

Completed in 813 milliseconds