Lines Matching defs:is

5  * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
86 * Export the specified preferences node and, if subTree is true, all
128 * specified XML element which is assumed to represent a node
129 * in the specified XML document which is assumed to conform to
130 * PREFS_DTD. If subTree is true, create children of the specified
134 * @throws BackingStoreException if it is not possible to read
144 // Node is locked to export its contents and get a
145 // copy of children, then lock is released,
166 /* Get a copy of kids while lock is held */
186 * Import preferences from the specified input stream, which is assumed
195 static void importPreferences(InputStream is)
199 Document doc = loadPrefsDoc(is);
205 " is not supported. This java installation can read" +
273 //Transformer resets the "indent" info if the "result" is a StreamResult with
336 * the specified OutputStream as per the prefs DTD. This is used
359 * Import Map from the specified input stream, which is assumed
360 * to contain a map document as per the prefs DTD. This is used
363 * the specified Map. (If this Map is empty, it will contain exactly
371 static void importMap(InputStream is, Map m)
375 Document doc = loadPrefsDoc(is);
382 " is not supported. This java installation can read" +
401 InputSource is;
402 is = new InputSource(new StringReader(PREFS_DTD));
403 is.setSystemId(PREFS_DTD_URI);
404 return is;