Searched defs:sequence (Results 1 - 25 of 190) sorted by relevance

12345678

/external/autotest/client/cros/cellular/mbim_compliance/sequences/
H A Dloopback_sequence.py16 import sequence namespace
18 class LoopbackSequence(sequence.Sequence):
20 Data loopback sequence used for data transfer testing.
22 In this sequence, we send out an IPv4 ping packet to the device which is
44 Need to run the |connect| sequence before invoking this loopback
45 sequence.
56 # Step 1 is to run |connect| sequence which is expected to be run
58 # sequence.
H A Dget_descriptors_sequence.py18 from autotest_lib.client.cros.cellular.mbim_compliance.sequences import sequence namespace
23 class GetDescriptorsSequence(sequence.Sequence):
H A Dmbim_cid_device_caps_sequence.py23 import sequence namespace
26 class MBIMCIDDeviceCapsSequence(sequence.Sequence):
29 In this sequence, cid |MBIM_CID_DEVICE_CAPS| and uuid |UUID_BASIC_CONNECT|
H A Dmbim_cid_device_services_sequence.py19 import sequence namespace
22 class MBIMCIDDeviceServicesSequence(sequence.Sequence):
25 In this sequence, cid |MBIM_CID_DEVICE_SERVICES| is used to query the device
H A Dmbim_close_sequence.py23 import sequence namespace
26 class MBIMCloseSequence(sequence.Sequence):
29 In this sequence, a |MBIM_CLOSE_MSG| is sent to the modem in order to
H A Dconnect_sequence.py24 import sequence namespace
27 class ConnectSequence(sequence.Sequence):
44 list of packet sequence numbers to reorder, repeat or remove
113 'Connect sequence failed.')
H A Dopen_sequence.py12 import sequence namespace
58 class OpenSequence(sequence.Sequence):
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DPermutationChromosome.java32 * Permutes the <code>sequence</code> of objects of type T according to the
34 * represents a permutation (3,0,1,2), and the unpermuted sequence is
37 * @param sequence
38 * the unpermuted (original) sequence of objects
39 * @return permutation of <code>sequence</code> represented by this
42 List<T> decode(List<T> sequence); argument
H A DRandomKey.java34 * permutation of indices (3,0,1,2). If the original (unpermuted) sequence would
35 * be (a,b,c,d), this would mean the sequence (d,a,b,c).
72 * Base sequence [0,1,...,n-1], permuted accorting to the representation (unmodifiable).
105 public List<T> decode(List<T> sequence) { argument
106 return decodeGeneric(sequence, getRepresentation(), sortedRepresentation);
113 * @param <S> generic type of the sequence values
114 * @param sequence the unpermuted sequence
117 * @return list with the sequence values permuted according to the representation
119 private static <S> List<S> decodeGeneric(List<S> sequence, Lis argument
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
H A DNodeId.java19 * Enum for the three basic YAML types: scalar, sequence and mapping.
22 scalar, sequence, mapping, anchor; enum constant in enum:NodeId
/external/guava/guava/src/com/google/common/base/
H A DUtf8.java41 * Returns the number of bytes in the UTF-8-encoded form of {@code sequence}. For a string,
45 * @throws IllegalArgumentException if {@code sequence} contains ill-formed UTF-16 (unpaired
48 public static int encodedLength(CharSequence sequence) { argument
50 int utf16Length = sequence.length();
55 while (i < utf16Length && sequence.charAt(i) < 0x80) {
61 char c = sequence.charAt(i);
65 utf8Length += encodedLengthGeneral(sequence, i);
78 private static int encodedLengthGeneral(CharSequence sequence, int start) { argument
79 int utf16Length = sequence.length();
82 char c = sequence
[all...]
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dqueue.cpp64 _cl_command_queue::sequence(clover::hard_event *ev) { function in class:_cl_command_queue
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DCMSAlgorithmProtection.java62 private CMSAlgorithmProtection(ASN1Sequence sequence) argument
64 if (sequence.size() != 2)
69 this.digestAlgorithm = AlgorithmIdentifier.getInstance(sequence.getObjectAt(0));
71 ASN1TaggedObject tagged = ASN1TaggedObject.getInstance(sequence.getObjectAt(1));
/external/linux-kselftest/tools/testing/selftests/powerpc/dscr/
H A Ddscr_default_test.c18 static unsigned long sequence; variable
30 s1 = ACCESS_ONCE(sequence);
40 s2 = sequence;
90 sequence++;
100 sequence++;
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_fence.h25 uint32_t sequence; member in struct:nouveau_fence
H A Dnouveau_fence.c102 screen->fence.emit(&screen->base, &fence->sequence);
141 u32 sequence = screen->fence.update(&screen->base); local
143 if (screen->fence.sequence_ack == sequence)
145 screen->fence.sequence_ack = sequence;
149 sequence = fence->sequence;
156 if (sequence == screen->fence.sequence_ack)
214 fence->sequence,
215 screen->fence.sequence_ack, screen->fence.sequence);
H A Dnouveau_screen.h34 u32 sequence; member in struct:nouveau_screen::__anon14557
36 void (*emit)(struct pipe_screen *, u32 *sequence);
/external/google-tv-pairing-protocol/cpp/tests/polo/pairing/
H A Dclientpairingsessiontest.cc74 InSequence sequence; local
100 InSequence sequence; local
114 InSequence sequence; local
129 InSequence sequence; local
143 InSequence sequence; local
H A Dpairingsessiontest.cc96 InSequence sequence; local
136 InSequence sequence; local
150 InSequence sequence; local
190 InSequence sequence; local
220 InSequence sequence; local
H A Dserverpairingsessiontest.cc69 InSequence sequence; local
91 InSequence sequence; local
99 InSequence sequence; local
109 InSequence sequence; local
124 InSequence sequence; local
/external/google-tv-pairing-protocol/cpp/tests/polo/wire/protobuf/
H A Dprotobufwireadaptertest.cc118 InSequence sequence; local
125 InSequence sequence; local
150 InSequence sequence; local
168 InSequence sequence; local
218 InSequence sequence; local
239 InSequence sequence; local
258 InSequence sequence; local
283 InSequence sequence; local
308 InSequence sequence; local
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUnicodeSetSpanner.java111 * Returns the number of matching characters found in a character sequence,
114 * @param sequence
115 * the sequence to count characters in
118 public int countIn(CharSequence sequence) { argument
119 return countIn(sequence, CountMethod.MIN_ELEMENTS, SpanCondition.SIMPLE);
123 * Returns the number of matching characters found in a character sequence, using SpanCondition.SIMPLE.
125 * @param sequence
126 * the sequence to count characters in
131 public int countIn(CharSequence sequence, CountMethod countMethod) { argument
132 return countIn(sequence, countMetho
148 countIn(CharSequence sequence, CountMethod countMethod, SpanCondition spanCondition) argument
181 deleteFrom(CharSequence sequence) argument
194 deleteFrom(CharSequence sequence, SpanCondition spanCondition) argument
208 replaceFrom(CharSequence sequence, CharSequence replacement) argument
224 replaceFrom(CharSequence sequence, CharSequence replacement, CountMethod countMethod) argument
242 replaceFrom(CharSequence sequence, CharSequence replacement, CountMethod countMethod, SpanCondition spanCondition) argument
314 trim(CharSequence sequence) argument
336 trim(CharSequence sequence, TrimOption trimOption) argument
360 trim(CharSequence sequence, TrimOption trimOption, SpanCondition spanCondition) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeSetSpanner.java126 * Returns the number of matching characters found in a character sequence,
129 * @param sequence
130 * the sequence to count characters in
135 public int countIn(CharSequence sequence) { argument
136 return countIn(sequence, CountMethod.MIN_ELEMENTS, SpanCondition.SIMPLE);
140 * Returns the number of matching characters found in a character sequence, using SpanCondition.SIMPLE.
142 * @param sequence
143 * the sequence to count characters in
150 public int countIn(CharSequence sequence, CountMethod countMethod) { argument
151 return countIn(sequence, countMetho
169 countIn(CharSequence sequence, CountMethod countMethod, SpanCondition spanCondition) argument
204 deleteFrom(CharSequence sequence) argument
219 deleteFrom(CharSequence sequence, SpanCondition spanCondition) argument
235 replaceFrom(CharSequence sequence, CharSequence replacement) argument
253 replaceFrom(CharSequence sequence, CharSequence replacement, CountMethod countMethod) argument
273 replaceFrom(CharSequence sequence, CharSequence replacement, CountMethod countMethod, SpanCondition spanCondition) argument
355 trim(CharSequence sequence) argument
379 trim(CharSequence sequence, TrimOption trimOption) argument
405 trim(CharSequence sequence, TrimOption trimOption, SpanCondition spanCondition) argument
[all...]
/external/objenesis/main/src/main/java/org/objenesis/instantiator/basic/
H A DObjectInputStreamInstantiator.java49 private int sequence; field in class:ObjectInputStreamInstantiator.MockStream
85 this.sequence = 0;
118 sequence = NEXT[sequence];
119 data = buffers[sequence];
/external/strace/mpers-m32/
H A Dstruct_v4l2_buffer.h23 uint32_t sequence; member in struct:__anon17704

Completed in 533 milliseconds

12345678