Searched defs:Invokable (Results 1 – 2 of 2) sorted by relevance
625 struct Invokable { struct626 Invokable() : mParams(nullptr) { } in Invokable() argument627 ~Invokable() { delete [] mParams; } in ~Invokable()630 void operator=(const Invokable &) = delete;632 std::string mName;633 llvm::StringRef *mParams; // Types634 size_t mParamCount;
79 interface Invokable { interface in BasePrintTest