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 {
27 SMLoc() : Ptr(nullptr) {}
31 bool operator==(const SMLoc &RHS) const { return RHS.Ptr == Ptr; }
32 bool operator!=(const SMLoc &RHS) const { return RHS.Ptr != Ptr; }
36 static SMLoc getFromPointer(const char *Ptr) {
37 SMLoc L;
50 SMLoc Start, End;
53 SMRange(SMLoc St, SMLoc En) : Start(St), End(En)
    [all...]

Completed in 197 milliseconds