/external/mesa3d/docs/ |
D | GL3.txt | 59 GLSL 1.50 not started 66 Multisample textures (GL_ARB_texture_multisample) not started 89 GLSL 4.0 not started 90 GL_ARB_texture_query_lod not started 92 GL_ARB_draw_indirect not started 93 GL_ARB_gpu_shader5 not started 94 GL_ARB_gpu_shader_fp64 not started 95 GL_ARB_sample_shading not started 96 GL_ARB_shader_subroutine not started 97 GL_ARB_tessellation_shader not started [all …]
|
/external/jetty/src/java/org/eclipse/jetty/io/ |
D | BufferUtil.java | 46 boolean started= false; in toInt() 53 if (started) in toInt() 59 started= true; in toInt() 61 else if (b == MINUS && !started) in toInt() 69 if (started) in toInt() 84 boolean started= false; in toLong() 91 if (started) in toLong() 97 started= true; in toLong() 99 else if (b == MINUS && !started) in toLong() 107 if (started) in toLong() [all …]
|
/external/iproute2/lib/ |
D | dnet_ntop.c | 19 …__ int do_digit(char *str, u_int16_t *addr, u_int16_t scale, size_t *pos, size_t len, int *started) in do_digit() argument 26 if (((tmp) > 0) || *started || (scale == 1)) { in do_digit() 28 *started = 1; in do_digit() 41 int started = 0; in dnet_ntop1() local 55 if (do_digit(str + pos, &area, 10, &pos, len, &started)) in dnet_ntop1() 58 if (do_digit(str + pos, &area, 1, &pos, len, &started)) in dnet_ntop1() 66 started = 0; in dnet_ntop1() 68 if (do_digit(str + pos, &addr, 1000, &pos, len, &started)) in dnet_ntop1() 71 if (do_digit(str + pos, &addr, 100, &pos, len, &started)) in dnet_ntop1() 74 if (do_digit(str + pos, &addr, 10, &pos, len, &started)) in dnet_ntop1() [all …]
|
/external/autotest/client/common_lib/ |
D | profiler_manager_unittest.py | 16 started = 0 variable in stub_profiler 21 cls.started += 1 24 cls.started -= 1 89 started = stub_profiler.started 92 self.assertEqual(started + 2, stub_profiler.started) 100 started = stub_profiler.started 105 self.assertEqual(started, stub_profiler.started)
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowCountDownTimer.java | 12 private boolean started; field in ShadowCountDownTimer 21 this.started = false; in __constructor__() 26 started = true; in start() 33 started = false; in cancel() 51 return started; in hasStarted()
|
/external/clang/test/SemaObjC/ |
D | missing-atend-metadata.m | 6 @implementation I0 // expected-note {{implementation started here}} 12 @implementation I1 // expected-note {{implementation started here}} 19 @implementation I2 // expected-note {{implementation started here}} 22 …ation I2(CAT) // expected-error 2 {{missing '@end'}} expected-note {{implementation started here}}
|
/external/clang/test/Parser/ |
D | missing-end-4.m | 5 @implementation X1 // expected-note {{implementation started here}} 12 @implementation X2 // expected-note {{implementation started here}} 17 @interface X6 // expected-note {{class started here}} 22 @protocol P1 // expected-note {{protocol started here}} 27 @interface X4 // expected-note {{class started here}}
|
D | missing-end-2.m | 4 @interface A // expected-note {{class started here}} 10 @interface B { // expected-note {{class started here}} 16 @interface C // expected-note 2 {{class started here}}
|
/external/opencv3/modules/videoio/src/ |
D | cap_winrt_capture.cpp | 123 VideoCapture_WinRT::VideoCapture_WinRT(int device) : started(false) in VideoCapture_WinRT() 140 if (!started) return true; in grabFrame() 157 if (!started) { in retrieveFrame() 173 started = true; in retrieveFrame() 177 if (!started) return false; in retrieveFrame()
|
/external/strace/qemu_multiarch_testing/ |
D | parallel-build-hdc-img.sh | 15 started=false 21 started=true 24 $started || {
|
/external/jetty/src/resources/org/eclipse/jetty/util/component/jmx/ |
D | LifeCycle-mbean.properties | 4 running: Instance is started or starting 5 started: Instance is started key
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
D | modpython.py | 109 self.started = False 163 if not self.started: 169 if not self.started: 179 if self.started: 197 if not self.started: 198 self.started = True
|
/external/google-breakpad/src/client/ios/ |
D | BreakpadController.mm | 161 NSAssert(started_, @"The controller must be started before " 172 @"The controller must be started before setUploadingEnabled is called"); 192 @"The controller must not be started when updateConfiguration is called"); 202 @"The controller must not be started when resetConfiguration is called"); 213 @"The controller must not be started when setUploadingURL is called"); 219 @"The controller must not be started when setUploadInterval is called"); 227 NSAssert(!started_, @"The controller must not be started when " 235 @"The controller must be started before addUploadParameter is called"); 243 NSAssert(started_, @"The controller must be started before " 253 @"The controller must be started before withBreakpadRef is called"); [all …]
|
/external/chromium-trace/catapult/third_party/typ/typ/ |
D | stats.py | 21 self.started = 0 64 out += '%5.1f' % (self.started * 100.0 / self.total) 68 out += str(self.started - self.finished) 70 out += str(self.started)
|
/external/skia/tools/ |
D | win_dbghelp.cpp | 98 bool started = false; in printCallstack() local 102 if (!started && strncmp(start, line, strlen(start)) == 0) { in printCallstack() 103 started = true; in printCallstack() 104 } else if (started && strncmp(stop, line, strlen(stop)) == 0) { in printCallstack() 106 } else if (started) { in printCallstack()
|
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/ |
D | AnimatedGifEncoder.java | 56 private boolean started = false; // ready to output frames field in AnimatedGifEncoder 151 if ((im == null) || !started) { in addFrame() 190 if (!started) in finish() 193 started = false; in finish() 255 if (started && !firstFrame) in setSize() 285 return started = ok; in start() 304 return started = ok; in start()
|
/external/testng/src/test/java/test/listeners/ |
D | SuiteAndConfigurationListenerTest.java | 25 private static volatile AtomicInteger started = new AtomicInteger(0); field in SuiteAndConfigurationListenerTest.MyListener 32 started.incrementAndGet(); in onStart() 55 … Assert.assertEquals(MyListener.started.get(), 1, "ISuiteListener was not invoked exactly once:"); in bothListenersShouldRun()
|
/external/libnl/lib/ |
D | addr.c | 49 size_t *pos, size_t len, int *started) in do_digit() argument 56 if (((tmp) > 0) || *started || (scale == 1)) { in do_digit() 58 *started = 1; in do_digit() 72 int started = 0; in dnet_ntop() local 82 if (do_digit(str + pos, &area, 10, &pos, len, &started)) in dnet_ntop() 85 if (do_digit(str + pos, &area, 1, &pos, len, &started)) in dnet_ntop() 93 started = 0; in dnet_ntop() 95 if (do_digit(str + pos, &addr, 1000, &pos, len, &started)) in dnet_ntop() 98 if (do_digit(str + pos, &addr, 100, &pos, len, &started)) in dnet_ntop() 101 if (do_digit(str + pos, &addr, 10, &pos, len, &started)) in dnet_ntop() [all …]
|
/external/chromium-trace/catapult/third_party/typ/typ/tests/ |
D | stats_test.py | 29 s.started = 3 34 s.started = 5 58 s.started = 3
|
/external/parameter-framework/upstream/test/functional-tests/ |
D | plan.md | 210 * GIVEN a started parameter framework without domains 216 * GIVEN a started parameter framework with a domain 223 * GIVEN a started parameter framework with a domain and several configuration (3?) 228 * GIVEN a started parameter framework with several domains 233 * GIVEN a started parameter framework with a domain and several configuration (3?) 240 * GIVEN a started parameter framework with a domain (arbitrary name) 244 * GIVEN a started parameter framework with a domain 250 * GIVEN a started parameter framework without domain 254 * GIVEN a started parameter framework one domain 258 * GIVEN a started parameter framework without domain [all …]
|
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/ |
D | FakeFtpServer_AlreadyStartedTest.groovy | 28 Thread.sleep(200L); // give it some time to get started 29 assertEquals("started - after start()", true, ftpServer1.isStarted()); 33 log("started ftpServer2")
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/ |
D | FakeFtpServer_AlreadyStartedTest.groovy | 28 Thread.sleep(200L); // give it some time to get started 29 assertEquals("started - after start()", true, ftpServer1.isStarted()); 33 log("started ftpServer2")
|
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/ |
D | FakeFtpServer_AlreadyStartedTest.groovy | 28 Thread.sleep(200L); // give it some time to get started 29 assertEquals("started - after start()", true, ftpServer1.isStarted()); 33 log("started ftpServer2")
|
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/ |
D | FakeFtpServer_AlreadyStartedTest.groovy | 28 Thread.sleep(200L); // give it some time to get started 29 assertEquals("started - after start()", true, ftpServer1.isStarted()); 33 log("started ftpServer2")
|
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/ |
D | FakeFtpServer_AlreadyStartedTest.groovy | 28 Thread.sleep(200L); // give it some time to get started 29 assertEquals("started - after start()", true, ftpServer1.isStarted()); 33 log("started ftpServer2")
|