Searched defs:nowrap (Results 1 - 5 of 5) sorted by relevance

/libcore/tools/docs/crypto/
H A Dformat_supported_algorithm_table.py46 def nowrap(value): function
47 return '<span style="white-space: nowrap">%s</span>' % value
169 output.append(' <td rowspan="%d">%s</td>' % (rowspan, nowrap(cur_algorithm)))
171 output.append(' <td>%s</td>' % nowrap(cur_algorithm))
182 modestring = '<br>'.join([nowrap(x) for x in cur_mode])
187 output.append(' <td>%s</td>' % '<br>'.join([nowrap(x) for x in row[2]]))
188 output.append(' <td>%s</td>' % nowrap(row[3]))
220 output.append(' <td>%s</td>' % nowrap(algorithm['name']))
221 output.append(' <td>%s</td>' % nowrap(algorithm['supported_api_levels']))
226 output.append(' <td>%s</td>' % nowrap(enabled_al
[all...]
/libcore/ojluni/src/main/java/java/util/zip/
H A DInflater.java101 * Creates a new decompressor. If the parameter 'nowrap' is true then
105 * Note: When using the 'nowrap' option it is also necessary to provide
109 * @param nowrap if true then support GZIP compatible compression
111 public Inflater(boolean nowrap) { argument
112 zsRef = new ZStreamRef(init(nowrap));
419 private native static long init(boolean nowrap); argument
H A DDeflater.java170 * If 'nowrap' is true then the ZLIB header and checksum fields will
174 * @param nowrap if true then use GZIP compatible compression
176 public Deflater(int level, boolean nowrap) { argument
179 this.zsRef = new ZStreamRef(init(level, DEFAULT_STRATEGY, nowrap));
580 private native static long init(int level, int strategy, boolean nowrap); argument
/libcore/ojluni/src/main/native/
H A Djava_util_zip_Inflater.c61 Inflater_init(JNIEnv *env, jclass cls, jboolean nowrap) argument
70 int ret = inflateInit2(strm, nowrap ? -MAX_WBITS : MAX_WBITS);
H A Djava_util_zip_Deflater.c65 jint strategy, jboolean nowrap)
75 nowrap ? -MAX_WBITS : MAX_WBITS,
64 Deflater_init(JNIEnv *env, jclass cls, jint level, jint strategy, jboolean nowrap) argument

Completed in 6238 milliseconds