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

  /external/clang/test/CodeGenCXX/
arm-cc.cpp 3 class SMLoc {
6 SMLoc();
7 SMLoc(const SMLoc &RHS);
9 SMLoc foo(void *p);
13 void zed(SMLoc x);
15 SMLoc a;
19 // CHECK: declare void @_Z3fooPv(%class.SMLoc* sret, i8*)
20 // CHECK: declare void @_Z3zed5SMLoc(%class.SMLoc*)
  /external/llvm/include/llvm/Support/
SMLoc.h 1 //===- SMLoc.h - Source location for use with diagnostics -------*- C++ -*-===//
10 // This file declares the SMLoc class. This class encapsulates a location in
23 class SMLoc {
26 SMLoc() : Ptr(0) {}
30 bool operator==(const SMLoc &RHS) const { return RHS.Ptr == Ptr; }
31 bool operator!=(const SMLoc &RHS) const { return RHS.Ptr != Ptr; }
35 static SMLoc getFromPointer(const char *Ptr) {
36 SMLoc L;
49 SMLoc Start, End;
52 SMRange(SMLoc St, SMLoc En) : Start(St), End(En)
    [all...]

Completed in 74 milliseconds