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

  /external/llvm/include/llvm/Object/
COFF.h 281 class COFFSymbolRef {
283 COFFSymbolRef(const coff_symbol16 *CS) : CS16(CS), CS32(nullptr) {}
284 COFFSymbolRef(const coff_symbol32 *CS) : CS16(nullptr), CS32(CS) {}
285 COFFSymbolRef() : CS16(nullptr), CS32(nullptr) {}
297 friend bool operator<(COFFSymbolRef A, COFFSymbolRef B) {
306 llvm_unreachable("COFFSymbolRef points to nothing!");
314 assert(isSet() && "COFFSymbolRef points to nothing!");
321 assert(isSet() && "COFFSymbolRef points to nothing!");
332 assert(isSet() && "COFFSymbolRef points to nothing!")
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
COFF.h 281 class COFFSymbolRef {
283 COFFSymbolRef() = default;
284 COFFSymbolRef(const coff_symbol16 *CS) : CS16(CS) {}
285 COFFSymbolRef(const coff_symbol32 *CS) : CS32(CS) {}
297 friend bool operator<(COFFSymbolRef A, COFFSymbolRef B) {
306 llvm_unreachable("COFFSymbolRef points to nothing!");
314 assert(isSet() && "COFFSymbolRef points to nothing!");
321 assert(isSet() && "COFFSymbolRef points to nothing!");
332 assert(isSet() && "COFFSymbolRef points to nothing!")
    [all...]

Completed in 64 milliseconds