Home | History | Annotate | Download | only in libabi

Lines Matching refs:abi

2  * @file abi.cpp
12 #include "abi.h"
28 abi::abi()
38 int abi::need(string const key) const throw (abi_exception)
43 throw abi_exception(string("missing ABI key: ") + key);
47 bool abi::operator==(abi const & other) const
53 ostream & operator<<(ostream & o, abi const & abi)
55 abi_iter i = abi.slots.begin();
56 abi_iter e = abi.slots.end();
65 istream & operator>>(istream & i, abi & abi)
69 abi.slots.clear();
72 abi.slots[key] = val;