Lines Matching refs:Pointer
54 const char *Name, PointerType Pointer) { in start() argument
73 if (Pointer == PointerType::None) { in start()
91 if (Pointer == PointerType::Reference) in start()
117 void FunctionDumper::start(const PDBSymbolFunc &Symbol, PointerType Pointer) { in start() argument
154 if (Pointer == PointerType::Pointer) in start()
156 else if (Pointer == FunctionDumper::PointerType::Reference) in start()
167 if (Pointer != FunctionDumper::PointerType::None) in start()
176 if (Pointer != FunctionDumper::PointerType::None) { in start()
177 if (Pointer == PointerType::Pointer) in start()
179 else if (Pointer == FunctionDumper::PointerType::Reference) in start()
249 PointerType Pointer = in dump() local
250 Symbol.isReference() ? PointerType::Reference : PointerType::Pointer; in dump()
251 NestedDumper.start(*FuncSig, nullptr, Pointer); in dump()