/external/llvm/lib/Target/AArch64/ |
AArch64RegisterInfo.td | 68 (add (sequence "W%u", 0, 30), WZR)> { 72 (add (sequence "X%u", 0, 30), XZR)> { 76 (sequence "W%u", 0, 30)> { 80 (sequence "X%u", 0, 30)> { 87 (add (sequence "X%u", 0, 7), 88 (sequence "X%u", 9, 18))> { 95 (add (sequence "W%u", 0, 30), WSP)> { 99 (add (sequence "X%u", 0, 30), XSP)> { 141 (sequence "B%u", 0, 31)> { 145 (sequence "H%u", 0, 31)> [all...] |
/external/chromium_org/content/browser/ |
histogram_synchronizer.h | 40 // of requests with a sequence number. When an update arrives we can ignore it 42 // sequence number. 49 // reserved sequence number, different from any sequence number that might be 50 // specified by a browser request. Since this sequence number can't match an 51 // outstanding sequence number, the pickled data is accepted into the browser, 85 // Establish a new sequence number, and use it to notify all processes 103 // for one less histogram data from child process for the given sequence 123 // Gets a new sequence number to be sent to processes from browser process. 140 // All sequence numbers used are non-negative [all...] |
/external/chromium_org/third_party/libva/va/ |
va_enc_mpeg2.h | 58 * \brief Packed Sequence Parameter Set (SPS). 75 * \brief Sequence parameter for MPEG-2 encoding 80 * If packed sequence headers mode is used, i.e. if the encoding 112 * \brief Initial bitrate set for this sequence in CBR or VBR modes. 115 * sequence if CBR or VBR mode is used, i.e. if the encoder 138 /** \brief Same as the element in Sequence extension() */ 140 /** \brief Same as the element in Sequence extension() */ 142 /** \brief Same as the element in Sequence extension() */ 144 /** \brief Same as the element in Sequence extension() */ 146 /** \brief Same as the element in Sequence extension() * [all...] |
/external/chromium_org/third_party/re2/re2/testing/ |
regexp_generator.cc | 8 // The regexp generator first generates a sequence of commands in a simple 14 // For example, the command sequence 20 // Then RunPostfix turns each sequence into a regular expression 89 // Each sequence is handed off to RunPostfix to generate a regular expression. 91 // post: the current postfix sequence 93 // the sequence 94 // ops: the number of operators used in the sequence 95 // atoms: the number of atoms used in the sequence 135 // Generates a random postfix command sequence. 136 // Stops and returns true once a single sequence has been generated [all...] |
/external/regex-re2/re2/testing/ |
regexp_generator.cc | 8 // The regexp generator first generates a sequence of commands in a simple 14 // For example, the command sequence 20 // Then RunPostfix turns each sequence into a regular expression 89 // Each sequence is handed off to RunPostfix to generate a regular expression. 91 // post: the current postfix sequence 93 // the sequence 94 // ops: the number of operators used in the sequence 95 // atoms: the number of atoms used in the sequence 135 // Generates a random postfix command sequence. 136 // Stops and returns true once a single sequence has been generated [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
InboundSmsTracker.java | 89 * Create a tracker for a multi-part SMS. Sequence numbers start at 1 for 3GPP and regular 90 * concatenated 3GPP2 messages, but CDMA WAP push sequence numbers start at 0. The caller 91 * will subtract 1 if necessary so that the sequence number is always 0-based. When loading 92 * and saving to the raw table, the sequence number is adjusted if necessary for backwards 101 * @param sequenceNumber the sequence number of this segment (0-based) 162 // GSM sequence numbers start at 1; CDMA WDP datagram sequence numbers start at 0 167 throw new IllegalArgumentException("invalid PDU sequence " + mSequenceNumber 201 values.put("sequence", mSequenceNumber); 271 * Sequence numbers for concatenated messages start at 1. The exception is CDMA WAP PD [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
callback.c | 20 ** Invoke the 'collation needed' callback to request a collation sequence 70 ** or substituting a collation sequence of a different encoding when the 71 ** requested collation sequence is not available in the desired encoding. 74 ** collation sequence with name zName, length nName. 76 ** The return value is either the collation sequence to be used in database 78 ** sequence can be found. 84 u8 enc, /* The desired encoding for the collating sequence */ 85 CollSeq *pColl, /* Collating sequence with native encoding, or NULL */ 86 const char *zName /* Collating sequence name */ 95 /* No collation sequence of this type for this encoding is registered [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
RSAPublicKey.java | 56 throw new IllegalArgumentException("Bad sequence size: " 79 * RSAPublicKey ::= SEQUENCE {
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
AttCertValidityPeriod.java | 36 throw new IllegalArgumentException("Bad sequence size: " 69 * AttCertValidityPeriod ::= SEQUENCE {
|
Attribute.java | 45 throw new IllegalArgumentException("Bad sequence size: " + seq.size()); 78 * Attribute ::= SEQUENCE {
|
AttributeCertificate.java | 50 throw new IllegalArgumentException("Bad sequence size: " 77 * AttributeCertificate ::= SEQUENCE {
|
/external/chromium_org/base/ |
atomic_sequence_num.h | 19 // data section (.data in ELF). If you want to allocate an atomic sequence 42 // sequence number in the global scope.
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/ |
utilities.js | 116 * Runs a test defined as either a sequence or a function. 187 * Tests how a new calculator controller handles a sequence of numbers, 191 * Within the sequence string, expected values must be specified as arrays of 215 * Expected value array must be specified just after the sequence element 270 testSequence_: function(name, sequence) { 273 var elements = this.parseSequence_(sequence); 292 parseSequence_: function(sequence) { 296 // Massage the sequence into a JSON array string, so '2 + 2 = [4]' becomes: 297 sequence = sequence.replace(ATOMS, ',$1$2,'); // ',2, ,+, ,2, ,=, [,4,] [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
host_file_system_iterator.py | 16 '''Iterates through a sequence of file systems defined by |get_next| until 17 |callback| returns False, or until the end of the sequence of file systems
|
/external/chromium_org/content/child/service_worker/ |
web_service_worker_provider_impl.cc | 23 static base::StaticAtomicSequenceNumber sequence; local 24 return sequence.GetNext() + 1; // We want to start at 1.
|
/external/chromium_org/content/public/browser/ |
browser_shutdown.h | 16 // This causes the shutdown sequence embodied by 19 // message loop finished, all threads are stopped in sequence and then
|
/external/chromium_org/net/quic/ |
quic_received_packet_manager.h | 109 // process any packets with sequence number before |least_unacked| that it 116 // Map of received sequence numbers to their corresponding entropy. 125 // The largest sequence number cleared by RecalculateEntropyHash. 131 // Largest sequence number that the peer has observed. Mostly received, 134 // Least sequence number which the peer is still waiting for. 136 // Least sequence number of the the packet sent by the peer for which it 143 // The time we received the largest_observed sequence number, or zero if 144 // no sequence numbers have been received since UpdateReceivedPacketInfo.
|
/external/chromium_org/remoting/codec/ |
codec_test.h | 19 // Generate test data and test the encoder for a regular encoding sequence. 20 // This will test encoder test and the sequence of messages sent.
|
/external/chromium_org/remoting/host/ |
heartbeat_sender.h | 38 // rem:sequence-id="456" 44 // The sequence-id attribute of the heartbeat is a zero-based incrementally 48 // heartbeat, with the correct sequence-id, and increment the sequence-id in 52 // the sequence-id, separated by one space. For example, for the heartbeat 71 // If the heartbeat's sequence-id was incorrect, the Bot sends a result 77 // <rem:expected-sequence-id>654</rem:expected-sequence-id>
|
/external/chromium_org/remoting/host/win/ |
session_desktop_environment.h | 33 // Used to ask the daemon to inject Secure Attention Sequence. 54 // Used to ask the daemon to inject Secure Attention Sequence.
|
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/ |
MIDIAccess.idl | 35 sequence<MIDIInput> inputs(); 36 sequence<MIDIOutput> outputs();
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
dadrcoll.cpp | 89 // Parses the sequence to be tested 132 errln("Quote in sequence not closed!"); 241 UnicodeString sequence = currentCase->getString("sequence", status); local 243 processSequence(col, sequence); 245 processSequence(clone, sequence); 261 DataDrivenCollatorTest::processSequence(Collator* col, const UnicodeString &sequence) { 272 setTestSequence(sequence, *target);
|
escoll.h | 10 * sorting sequence. The Spanish modern sorting sequence does not sort
|
/external/chromium_org/third_party/sqlite/src/ext/icu/ |
README.txt | 19 3.3 Collation Sequence Security Issue 72 identifying the collation sequence to ICU, and the name of the 73 SQLite collation sequence to create. For example, to create an 74 SQLite collation sequence named "turkish" using Turkish language 84 as collation sequence identifiers in SQL statements: 155 3.3 Collation Sequence Security Issue 158 are sorted according to the collation sequence indicated by the 159 SQL schema. Changing the definition of a collation sequence after
|
/external/icu4c/test/intltest/ |
dadrcoll.cpp | 89 // Parses the sequence to be tested 132 errln("Quote in sequence not closed!"); 241 UnicodeString sequence = currentCase->getString("sequence", status); local 243 processSequence(col, sequence); 245 processSequence(clone, sequence); 261 DataDrivenCollatorTest::processSequence(Collator* col, const UnicodeString &sequence) { 272 setTestSequence(sequence, *target);
|