Home | History | Annotate | Download | only in html

Lines Matching refs:code

7  * 1. Redistributions of source code must retain the above copyright
37 enum Code {
45 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); }
47 Code code() const { return m_code; }
50 MediaError(Code code) : m_code(code)
55 Code m_code;