Home
last modified time | relevance | path

Searched refs:nowrap (Results 1 – 25 of 59) sorted by relevance

123

/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
DDeflateUncompressor.java34 private boolean nowrap = true; field in DeflateUncompressor
64 return nowrap; in isNowrap()
111 public void setNowrap(boolean nowrap) { in setNowrap() argument
112 if (nowrap != this.nowrap) { in setNowrap()
114 this.nowrap = nowrap; in setNowrap()
146 result = new Inflater(nowrap); in createOrResetInflater()
DDeflateCompressor.java44 private boolean nowrap = true; field in DeflateCompressor
75 return nowrap; in isNowrap()
83 public void setNowrap(boolean nowrap) { in setNowrap() argument
84 if (nowrap != this.nowrap) { in setNowrap()
86 this.nowrap = nowrap; in setNowrap()
202 result = new Deflater(compressionLevel, nowrap); in createOrResetDeflater()
DJreDeflateParameters.java93 public final boolean nowrap; field in JreDeflateParameters
101 private JreDeflateParameters(int level, int strategy, boolean nowrap) { in JreDeflateParameters() argument
107 this.nowrap = nowrap; in JreDeflateParameters()
110 public static JreDeflateParameters of(int level, int strategy, boolean nowrap) { in of() argument
111 int id = (level * 100) + (strategy * 10) + (nowrap ? 1 : 0); in of()
228 return "level=" + level + ",strategy=" + strategy + ",nowrap=" + nowrap; in toString()
DDefaultDeflateCompatibilityWindow.java329 for (final boolean nowrap : nowrapValues) { in getSystemValues()
330 compressor.setNowrap(nowrap); in getSystemValues()
353 JreDeflateParameters parameters = JreDeflateParameters.of(level, strategy, nowrap); in getSystemValues()
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
DJreDeflateParametersTest.java33 for (boolean nowrap : new boolean[] {true, false}) { in testOf_AllValidValues()
34 JreDeflateParameters.of(level, strategy, nowrap); in testOf_AllValidValues()
40 private void assertIllegalArgumentException(int level, int strategy, boolean nowrap) { in assertIllegalArgumentException() argument
42 JreDeflateParameters.of(level, strategy, nowrap); in assertIllegalArgumentException()
69 for (boolean nowrap : new boolean[] {true, false}) { in testParseString()
70 JreDeflateParameters params = JreDeflateParameters.of(level, strategy, nowrap); in testParseString()
DUnitTestZipEntry.java49 public final boolean nowrap; field in UnitTestZipEntry
69 public UnitTestZipEntry(String path, int level, boolean nowrap, String content, String comment) { in UnitTestZipEntry() argument
72 this.nowrap = nowrap; in UnitTestZipEntry()
105 compressor.setNowrap(nowrap); in getCompressedBinaryContent()
DUnitTestZipArchive.java113 String path, int level, boolean nowrap, String contentPrefix, String comment) { in makeUnitTestZipEntry() argument
120 return new UnitTestZipEntry(path, level, nowrap, contentPrefix + corpusText, comment); in makeUnitTestZipEntry()
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
DPartiallyCompressingOutputStream.java138 deflater = new Deflater(parameters.level, parameters.nowrap); in writeChunk()
139 } else if (lastDeflateParameters.nowrap != parameters.nowrap) { in writeChunk()
142 deflater = new Deflater(parameters.level, parameters.nowrap); in writeChunk()
/external/freetype/src/gzip/
Dinflate.c46 int nowrap; /* flag for no wrapper */ member
61 z->state->mode = z->state->nowrap ? BLOCKS : METHOD; in inflateReset()
108 z->state->nowrap = 0; in inflateInit2_()
112 z->state->nowrap = 1; in inflateInit2_()
125 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w)) in inflateInit2_()
231 if (z->state->nowrap) in inflate()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gzip/
Dinflate.c46 int nowrap; /* flag for no wrapper */ member
61 z->state->mode = z->state->nowrap ? BLOCKS : METHOD; in inflateReset()
108 z->state->nowrap = 0; in inflateInit2_()
112 z->state->nowrap = 1; in inflateInit2_()
125 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w)) in inflateInit2_()
231 if (z->state->nowrap) in inflate()
/external/clang/test/Sema/
Dtype-spec-struct-union.c58 int nowrap; member
64 z->baz->mode = z->baz->nowrap ? HOP : SQUAT;
/external/chromium-trace/catapult/netlog_viewer/netlog_viewer/
Devents_view.css11 white-space: nowrap;
22 white-space: nowrap;
45 white-space: nowrap;
Dmain.css103 white-space: nowrap;
129 white-space: nowrap;
/external/libvorbis/doc/
DVorbis_I_spec.css45 .obeylines-h,.obeylines-v {white-space: nowrap; }
49 td.displaylines {text-align:center; white-space:nowrap;}
52 div.verbatim {font-family: monospace; white-space: nowrap; text-align:left; clear:both; }
117 div.caption span.id{font-weight: bold; white-space: nowrap; }
124 .verse{white-space:nowrap; margin-left:2em}
130 div.author{white-space: nowrap;}
136 P.fancyvrb {white-space: nowrap; margin:0em;}
/external/autotest/frontend/client/src/autotest/public/
Dafeclient.css242 white-space: nowrap;
321 white-space: nowrap;
338 white-space: nowrap;
368 .nowrap {
369 white-space: nowrap;
Dscrolltable.css22 white-space: nowrap;
/external/libopus/doc/
Dcustomdoxygen.css202 white-space: nowrap;
375 white-space: nowrap;
384 white-space: nowrap;
420 white-space: nowrap;
488 white-space: nowrap;
493 white-space: nowrap;
570 white-space: nowrap;
601 white-space: nowrap;
661 white-space: nowrap;
769 white-space: nowrap;
[all …]
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
DFileByFileV1DeltaApplierTest.java59 new UnitTestZipEntry("/foo", PARAMS1.level, PARAMS1.nowrap, OLD_CONTENT, null);
62 new UnitTestZipEntry("/foo", PARAMS1.level, PARAMS1.nowrap, NEW_CONTENT, null);
191 dataOut.write(PARAMS1.nowrap ? 1 : 0); in writePatch()
DPartiallyCompressingOutputStreamTest.java49 "/foo", PARAMS1.level, PARAMS1.nowrap, "foo-level1", null);
61 "/bar", PARAMS2.level, PARAMS2.nowrap, "bar-level6", null);
/external/libjpeg-turbo/doc/html/
Ddoxygen.css272 white-space: nowrap;
466 white-space: nowrap;
475 white-space: nowrap;
595 white-space: nowrap;
600 white-space: nowrap;
641 white-space: nowrap;
660 white-space: nowrap;
688 white-space: nowrap;
718 white-space: nowrap;
783 white-space: nowrap;
[all …]
/external/icu/icu4c/
Dicu4c.css157 white-space: nowrap;
169 white-space: nowrap;
219 white-space: nowrap;
279 white-space: nowrap;
376 white-space: nowrap;
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
Dreport.css148 white-space:nowrap;
183 white-space:nowrap;
209 white-space:nowrap;
/external/libnl/doc/
Dlibnl.css377 white-space: nowrap;
396 white-space: nowrap;
401 white-space: nowrap;
440 white-space: nowrap;
464 white-space: nowrap;
/external/ImageMagick/www/api/MagickWand/
Ddoxygen.css321 white-space: nowrap;
340 white-space: nowrap;
345 white-space: nowrap;
357 .directory p { margin: 0px; white-space: nowrap; }
/external/ImageMagick/www/api/MagickCore/
Ddoxygen.css321 white-space: nowrap;
340 white-space: nowrap;
345 white-space: nowrap;
357 .directory p { margin: 0px; white-space: nowrap; }

123