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

1 2

  /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 9 from clang.cindex import SourceLocation
176 assert isinstance(location, SourceLocation)
181 assert isinstance(location, SourceLocation)
  /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 31 struct SourceLocation {
32 SourceLocation() : Line(), Column() {}
38 SourceLocation Start;
39 SourceLocation End;
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 45 class SourceLocation {
51 SourceLocation() : Filename(), Line(), Column() {}
52 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
60 SourceLocation acquire() {
64 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.
84 /// In addition, one bit of SourceLocation is used for quick access to the
88 class SourceLocation {
98 SourceLocation() : ID(0) {}
103 /// \brief Return true if this is a valid SourceLocation object.
117 static SourceLocation getFileLoc(unsigned ID) {
119 SourceLocation L;
124 static SourceLocation getMacroLoc(unsigned ID) {
126 SourceLocation L
    [all...]
  /external/cmockery/cmockery_0_1_2/src/google/
cmockery.h 305 typedef struct SourceLocation {
308 } SourceLocation;
312 SourceLocation location;
  /external/v8/src/js/
messages.js 271 * @return {SourceLocation}
296 return new SourceLocation(this, position, line, column, start, end);
312 * @return {SourceLocation}
489 function SourceLocation(script, position, line, column, start, end) {
500 * Get the source text for a SourceLocation
509 utils.SetUpLockedPrototype(SourceLocation,
  /bionic/libc/kernel/tools/
cpp.py 22 from clang.cindex import SourceLocation
165 if not isinstance(other, SourceLocation):
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/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...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/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...]
  /prebuilts/misc/windows/protobuf2.5/include/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...]
  /prebuilts/tools/linux-x86_64/protoc/include/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
271 if not isinstance(other, SourceLocation):
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 100 struct SourceLocation {
104 static SourceLocation CurLoc;
105 static SourceLocation LexLoc = {1, 0};
201 SourceLocation Loc;
204 ExprAST(SourceLocation Loc = CurLoc) : Loc(Loc) {}
231 VariableExprAST(SourceLocation Loc, const std::string &Name)
262 BinaryExprAST(SourceLocation Loc, char Op, std::unique_ptr<ExprAST> LHS,
280 CallExprAST(SourceLocation Loc, const std::string &Callee,
297 IfExprAST(SourceLocation Loc, std::unique_ptr<ExprAST> Cond,
364 PrototypeAST(SourceLocation Loc, const std::string &Name
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.h 108 struct SourceLocation {
279 bool GetSourceLocation(SourceLocation* out_location) const;
553 bool GetSourceLocation(SourceLocation* out_location) const;
653 bool GetSourceLocation(SourceLocation* out_location) const;
736 bool GetSourceLocation(SourceLocation* out_location) const;
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
descriptor.h 136 struct SourceLocation {
152 // include original user comments as recorded in SourceLocation entries. N.B.
359 bool GetSourceLocation(SourceLocation* out_location) const;
650 bool GetSourceLocation(SourceLocation* out_location) const;
767 bool GetSourceLocation(SourceLocation* out_location) const;
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/22.8.0/
manifest-merger-22.8.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/22.9.2/
manifest-merger-22.9.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/23.0.1/
manifest-merger-23.0.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/23.0.2/
manifest-merger-23.0.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/23.1.0/
manifest-merger-23.1.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/23.1.3/
manifest-merger-23.1.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/23.1.4/
manifest-merger-23.1.4.jar 

Completed in 802 milliseconds

1 2