Home
last modified time | relevance | path

Searched full:complete (Results 1 – 25 of 6816) sorted by relevance

12345678910>>...273

/external/libcxx/www/
Dcxx1y_status.html55 …inology for Container Element Requirements - Rev 1</td><td>Kona</td><td>Complete</td><td>3.4</td><…
60 …d><td>Making Operator Functors greater&lt;&gt;</td><td>Portland</td><td>Complete</td><td>3.4</td><…
61 …</td><td>LWG</td><td>std::result_of and SFINAE</td><td>Portland</td><td>Complete</td><td>3.4</td><…
62 …td><td>Constexpr Library Additions: chrono, v3</td><td>Portland</td><td>Complete</td><td>3.4</td><…
63 …td>Constexpr Library Additions: containers, v2</td><td>Portland</td><td>Complete</td><td>3.4</td><…
64 …<td>Constexpr Library Additions: utilities, v3</td><td>Portland</td><td>Complete</td><td>3.4</td><…
65 …d><td>Constexpr Library Additions: complex, v2</td><td>Portland</td><td>Complete</td><td>3.4</td><…
80 …An Incremental Improvement to integral_constant</td><td>Bristol</td><td>Complete</td><td>3.4</td><…
81 …</a></td><td>LWG</td><td>Null Forward Iterators</td><td>Bristol</td><td>Complete</td><td>3.4</td><…
82 …8">3668</a></td><td>LWG</td><td>std::exchange()</td><td>Bristol</td><td>Complete</td><td>3.4</td><…
[all …]
Dcxx1z_status.html56 …inology for Container Element Requirements - Rev 1</td><td>Kona</td><td>Complete</td><td>3.4</td><…
58 …d>TransformationTrait Alias <code>void_t</code>.</td><td>Urbana</td><td>Complete</td><td>3.6</td><…
60 …d><td>A proposal to add invoke function template</td><td>Urbana</td><td>Complete</td><td>3.7</td><…
63 …td></td><td>Wording for std::uncaught_exceptions</td><td>Urbana</td><td>Complete</td><td>3.7</td><…
64 …riviallyCopyable <code>reference_wrapper</code>.</td><td>Urbana</td><td>Complete</td><td>3.2</td><…
65 …mproved insertion interface for unique-key maps.</td><td>Urbana</td><td>Complete</td><td>3.7</td><…
66 …><td>LWG</td></td><td>Non-member size() and more</td><td>Urbana</td><td>Complete</td><td>3.6</td><…
67 …></td><td>LWG</td></td><td>Contiguous Iterators.</td><td>Urbana</td><td>Complete</td><td>3.6</td><…
68 …or exception-specification and throw-expression.</td><td>Urbana</td><td>Complete</td><td>4.0</td><…
70 …td><td>LWG</td></td><td>improving pair and tuple</td><td>Lenexa</td><td>Complete</td><td>4.0</td><…
[all …]
Dts1z_status.html67 <tr><td>Class erased_type</td><td>Complete</td></tr>
68 <tr><td>Calling a function with a tuple of arguments</td><td>Complete</td></tr>
69 <tr><td>Type traits (_v)</td><td>Complete</td></tr>
72 <tr><td>Time Utilities</td><td>Complete</td></tr>
73 <tr><td>System Error Support</td><td>Complete</td></tr>
75 <tr><td>Class memory_resource</td><td>Complete</td></tr>
76 <tr><td>Class template polymorphic_allocator</td><td>Complete</td></tr>
77 <tr><td>Template alias resource_adaptor</td><td>Complete</td></tr>
78 <tr><td>Global memory resources</td><td>Complete</td></tr>
81 <tr><td>Alias templates using polymorphic memory resource</td><td>Complete</td></tr>
[all …]
/external/python/cpython3/Lib/test/
Dtest_rlcompleter.py20 self.stdcompleter.complete('', 0)
93 self.assertEqual(completer.complete('f.b', 0), 'f.bar')
102 self.assertEqual(completer.complete('f.', 0), 'f.bar')
107 self.assertEqual(completer.complete('', 0), '\t')
108 self.assertEqual(completer.complete('a', 0), 'and ')
109 self.assertEqual(completer.complete('a', 1), 'as ')
110 self.assertEqual(completer.complete('as', 2), 'assert ')
111 self.assertEqual(completer.complete('an', 0), 'and ')
112 self.assertEqual(completer.complete('pa', 0), 'pass')
113 self.assertEqual(completer.complete('Fa', 0), 'False')
[all …]
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
DControlFlowLogic.java53 * statement and all finally clauses of those try statements can complete normally.
105 … // An empty block that is not a switch block can complete normally iff it is reachable in canCompleteNormally()
109 … // A non-empty block that is not a switch block can complete normally iff the last statement in in canCompleteNormally()
110 // it can complete normally. in canCompleteNormally()
119 … // A labeled statement can complete normally if at least one of the following is true: in canCompleteNormally()
120 // – The contained statement can complete normally. in canCompleteNormally()
127 // An empty statement can complete normally iff it is reachable. in canCompleteNormally()
133 // A local class declaration statement can complete normally iff it is reachable. in canCompleteNormally()
140 // An if-then-else statement can complete normally iff the then-statement can in canCompleteNormally()
141 // complete normally or the else-statement can complete normally. in canCompleteNormally()
[all …]
/external/angle/
DREADME.md13 | OpenGL ES 2.0 | complete | complete | complete | complete | complete
14 | OpenGL ES 3.0 | | complete | complete | complete | complete
15 | OpenGL ES 3.1 | | in progress | complete | complete | in progress…
22 | Windows | complete | complete | complete | complete | complete | …
23 | Linux | | | complete | | complete | …
24 | Mac OS X | | | complete | | | in pr…
26 | Chrome OS | | | | complete | planned | …
27 | Android | | | | complete | complete | …
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue100/
DDataMore.java19 private boolean complete; field in DataMore
26 public DataMore(String id, int age, boolean complete) { in DataMore() argument
28 this.complete = complete; in DataMore()
32 return complete; in isComplete()
35 public void setComplete(boolean complete) { in setComplete() argument
36 this.complete = complete; in setComplete()
41 return "DataMore [complete=" + complete + ", toString()=" + super.toString() + "]"; in toString()
/external/jline/src/src/test/java/jline/
DTestCompletion.java31 assertBuffer("foo ", new Buffer("f").op(ConsoleReader.COMPLETE)); in testSimpleCompletor()
33 assertBuffer("ba", new Buffer("b").op(ConsoleReader.COMPLETE)); in testSimpleCompletor()
34 assertBuffer("ba", new Buffer("ba").op(ConsoleReader.COMPLETE)); in testSimpleCompletor()
35 assertBuffer("baz ", new Buffer("baz").op(ConsoleReader.COMPLETE)); in testSimpleCompletor()
49 op(ConsoleReader.COMPLETE)); in testArgumentCompletor()
51 op(ConsoleReader.COMPLETE)); in testArgumentCompletor()
53 op(ConsoleReader.COMPLETE)); in testArgumentCompletor()
55 op(ConsoleReader.COMPLETE)); in testArgumentCompletor()
60 op(ConsoleReader.COMPLETE)); in testArgumentCompletor()
63 op(ConsoleReader.COMPLETE)); in testArgumentCompletor()
[all …]
/external/python/cpython2/Lib/test/
Dtest_rlcompleter.py19 self.stdcompleter.complete('', 0)
78 self.assertEqual(completer.complete('f.b', 0), 'f.bar')
93 self.assertEqual(completer.complete('False', 0), 'False')
94 self.assertIsNone(completer.complete('False', 1)) # No duplicates
95 self.assertEqual(completer.complete('assert', 0), 'assert')
96 self.assertIsNone(completer.complete('assert', 1))
97 self.assertEqual(completer.complete('try', 0), 'try')
98 self.assertIsNone(completer.complete('try', 1))
100 self.assertEqual(completer.complete('memoryview', 0), 'memoryview')
101 self.assertIsNone(completer.complete('memoryview', 1))
[all …]
/external/python/cpython3/Doc/reference/
Dtoplevel_components.rst18 Complete Python programs
29 is invoked, it is useful to have a notion of a complete Python program. A
30 complete Python program is executed in a minimally initialized environment: all
34 provide the local and global namespace for execution of the complete program.
36 The syntax for a complete Python program is that for file input, described in
44 not read and execute a complete program but reads and executes one statement
46 a complete program; each statement is executed in the namespace of
55 A complete program can be passed to the interpreter
59 otherwise, it executes the file as a complete program.
74 * when parsing a complete Python program (from a file or from a string);
/external/python/cpython2/Doc/reference/
Dtoplevel_components.rst18 Complete Python programs
29 is invoked, it is useful to have a notion of a complete Python program. A
30 complete Python program is executed in a minimally initialized environment: all
34 provide the local and global namespace for execution of the complete program.
36 The syntax for a complete Python program is that for file input, described in
44 not read and execute a complete program but reads and executes one statement
46 a complete program; each statement is executed in the namespace of
54 A complete program can be passed to the interpreter
58 otherwise, it executes the file as a complete program.
73 * when parsing a complete Python program (from a file or from a string);
/external/linux-kselftest/tools/testing/selftests/livepatch/
Dtest-state.sh31 livepatch: '$MOD_LIVEPATCH': patching complete
40 livepatch: '$MOD_LIVEPATCH': unpatching complete
64 livepatch: '$MOD_LIVEPATCH': patching complete
74 livepatch: '$MOD_LIVEPATCH2': patching complete
84 livepatch: '$MOD_LIVEPATCH2': unpatching complete
110 livepatch: '$MOD_LIVEPATCH2': patching complete
120 livepatch: '$MOD_LIVEPATCH3': patching complete
131 livepatch: '$MOD_LIVEPATCH2': patching complete
140 livepatch: '$MOD_LIVEPATCH2': unpatching complete
164 livepatch: '$MOD_LIVEPATCH2': patching complete
[all …]
Dtest-callbacks.sh51 livepatch: '$MOD_LIVEPATCH': patching complete
60 livepatch: '$MOD_LIVEPATCH': unpatching complete
97 livepatch: '$MOD_LIVEPATCH': patching complete
111 livepatch: '$MOD_LIVEPATCH': unpatching complete
152 livepatch: '$MOD_LIVEPATCH': patching complete
164 livepatch: '$MOD_LIVEPATCH': unpatching complete
199 livepatch: '$MOD_LIVEPATCH': patching complete
216 livepatch: '$MOD_LIVEPATCH': unpatching complete
244 livepatch: '$MOD_LIVEPATCH': patching complete
251 livepatch: '$MOD_LIVEPATCH': unpatching complete
[all …]
Dtest-livepatch.sh41 livepatch: '$MOD_LIVEPATCH': patching complete
46 livepatch: '$MOD_LIVEPATCH': unpatching complete
87 livepatch: '$MOD_LIVEPATCH': patching complete
94 livepatch: '$MOD_REPLACE': patching complete
101 livepatch: '$MOD_REPLACE': unpatching complete
108 livepatch: '$MOD_LIVEPATCH': unpatching complete
149 livepatch: '$MOD_LIVEPATCH': patching complete
156 livepatch: '$MOD_REPLACE': patching complete
164 livepatch: '$MOD_REPLACE': unpatching complete
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DAwait.kt13 …* when all deferred computations are complete or resumes with the first thrown exception if any of… in <lambda>()
14 * complete exceptionally including cancellation. in <lambda>()
28 …* when all deferred computations are complete or resumes with the first thrown exception if any of… in <lambda>()
29 * complete exceptionally including cancellation. in <lambda>()
42 * Suspends current coroutine until all given jobs are complete. in <lambda>()
51 * Suspends current coroutine until all given jobs are complete.
75 // Here we know that if any code the nodes complete, it will dipsose the rest in await()
76 // Step 3: Now we can check if continuation is complete in await()
78 // it is already complete while handlers were being installed -- dispose them all in await()
105 // volatile read of disposer AFTER continuation is complete in toString()
[all …]
DCompletableDeferred.kt11 * A [Deferred] that can be completed via public functions [complete] or [cancel][Job.cancel].
13 …* Note that the [complete] function returns `false` when this deferred value is already complete o…
31 * once all its children are [complete][isCompleted]. See [Job] for details.
33 public fun complete(value: T): Boolean in complete() method
43 * once all its children are [complete][isCompleted]. See [Job] for details. in complete()
59 …rred(value: T): CompletableDeferred<T> = CompletableDeferredImpl<T>(null).apply { complete(value) } in complete()
76 override fun complete(value: T): Boolean = method
/external/pcre/dist2/doc/
Dpcre2partial.330 preferred to an alternative complete match, though the details differ between
73 If it is matched against "456abc123xyz" the result is a complete match, and the
89 other alternatives in the pattern are tried. If no complete match can be found,
92 This option is "soft" because it prefers a complete match over a partial match.
94 potentially complete. For example, \ez, \eZ, and $ match at the end of the
116 possible complete matches. This option is "hard" because it prefers an earlier
117 partial match over a later complete match. For this reason, the assumption is
134 PCRE2_PARTIAL_SOFT, it yields a complete match for "dog". However, if
140 In this case the result is always a complete match because that is found first,
141 and matching never continues after finding a complete match. It might be easier
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DCompletableJobTest.kt15 assertTrue(job.complete()) in testComplete()
19 assertFalse(job.complete()) in testComplete()
32 assertFalse(job.complete()) in testCompleteWithException()
39 assertTrue(parent.complete()) in testCompleteWithChildren()
40 assertFalse(parent.complete()) in testCompleteWithChildren()
43 assertTrue(child.complete()) in testCompleteWithChildren()
DCompletableDeferredTest.kt21 assertEquals(true, c.complete("OK")) in testComplete()
24 assertEquals(false, c.complete("OK")) in testComplete()
32 assertEquals(true, c.complete(c.invokeOnCompletion { })) in testCompleteWithIncompleteResult()
34 assertEquals(false, c.complete(c.invokeOnCompletion { })) in testCompleteWithIncompleteResult()
103 assertEquals(true, c.complete("OK")) in testParentActiveOnChildCompletion()
143 c.complete("OK") in <lambda>()
184 parent.complete("OK") in <lambda>()
193 fail("Should not complete normally") in assertThrows()
/external/libese/libese-hw/
Dese_hw_fake.c44 ese->pad[0] = 1; /* rx complete */ in fake_open()
45 ese->pad[1] = 1; /* tx complete */ in fake_open()
58 uint32_t len, int complete) { in fake_receive() argument
63 ese->pad[0] = complete; in fake_receive()
75 uint32_t len, int complete) { in fake_transmit() argument
80 ese->pad[1] = complete; in fake_transmit()
92 int complete) { in fake_poll() argument
106 ese->pad[0] = complete; in fake_poll()
141 fake_transmit(ese, NULL, 0, 1); /* Complete. */ in fake_transceive()
/external/dagger2/javatests/dagger/functional/producers/cancellation/
DProducerSubcomponentCancellationTest.java63 // Finish all the parent tasks to ensure that it can still complete normally. in cancellingSubcomponent_doesNotCancelParent()
64 tester.complete( in cancellingSubcomponent_doesNotCancelParent()
84 tester.complete("subLeaf"); in cancellingSubcomponent_preventsUnstartedNodesFromStarting()
89 // Complete the remaining dependencies of subTask1 and subTask2. in cancellingSubcomponent_preventsUnstartedNodesFromStarting()
90 tester.complete("leaf1", "leaf2", "leaf3", "foo", "bar", "baz", "qux"); in cancellingSubcomponent_preventsUnstartedNodesFromStarting()
103 tester.complete("leaf1", "leaf2", "leaf3", "foo", "bar", "baz", "qux", "subLeaf"); in cancellingProducerFromComponentDependency_inSubcomponent_cancelsUnderlyingTask()
117 // should be able to complete normally. in cancellingProducerFromComponentDependency_inSubcomponent_cancelsUnderlyingTask()
118 tester.complete("subTask1", "subTask2", "subEntryPoint"); in cancellingProducerFromComponentDependency_inSubcomponent_cancelsUnderlyingTask()
/external/eigen/Eigen/src/QR/
DCompleteOrthogonalDecomposition.h28 * \brief Complete orthogonal decomposition (COD) of a matrix.
32 * This class performs a rank-revealing complete orthogonal decomposition of a
96 /** \brief Constructs a complete orthogonal decomposition from a given
99 * This constructor computes the complete orthogonal decomposition of the
121 /** \brief Constructs a complete orthogonal decomposition from a given matrix
139 * which \c *this is the complete orthogonal decomposition.
165 /** \returns a reference to the matrix where the complete orthogonal
170 /** \returns a reference to the matrix where the complete orthogonal
197 * *this is the complete orthogonal decomposition. It has only linear
199 * as the complete orthogonal decomposition has already been computed.
[all …]
/external/libese/libese-teq1/tests/
Dese_operations_wrapper.cpp35 static uint32_t EseHwReceive(struct EseInterface *ese, uint8_t *data, uint32_t len, int complete) { in EseHwReceive() argument
36 return EseOperationsWrapperData::ops_interface->EseHwReceive(ese, data, len, complete); in EseHwReceive()
39 …uint32_t EseHwTransmit(struct EseInterface *ese, const uint8_t *data, uint32_t len, int complete) { in EseHwTransmit() argument
40 return EseOperationsWrapperData::ops_interface->EseHwTransmit(ese, data, len, complete); in EseHwTransmit()
52 static int EsePoll(struct EseInterface *ese, uint8_t poll_for, float timeout, int complete) { in EsePoll() argument
53 return EseOperationsWrapperData::ops_interface->EsePoll(ese, poll_for, timeout, complete); in EsePoll()
/external/libese/apps/boot/tests/
Dese_operations_wrapper.cpp34 static uint32_t EseHwReceive(struct EseInterface *ese, uint8_t *data, uint32_t len, int complete) { in EseHwReceive() argument
35 return EseOperationsWrapperData::ops_interface->EseHwReceive(ese, data, len, complete); in EseHwReceive()
38 …uint32_t EseHwTransmit(struct EseInterface *ese, const uint8_t *data, uint32_t len, int complete) { in EseHwTransmit() argument
39 return EseOperationsWrapperData::ops_interface->EseHwTransmit(ese, data, len, complete); in EseHwTransmit()
51 static int EsePoll(struct EseInterface *ese, uint8_t poll_for, float timeout, int complete) { in EsePoll() argument
52 return EseOperationsWrapperData::ops_interface->EsePoll(ese, poll_for, timeout, complete); in EsePoll()
/external/libchrome/mojo/public/cpp/system/
Ddata_pipe.h9 // Please see "mojo/public/c/system/data_pipe.h" for complete documentation of
31 // Writes to a data pipe. See |MojoWriteData| for complete documentation.
42 // complete documentation.
53 // complete documentation.
76 // Reads from a data pipe. See |MojoReadData()| for complete documentation.
87 // complete documentation.
98 // complete documentation.
114 // Creates a new data pipe. See |MojoCreateDataPipe()| for complete

12345678910>>...273