Searched refs:sequence (Results 1 - 25 of 168) sorted by relevance

1234567

/external/v8/test/mjsunit/regress/
H A Dregress-931.js30 var sequence = ''; variable
35 function first() { sequence += "1"; return o; }
36 function second() { sequence += "2"; return "f"; }
37 function third() { sequence += "3"; return 3; }
38 function fourth() { sequence += "4"; return 4; }
42 assertEquals("1234", sequence);
44 function second_prime() { sequence += "2'"; return 2; }
48 assertEquals("123412'34", sequence);
H A Dregress-1114040.js29 var sequence = "";
36 sequence += a;
38 return sequence;
43 var sequence = "";
50 sequence += a;
52 return sequence;
/external/guava/guava/src/com/google/common/base/
H A DCharMatcher.java223 @Override public int indexIn(CharSequence sequence) {
224 return (sequence.length() == 0) ? -1 : 0;
227 @Override public int indexIn(CharSequence sequence, int start) {
228 int length = sequence.length();
233 @Override public int lastIndexIn(CharSequence sequence) {
234 return sequence.length() - 1;
237 @Override public boolean matchesAllOf(CharSequence sequence) {
238 checkNotNull(sequence);
242 @Override public boolean matchesNoneOf(CharSequence sequence) {
243 return sequence
440 anyOf(final CharSequence sequence) argument
485 noneOf(CharSequence sequence) argument
738 matchesAnyOf(CharSequence sequence) argument
752 matchesAllOf(CharSequence sequence) argument
772 matchesNoneOf(CharSequence sequence) argument
788 indexIn(CharSequence sequence) argument
813 indexIn(CharSequence sequence, int start) argument
834 lastIndexIn(CharSequence sequence) argument
846 countIn(CharSequence sequence) argument
865 removeFrom(CharSequence sequence) argument
902 retainFrom(CharSequence sequence) argument
924 replaceFrom(CharSequence sequence, char replacement) argument
957 replaceFrom(CharSequence sequence, CharSequence replacement) argument
1002 trimFrom(CharSequence sequence) argument
1030 trimLeadingFrom(CharSequence sequence) argument
1052 trimTrailingFrom(CharSequence sequence) argument
1084 collapseFrom(CharSequence sequence, char replacement) argument
1116 trimAndCollapseFrom(CharSequence sequence, char replacement) argument
[all...]
H A DSplitter.java296 * input sequence consists of nothing but separators).
364 * Splits {@code sequence} into string components and makes them available
367 * @param sequence the sequence of characters to split
370 public Iterable<String> split(final CharSequence sequence) { argument
371 checkNotNull(sequence);
375 return spliterator(sequence);
380 private Iterator<String> spliterator(CharSequence sequence) { argument
381 return strategy.iterator(this, sequence);
429 * Splits {@code sequence} int
443 split(CharSequence sequence) argument
[all...]
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecUTF8.cpp88 static inline int decodeNonASCIISequence(const uint8_t* sequence, unsigned length) argument
90 ASSERT(!isASCII(sequence[0]));
92 ASSERT(sequence[0] <= 0xDF);
93 if (sequence[0] < 0xC2)
95 if (sequence[1] < 0x80 || sequence[1] > 0xBF)
97 return ((sequence[0] << 6) + sequence[1]) - 0x00003080;
100 ASSERT(sequence[0] >= 0xE0 && sequence[
[all...]
/external/llvm/bindings/python/llvm/tests/
H A Dtest_disassembler.py10 sequence = '\x67\xe3\x81' # jcxz -127
15 count, s = disassembler.get_instruction(sequence)
20 sequence = '\x67\xe3\x81\x01\xc7' # jcxz -127; addl %eax, %edi
24 instructions = list(disassembler.get_instructions(sequence))
31 sequence = '\x10\x40\x2d\xe9'
36 count, s = disassembler.get_instruction(sequence)
/external/kernel-headers/original/linux/
H A Dseqlock.h22 * to increment the sequence variables because an interrupt routine could
33 unsigned sequence; member in struct:__anon7958
60 ++sl->sequence;
67 sl->sequence++;
76 ++sl->sequence;
85 unsigned ret = sl->sequence;
93 * If sequence value changed
101 return (iv & 1) | (sl->sequence ^ iv);
106 * Version using sequence counter only.
113 unsigned sequence; member in struct:seqcount
[all...]
/external/webkit/Source/WebCore/editing/
H A DSpellChecker.h48 bool isValid(int sequence) const;
51 void didCheck(int sequence, const Vector<TextCheckingResult>&);
/external/llvm/include/llvm/ADT/
H A DPriorityQueue.h31 const Sequence &sequence = Sequence())
32 : std::priority_queue<T, Sequence, Compare>(compare, sequence)
38 const Sequence &sequence = Sequence())
39 : std::priority_queue<T, Sequence, Compare>(begin, end, compare, sequence)
/external/skia/legacy/src/animator/
H A DSkSnapshot.cpp22 SK_MEMBER(sequence, Boolean),
34 sequence = false;
46 if (sequence) {
53 sequence = false;
H A DSkSnapshot.h25 SkBool sequence; member in class:SkSnapshot
/external/skia/src/animator/
H A DSkSnapshot.cpp22 SK_MEMBER(sequence, Boolean),
34 sequence = false;
46 if (sequence) {
53 sequence = false;
H A DSkSnapshot.h25 SkBool sequence; member in class:SkSnapshot
/external/webkit/Source/JavaScriptCore/wtf/unicode/
H A DUTF8.cpp60 int decodeUTF8Sequence(const char* sequence) argument
63 const unsigned char b0 = sequence[0];
69 const unsigned char b1 = sequence[1];
79 const unsigned char b2 = sequence[2];
92 const unsigned char b3 = sequence[3];
108 const unsigned char b4 = sequence[4];
123 // as many entries in this table as there are UTF-8 sequence types.
124 // (I.e., one byte sequence, two byte... etc.). Remember that sequencs
235 // in a UTF-8 sequence.
239 static inline UChar32 readUTF8Sequence(const char*& sequence, unsigne argument
[all...]
/external/openssl/crypto/pkcs12/
H A Dp12_crpt.c80 param->value.sequence == NULL) {
85 pbuf = param->value.sequence->data;
86 if (!(pbe = d2i_PBEPARAM(NULL, &pbuf, param->value.sequence->length))) {
/external/quake/quake/src/QW/client/
H A Dnet_chan.c33 31 sequence
35 31 acknowledge sequence
40 local side detects that it has been dropped by seeing a sequence acknowledge
41 higher thatn the last reliable sequence, but without the correct evon/odd
48 if the sequence number is -1, the packet should be handled without a netcon
63 Illogical packet sequence numbers cause the packet to be dropped, but do
123 MSG_WriteLong (&send, -1); // -1 sequence means out of band
326 unsigned sequence, sequence_ack; local
340 // get sequence numbers
342 sequence
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
H A DExplicitTest.java47 private static ASN1SequenceOf sequence = new ASN1SequenceOf(ASN1Boolean field in class:ExplicitTest
142 sequence) },
149 sequence) },
156 5, sequence) },
163 5, sequence) },
170 sequence) } };
H A DImplicitTest.java49 private static ASN1SequenceOf sequence = new ASN1SequenceOf(ASN1Boolean field in class:ImplicitTest
137 new ASN1Implicit(ASN1Constants.CLASS_UNIVERSAL, 5, sequence) },
144 sequence) },
151 sequence) },
158 sequence) },
162 new ASN1Implicit(ASN1Constants.CLASS_PRIVATE, 5, sequence) } };
/external/iproute2/tc/
H A Demp_ematch.l91 <lexstr>\\[0-7]{1,3} { /* octal escape sequence */
96 fprintf(stderr, "error: octal escape sequence" \
104 fprintf(stderr, "error: invalid octale escape sequence\n");
115 "sequence out of range\n");
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DIntermTraverse.cpp144 for(TIntermSequence::reverse_iterator sit = sequence.rbegin(); sit != sequence.rend(); sit++)
150 if(*sit != sequence.front())
159 for(TIntermSequence::iterator sit = sequence.begin(); sit != sequence.end(); sit++)
165 if(*sit != sequence.back())
H A DVersionGLSL.cpp74 // We need to visit sequence children to get to global or inner scope.
78 const TIntermSequence& sequence = node->getSequence(); local
79 TQualifier qualifier = sequence.front()->getAsTyped()->getQualifier();
/external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
H A DMockSpdyPeer.java108 if (nextOutFrame != null && nextOutFrame.sequence == i) {
150 private final int sequence; field in class:MockSpdyPeer.OutFrame
154 private OutFrame(int sequence, int start, int truncateToLength) { argument
155 this.sequence = sequence;
162 public final int sequence; field in class:MockSpdyPeer.InFrame
176 public InFrame(int sequence, SpdyReader reader) { argument
177 this.sequence = sequence;
/external/valgrind/main/drd/tests/
H A Dtc15_laog_lockdel.stderr.exp5 so a second locking sequence 2 -> 1 should now be OK.
/external/objenesis/main/src/org/objenesis/instantiator/basic/
H A DObjectInputStreamInstantiator.java46 private int sequence; field in class:ObjectInputStreamInstantiator.MockStream
82 this.sequence = 0;
115 sequence = NEXT[sequence];
116 data = buffers[sequence];
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DSplitter.java238 * input sequence consists of nothing but separators).
306 * Splits {@code sequence} into string components and makes them available
309 * @param sequence the sequence of characters to split
312 public Iterable<String> split(final CharSequence sequence) { argument
313 checkNotNull(sequence);
317 return spliterator(sequence);
322 private Iterator<String> spliterator(CharSequence sequence) { argument
323 return strategy.iterator(this, sequence);
371 * Splits {@code sequence} int
385 split(CharSequence sequence) argument
[all...]

Completed in 524 milliseconds

1234567