Lines Matching refs:name

92     public InputStream createInputStream(final String name) throws IOException  in createInputStream()  argument
100 …XStream) UnoRuntime.queryInterface(XStream.class, input.openStreamElement(name, ElementModes.READ)… in createInputStream()
118 …public OutputStream createOutputStream(final String name, final String mimeType) throws IOException in createOutputStream() argument
126 … final XStream stream = output.openStreamElement(name, ElementModes.WRITE | ElementModes.TRUNCATE); in createOutputStream()
141 public boolean exists(final String name) in exists() argument
145 return output.isStreamElement(name); in exists()
162 public boolean isWritable(final String name) in isWritable() argument
172 public long getVersion(final String name) in getVersion() argument
177 public boolean isReadable(final String name) in isReadable() argument
183 return input.isStreamElement(name); in isReadable()
201 public InputRepository openInputRepository(final String name) throws IOException in openInputRepository() argument
205 final String temp = shortenName(name); in openInputRepository()
236 final String shortenName(final String name) in shortenName() argument
239 if (name.startsWith("./")) in shortenName()
241 temp = name.substring(2); in shortenName()
245 temp = name; in shortenName()
250 …public OutputRepository openOutputRepository(final String name, final String mimeType) throws IOEx… in openOutputRepository() argument
254 final String temp = shortenName(name); in openOutputRepository()
324 public boolean existsStorage(final String name) in existsStorage() argument
328 return output.isStorageElement(name); in existsStorage()