Lines Matching refs:file
2 * \file
21 * notice, a recipient may use your version of this file under either
25 * in the file COPYING-LGPL-2.1; if not, write to the Free Software
28 * in the file COPYING-MPL-1.1
30 * The contents of this file are subject to the Mozilla Public License
31 * Version 1.1 (the "License"); you may not use this file except in
55 Exception(const char * message, const char *file, const int line) {
57 os << "lib2geom exception: " << message << " (" << file << ":" << line << ")";
75 LogicalError(const char * message, const char *file, const int line)
76 : Exception(message, file, line) {}
82 RangeError(const char * message, const char *file, const int line)
83 : Exception(message, file, line) {}
92 NotImplemented(const char *file, const int line)
93 : LogicalError("Method not implemented", file, line) {}
99 InvariantsViolation(const char *file, const int line)
100 : LogicalError("Invariants violation", file, line) {}
107 NotInvertible(const char *file, const int line)
108 : RangeError("Function does not have a unique inverse", file, line) {}
114 InfiniteSolutions(const char *file, const int line)
115 : RangeError("There are infinite solutions", file, line) {}
121 ContinuityError(const char *file, const int line)
122 : RangeError("Non-contiguous path", file, line) {}
139 c-file-style:"stroustrup"
140 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))