Home
last modified time | relevance | path

Searched refs:terminated (Results 1 – 25 of 896) sorted by relevance

12345678910>>...36

/external/linux-kselftest/tools/testing/selftests/powerpc/
Dharness.c29 bool terminated; in run_test() local
50 terminated = false; in run_test()
60 if (terminated) { in run_test()
67 terminated = true; in run_test()
/external/rust/crates/nom/doc/
Dnom_recipes.md50 To eat only trailing whitespace, replace `delimited(...)` with `terminated(&inner, multispace0)`.
171 sequence::{preceded, terminated},
181 terminated(one_of("0123456789abcdefABCDEF"), many0(char('_')))
196 sequence::{preceded, terminated},
207 terminated(one_of("0123456789abcdefABCDEF"), many0(char('_')))
224 sequence::{preceded, terminated},
234 terminated(one_of("01234567"), many0(char('_')))
249 sequence::{preceded, terminated},
259 terminated(one_of("01"), many0(char('_')))
273 sequence::terminated,
[all …]
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/framework/foundation/
Dstream_testing.py44 terminated = False
46 if terminated:
49 terminated = True
/external/rust/crates/cexpr/src/
Dliteral.rs48 use nom::sequence::{delimited, pair, preceded, terminated, tuple};
210 terminated(opt(c_width_prefix), char('\'')), in c_char()
257 terminated( in c_int()
301 terminated( in c_float()
309 terminated( in c_float()
317 terminated( in c_float()
326 terminated( in c_float()
335 terminated(recognize(many1(complete(decimal))), float_width), in c_float()
/external/apache-http/src/org/apache/http/message/
DBasicHeaderValueParser.java331 boolean terminated = false; in parseNameValuePair()
345 terminated = true; in parseNameValuePair()
352 terminated = true; in parseNameValuePair()
359 if (terminated) { in parseNameValuePair()
376 terminated = true; in parseNameValuePair()
404 if (terminated) { in parseNameValuePair()
/external/toolchain-utils/crosperf/
Dbenchmark_run_unittest.py258 br.terminated = True
274 br.terminated = False
345 self.assertFalse(br.terminated)
353 self.assertTrue(br.terminated)
380 self.assertFalse(br.terminated)
388 self.assertTrue(br.terminated)
406 br.terminated = True
409 br.terminated = False
Dbenchmark_run.py54 self.terminated = False
159 if self.terminated:
199 self.terminated = True
212 if self.terminated:
/external/linux-kselftest/tools/testing/selftests/arm64/signal/testcases/
Dtestcases.c80 bool terminated = false; in validate_reserved() local
91 while (head && !terminated && offs < resv_sz) { in validate_reserved()
102 terminated = true; in validate_reserved()
172 if (terminated && !(flags & FPSIMD_CTX)) { in validate_reserved()
/external/toolchain-utils/binary_search_tool/
Dbinary_search_state.py284 terminated = self.DoBinarySearchBadItems()
286 if not terminated:
358 terminated = False
359 while self.search_cycles < self.iterations and not terminated:
375 terminated = self.binary_search.SetStatus(status)
377 if terminated:
379 if not terminated:
382 return terminated
625 terminated = False
627 while self.search_cycles < self.iterations and not terminated:
[all …]
/external/autotest/client/bin/
Dprespawner.py55 self.terminated = False
80 while not self.terminated:
104 self.terminated = True
/external/tensorflow/tensorflow/core/ir/tests/
Dregion-invalid-ops.mlir17 // expected-error@+1 {{then region must be terminated by a 'tfg.yield'}}
29 // expected-error@+1 {{else region must be terminated by a 'tfg.yield'}}
42 // expected-error@+1 {{branch region #0 is not terminated by a 'tfg.yield'}}
64 // expected-error@+1 {{condition region must be terminated by a 'tfg.condition'}}
80 // expected-error@+1 {{body region must be terminated by a 'tfg.yield'}}
109 // expected-error@+1 {{body region must be terminated by a 'tfg.yield'}}
/external/rust/crates/nom/tests/
Dmultiline.rs4 sequence::terminated,
17 terminated(alphanumeric, end_of_line)(input) in read_line()
Dini.rs8 sequence::{delimited, pair, separated_pair, terminated, tuple},
31 map(many0(terminated(key_value, opt(multispace))), |vec| { in keys_and_values()
37 let (i, category) = terminated(category, opt(multispace))(i)?; in category_and_keys()
48 many0(terminated(key_value, opt(multispace))), in categories()
Dcustom_errors.rs9 use nom::sequence::terminated;
38 terminated(test1, digit)(input) in test2()
/external/trace-cmd/Documentation/trace-cmd/
Dtrace-cmd.dat.v7.5.txt32 The next set of characters contain a null '\0' terminated string
131 The DATE option data is a null terminated ASCII string, which represents
136 The CPUSTAT option data is a null terminated ASCII string, the content of the
146 <string> a null terminated ASCII string, name of the trace instance. Empty string ""
148 <string> a null terminated ASCII string, trace clock used for events timestamps in
159 The TRACECLOCK option data is a null terminated ASCII string, the content of the
163 The UNAME option data is a null terminated ASCII string, identifying the system where
167 The HOOK option data is a null terminated ASCII string, describing event hooks: custom
171 The OFFSET option data is a null terminated ASCII string, representing a fixed time that
179 The VERSION option data is a null terminated ASCII string, representing the version of
[all …]
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DServerImpl.java102 @GuardedBy("lock") private boolean terminated; field in ServerImpl
177 checkState(!terminated, "Already terminated"); in getPort()
271 while (!terminated && (timeoutNanos = endTimeNanos - System.nanoTime()) > 0) { in awaitTermination()
274 return terminated; in awaitTermination()
281 while (!terminated) { in awaitTermination()
290 return terminated; in isTerminated()
314 if (terminated) { in checkForTermination()
317 terminated = true; in checkForTermination()
DManagedChannelImpl.java206 private volatile boolean terminated; field in ManagedChannelImpl
768 return terminated; in isTerminated()
810 terminated ? null : transportFactory.getScheduledExecutorService(), in newCall()
829 if (terminated) { in maybeTerminateChannel()
835 terminated = true; in maybeTerminateChannel()
1019 checkState(!terminated, "Channel is terminated"); in createSubchannel()
1094 if (!terminated) { in createSubchannel()
1148 checkState(!terminated, "Channel is terminated"); in createOobChannel()
1210 if (!terminated) { in createOobChannel()
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
DStreams.java79 private boolean terminated; field in Streams.FailableStream
95 if (terminated) { in assertNotTerminated()
107 terminated = true; in makeTerminated()
/external/libwebsockets/READMEs/
DREADME.http_parser.md7 - the path part of the URL. A lot of user code handles it as a NUL terminated string,
21 urlargs are allowed to contain non-NUL terminated binary. So it is important to
/external/oj-libjdwp/src/share/npt/
DREADME.txt29 /* After all uses is done, it can be terminated, however, if the
32 * you will need to wait here until all those threads have terminated.
/external/openscreen/osp/msgs/
Dosp_messages.cddl139 user-terminated-via-controller: 11
156 user-terminated-via-receiver: 2
158 user-terminated-via-controller: 11
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dgpu_device.h319 bool terminated; member
323 terminated(pk.terminated) {} in PendingKernel()
324 PendingKernel() : queued_count(0), weight(0), terminated(false) {} in PendingKernel()
/external/e2fsprogs/tests/f_baddotdir/
Dexpect.120 '.' directory entry in directory inode 17 is not NULL terminated
23 '..' directory entry in directory inode 17 is not NULL terminated
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DNettyServerTransport.java66 private boolean terminated; field in NettyServerTransport
196 if (!terminated) { in notifyTerminated()
197 terminated = true; in notifyTerminated()
/external/grpc-grpc-java/core/src/main/java/io/grpc/inprocess/
DInProcessTransport.java86 private boolean terminated; field in InProcessTransport
166 if (terminated) {
208 if (terminated) {
257 if (terminated) {
260 terminated = true;

12345678910>>...36