Lines Matching defs:file
43 // Always valid if data file not found!
53 // FixMe: Name space list should be created when file read in.
83 // Always false if data file not found!
102 // Always false if data file not found!
117 // Always true if data file not found!
148 std::fstream file;
149 file.open(fileName.c_str(), std::ios::in);
151 if (!file.is_open()) {
152 // Display warning for file not open
153 g_warning("Could not open the data file for CSS attribute-element map construction: %s", fileName.c_str());
154 file.close();
158 while (!file.eof()) {
162 std::getline(file,s,'"');
163 std::getline(file,s,'"');
166 getline(file,s);
195 file.close();
202 c-file-style:"stroustrup"
203 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))