Searched refs:nowrap (Results 1 – 6 of 6) sorted by relevance
/libcore/tools/docs/crypto/ |
D | format_supported_algorithm_table.py | 46 def nowrap(value): function 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_alg['supported_api_levels'])) 253 output.append(' <td>%s</td>' % nowrap(algorithm['name'])) [all …]
|
/libcore/ojluni/src/main/java/java/util/zip/ |
D | Inflater.java | 119 public Inflater(boolean nowrap) { in Inflater() argument 120 zsRef = new ZStreamRef(init(nowrap)); in Inflater() 427 private native static long init(boolean nowrap); in init() argument
|
D | Deflater.java | 184 public Deflater(int level, boolean nowrap) { in Deflater() argument 187 this.zsRef = new ZStreamRef(init(level, DEFAULT_STRATEGY, nowrap)); in Deflater() 588 private native static long init(int level, int strategy, boolean nowrap); in init() argument
|
/libcore/ojluni/annotations/hiddenapi/java/util/zip/ |
D | Inflater.java | 34 public Inflater(boolean nowrap) { in Inflater() argument 122 private static native long init(boolean nowrap); in init() argument
|
/libcore/ojluni/src/main/native/ |
D | Inflater.c | 61 Inflater_init(JNIEnv *env, jclass cls, jboolean nowrap) in Inflater_init() argument 70 int ret = inflateInit2(strm, nowrap ? -MAX_WBITS : MAX_WBITS); in Inflater_init()
|
D | Deflater.c | 65 jint strategy, jboolean nowrap) in Deflater_init() argument 75 nowrap ? -MAX_WBITS : MAX_WBITS, in Deflater_init()
|