Searched refs:skip (Results 126 - 150 of 652) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/chromeos/policy/
H A Duser_network_configuration_updater.h89 static void SetSkipCertificateImporterCreationForTest(bool skip);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
H A Dmain.py56 tester.skip(('webkitpy.common.checkout.scm.scm_unittest',), 'are really, really, slow', 31818)
58 tester.skip(('webkitpy.common.checkout', 'webkitpy.common.config', 'webkitpy.tool', 'webkitpy.w3c', 'webkitpy.layout_tests.layout_package.bot_test_expectations'), 'fail horribly on win32', 54526)
88 def skip(self, names, reason, bugid): member in class:Tester
89 self.finder.skip(names, reason, bugid)
H A Dskip_unittest.py27 from webkitpy.test.skip import skip_if
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dblock.h117 int skip; member in struct:macroblock
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_debugmodes.c60 print_mi_data(cm, mvs, "Skips:", offsetof(MB_MODE_INFO, skip));
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_flow.h45 * Early exit. Useful to skip to the end of a function or block when
52 /** Block to skip to */
70 struct lp_build_skip_context skip; member in struct:lp_build_mask_context
/external/chromium_org/third_party/skia/src/core/
H A DSkWriter32.cpp20 // skip over the string + '\0' and then pad to a multiple of 4
22 this->skip(alignedSize);
H A DSkRecordDraw.cpp18 bool Draw::skip(const PairedPushCull& r) { function in class:SkRecords::Draw
20 fIndex += r.skip;
26 bool Draw::skip(const BoundedDrawPosTextH& r) { function in class:SkRecords::Draw
/external/chromium_org/third_party/zlib/
H A Dgzguts.h108 z_off64_t skip; /* amount to skip (already rewound if backwards) */ member in struct:__anon15695
/external/compiler-rt/test/BlocksRuntime/
H A Dtestfilerunner.h75 - (bool) compileUnlessExists:(bool)skip;
/external/dnsmasq/src/
H A Ddbus.c116 int skip = 0; local
139 skip = 1;
164 skip = 0;
181 if (!skip)
/external/libvpx/libvpx/vp8/encoder/
H A Dblock.h117 int skip; member in struct:macroblock
/external/libvpx/libvpx/vp9/common/
H A Dvp9_debugmodes.c61 print_mi_data(cm, mvs, "Skips:", offsetof(MB_MODE_INFO, skip));
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_flow.h45 * Early exit. Useful to skip to the end of a function or block when
52 /** Block to skip to */
70 struct lp_build_skip_context skip; member in struct:lp_build_mask_context
/external/okhttp/okio/src/main/java/okio/
H A DInflaterSource.java110 source.skip(toRelease);
/external/skia/src/core/
H A DSkWriter32.cpp20 // skip over the string + '\0' and then pad to a multiple of 4
22 this->skip(alignedSize);
H A DSkRecordDraw.cpp18 bool Draw::skip(const PairedPushCull& r) { function in class:SkRecords::Draw
20 fIndex += r.skip;
26 bool Draw::skip(const BoundedDrawPosTextH& r) { function in class:SkRecords::Draw
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Dtty_node.cc211 bool skip = false; local
236 skip = true;
249 if (!skip)
/external/chromium_org/third_party/skia/tests/
H A DFrontBufferedStreamTest.cpp104 bufferedStream->skip(bufferSize / 2);
110 // Now skip beyond the buffered piece, but still within the total buffer.
111 bufferedStream->skip(bufferSize / 2);
212 memStream.skip(arbitraryOffset);
/external/chromium_org/v8/tools/testrunner/local/
H A Dtestsuite.py94 return (mode == "run" and not flaky) or (mode == "skip" and flaky)
98 return (mode == "run" and not slow) or (mode == "skip" and slow)
102 return (mode == "run" and not pass_fail) or (mode == "skip" and pass_fail)
125 skip = False
132 skip = True
137 if (skip or self._FilterFlaky(flaky, flaky_tests)
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DInterceptFieldTransformer.java121 Label skip = e.make_label();
122 e.ifnull(skip);
137 e.mark(skip);
/external/skia/tests/
H A DFrontBufferedStreamTest.cpp104 bufferedStream->skip(bufferSize / 2);
110 // Now skip beyond the buffered piece, but still within the total buffer.
111 bufferedStream->skip(bufferSize / 2);
212 memStream.skip(arbitraryOffset);
/external/chromium_org/v8/src/
H A Dserialize.h453 int skip);
501 // bytes to skip instead of performing a skip instruction, in case the skip
517 int skip) = 0;
523 int skip);
578 int skip);
620 int skip);
/external/llvm/lib/Support/
H A DYAMLParser.cpp387 void skip(uint32_t Distance);
888 void Scanner::skip(uint32_t Distance) { function in class:Scanner
971 skip(1);
977 // This may skip more than one byte, thus Column is only incremented
1071 skip(3);
1081 skip(1);
1100 skip(1);
1113 skip(1);
1125 skip(1);
1140 skip(
1558 void Stream::skip() { function in class:Stream
2028 bool Document::skip() { function in class:Document
[all...]
/external/chromium_org/media/cast/test/
H A Dcast_benchmarks.cc677 int skip,
685 if (skip > max) {
698 skip *= 2;
699 SpanningSearch(max, x, y, skip, a, b, c, accuracy, threads);
700 SpanningSearch(max, x + skip, y + skip, skip, a, b, c, accuracy, threads);
701 SpanningSearch(max, x + skip, y, skip, a, b, c, accuracy, threads);
702 SpanningSearch(max, x, y + skip, ski
674 SpanningSearch(int max, int x, int y, int skip, SearchVector a, SearchVector b, SearchVector c, double accuracy, std::vector<linked_ptr<base::Thread> >* threads) argument
[all...]

Completed in 3044 milliseconds

1234567891011>>