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/abi-compliance-checker/modules/Internals/Styles/
DReport.css21 white-space:nowrap;
27 white-space:nowrap;
148 white-space:nowrap;
160 white-space:nowrap;
166 white-space:nowrap;
178 white-space:nowrap;
199 span.nowrap {
200 white-space:nowrap;
203 white-space:nowrap;
DSymbolsList.css26 white-space:nowrap;
62 white-space:nowrap;
71 span.nowrap {
72 white-space:nowrap;
DCmpSystems.css34 white-space:nowrap;
39 white-space:nowrap;
/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/llvm/test/Analysis/ScalarEvolution/
Dpr27315.ll8 ; CHECK: %iv = phi i32 [ 0, %entry ], [ %iv.inc.nowrap, %be ]
18 %iv = phi i32 [ 0, %entry ], [ %iv.inc.nowrap, %be ]
25 %iv.inc.nowrap = add nsw i32 %iv, 1
/external/clang/test/Sema/
Dtype-spec-struct-union.c58 int nowrap; member
64 z->baz->mode = z->baz->nowrap ? HOP : SQUAT;
/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/autotest/frontend/client/src/autotest/public/
Dafeclient.css244 white-space: nowrap;
323 white-space: nowrap;
340 white-space: nowrap;
370 .nowrap {
371 white-space: nowrap;
/external/libnl/doc/
Dlibnl.css267 white-space: nowrap;
458 white-space: nowrap;
467 white-space: nowrap;
586 white-space: nowrap;
591 white-space: nowrap;
632 white-space: nowrap;
651 white-space: nowrap;
678 white-space: nowrap;
707 white-space: nowrap;
772 white-space: nowrap;
[all …]
/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/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/icu/icu4c/
Dicu4c.css159 white-space: nowrap;
171 white-space: nowrap;
221 white-space: nowrap;
281 white-space: nowrap;
378 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/fmtlib/doc/bootstrap/mixins/
Dtext-overflow.less7 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