| /external/guava/guava/src/com/google/common/base/ | 
| CharMatcher.java | 223         @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.length() == 0
 [all...]
 | 
| /external/webkit/Source/WebCore/platform/text/ | 
| TextCodecUTF8.cpp | 88 static inline int decodeNonASCIISequence(const uint8_t* sequence, unsigned length) 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[0] <= 0xEF)
 [all...]
 | 
| /external/llvm/bindings/python/llvm/tests/ | 
| test_disassembler.py | 10         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))
 
 | 
| /external/skia/src/animator/ | 
| SkSnapshot.h | 25     SkBool sequence;  member in class:SkSnapshot 
 | 
| SkSnapshot.cpp | 22     SK_MEMBER(sequence, Boolean), 34     sequence    = false;
 46     if (sequence) {
 53             sequence = false;
 
 | 
| /external/kernel-headers/original/linux/ | 
| seqlock.h | 22  * to increment the sequence variables because an interrupt routine could 33 	unsigned sequence;  member in struct:__anon8120
 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...]
 | 
| /libcore/luni/src/main/java/java/nio/ | 
| CharSequenceAdapter.java | 23  * This class wraps a char sequence to be a char buffer. 27  * <li>Char sequence based buffer is always readonly.</li>
 35         CharSequenceAdapter buf = new CharSequenceAdapter(other.sequence);
 42     final CharSequence sequence;  field in class:CharSequenceAdapter
 46         sequence = chseq;
 69         return sequence.charAt(position++);
 75         return sequence.charAt(index);
 85         sequence.toString().getChars(position, newPosition, dst, dstOffset);
 139         return new CharSequenceAdapter(sequence.subSequence(position, limit));
 
 | 
| /external/dbus/dbus/ | 
| dbus-marshal-byteswap-util.c | 34   int sequence;  local 44   sequence = 0;
 45   while (dbus_internal_do_not_use_generate_bodies (sequence,
 86       ++sequence;
 93           sequence, byte_order, opposite_order);
 
 | 
| /frameworks/base/core/java/com/android/internal/view/ | 
| InputBindResult.java | 41      * Sequence number of this binding. 43     public final int sequence;  field in class:InputBindResult
 48         sequence = _sequence;
 54         sequence = source.readInt();
 60                 + " #" + sequence + "}";
 72         dest.writeInt(sequence);
 
 | 
| IInputMethodClient.aidl | 28     void onUnbindMethod(int sequence); 
 | 
| /frameworks/support/volley/tests/src/com/android/volley/ | 
| RequestTest.java | 33         int sequence = 0;  local 35         low.setSequence(sequence++);
 37         low2.setSequence(sequence++);
 39         high.setSequence(sequence++);
 41         immediate.setSequence(sequence++);
 
 | 
| /external/webkit/Source/WebCore/editing/ | 
| SpellChecker.h | 48     bool isValid(int sequence) const; 51     void didCheck(int sequence, const Vector<TextCheckingResult>&);
 
 | 
| /external/llvm/include/llvm/ADT/ | 
| PriorityQueue.h | 26          class Sequence = std::vector<T>, 27          class Compare = std::less<typename Sequence::value_type> >
 28 class PriorityQueue : public std::priority_queue<T, Sequence, Compare> {
 31                          const Sequence &sequence = Sequence())
 32     : std::priority_queue<T, Sequence, Compare>(compare, sequence)
 38                 const Sequence &sequence = Sequence()
 [all...]
 | 
| /frameworks/support/volley/src/com/android/volley/ | 
| ResponseDelivery.java | 37      * Suppress delivery of responses with a sequence number less than the given one. 41     public void discardBefore(int sequence);
 
 | 
| /external/bluetooth/glib/tests/ | 
| sequence-test.c | 100   GSequence *	sequence;  member in struct:SequenceInfo 110 void g_sequence_check (GSequence *sequence);
 131   g_sequence_check (info->sequence);
 133   if (g_sequence_get_length (info->sequence) != info->n_items)
 135 	     g_sequence_get_length (info->sequence), info->n_items);
 137   g_assert (g_sequence_get_length (info->sequence) == info->n_items);
 139   iter = g_sequence_get_begin_iter (info->sequence);
 142   while (iter != g_sequence_get_end_iter (info->sequence))
 155   g_assert (g_sequence_get_length (info->sequence) == info->n_items);
 305   g_assert (length == g_sequence_get_length (seq->sequence));
 [all...]
 | 
| /external/v8/test/mjsunit/regress/ | 
| regress-931.js | 30 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);
 
 | 
| regress-1114040.js | 29   var sequence = ""; 36     sequence += a;
 38   return sequence;
 43   var sequence = "";
 50     sequence += a;
 52   return sequence;
 
 | 
| /frameworks/base/core/java/android/view/textservice/ | 
| SuggestionsInfo.java | 68      * @param sequence the cookie of the input TextInfo 71             int suggestionsAttributes, String[] suggestions, int cookie, int sequence) {
 81         mSequence = sequence;
 108      * Set the cookie and the sequence of SuggestionsInfo which are set to TextInfo from a client
 111      * @param sequence the cookie of an input TextInfo
 113     public void setCookieAndSequence(int cookie, int sequence) {
 115         mSequence = sequence;
 126      * @return the sequence which may be set by a client application
 
 | 
| /external/openssl/crypto/pkcs12/ | 
| p12_crpt.c | 80 	    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/ | 
| net_chan.c | 33 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 = MSG_ReadLong ()
 [all...]
 | 
| /external/webkit/Source/JavaScriptCore/wtf/unicode/ | 
| UTF8.cpp | 60 int decodeUTF8Sequence(const char* sequence) 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, unsigned length
 [all...]
 | 
| /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ | 
| ExplicitTest.java | 47     private static ASN1SequenceOf sequence = new ASN1SequenceOf(ASN1Boolean  field in class:ExplicitTest 142                                 sequence) },
 149                                 sequence) },
 156                                 5, sequence) },
 163                                 5, sequence) },
 170                                 sequence) } };
 
 | 
| ImplicitTest.java | 49     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/ | 
| emp_ematch.l | 91 <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/ | 
| IntermTraverse.cpp | 144 			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())
 
 |