HomeSort by relevance Sort by last modified time
    Searched defs:Sequence (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium/net/tools/testserver/
asn1der.py 16 SEQUENCE = 0x30
53 def Sequence(values):
54 """Encodes a sequence of other values.
61 return Data(SEQUENCE, ''.join(values))
  /external/chromium_org/chrome/browser/policy/test/
asn1der.py 15 SEQUENCE = 0x30
52 def Sequence(values):
53 """Encodes a sequence of other values.
60 return Data(SEQUENCE, ''.join(values))
  /external/chromium_org/third_party/leveldatabase/src/db/
write_batch.cc 6 // sequence: fixed64
26 // WriteBatch header has an 8-byte sequence number followed by a 4-byte count.
90 SequenceNumber WriteBatchInternal::Sequence(const WriteBatch* b) {
131 inserter.sequence_ = WriteBatchInternal::Sequence(b);
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h 43 std::vector<SUnit*> Sequence;
106 /// in the Sequence member.
111 /// consistent with the Sequence of scheduled instructions.
115 /// according to the order specified in Sequence.
ScheduleDAGFast.cpp 188 Sequence.push_back(SU);
544 Sequence.reserve(SUnits.size());
631 std::reverse(Sequence.begin(), Sequence.end());
654 std::vector<SDNode*> Sequence;
672 Sequence.push_back(N);
760 Sequence.reserve(DAGSize);
774 unsigned NumNodes = Sequence.size();
776 SDNode *N = Sequence[NumNodes-i-1];
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_strop.py 97 self.assertTrue(strop.join(Sequence()) == 'w x y z')
141 # join() now works with any sequence type.
142 class Sequence:
seq_tests.py 15 class Sequence:
16 'Sequence using __getitem__'
23 'Sequence using iterator protocol'
36 'Sequence using iterator protocol defined with a generator'
85 return chain(imap(lambda x:x, iterfunc(IterGen(Sequence(seqn)))))
118 s = "this is also a sequence"
124 for g in (Sequence, IterFunc, IterGen,
string_tests.py 10 class Sequence:
15 class BadSeq1(Sequence):
18 class BadSeq2(Sequence):
    [all...]
test_collections.py 16 from collections import Sequence, MutableSequence
100 # verify that fieldspec can be a non-string sequence
579 self.assertIsInstance(sample(), Sequence)
580 self.assertTrue(issubclass(sample, Sequence))
581 self.assertTrue(issubclass(basestring, Sequence))
582 self.assertIsInstance(range(10), Sequence)
583 self.assertTrue(issubclass(xrange, Sequence))
584 self.assertTrue(issubclass(str, Sequence))
585 self.validate_abstract_methods(Sequence, '__contains__', '__iter__', '__len__',
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_strop.py 97 self.assertTrue(strop.join(Sequence()) == 'w x y z')
141 # join() now works with any sequence type.
142 class Sequence:
seq_tests.py 15 class Sequence:
16 'Sequence using __getitem__'
23 'Sequence using iterator protocol'
36 'Sequence using iterator protocol defined with a generator'
85 return chain(imap(lambda x:x, iterfunc(IterGen(Sequence(seqn)))))
118 s = "this is also a sequence"
124 for g in (Sequence, IterFunc, IterGen,
string_tests.py 10 class Sequence:
15 class BadSeq1(Sequence):
18 class BadSeq2(Sequence):
    [all...]
test_collections.py 16 from collections import Sequence, MutableSequence
100 # verify that fieldspec can be a non-string sequence
579 self.assertIsInstance(sample(), Sequence)
580 self.assertTrue(issubclass(sample, Sequence))
581 self.assertTrue(issubclass(basestring, Sequence))
582 self.assertIsInstance(range(10), Sequence)
583 self.assertTrue(issubclass(xrange, Sequence))
584 self.assertTrue(issubclass(str, Sequence))
585 self.validate_abstract_methods(Sequence, '__contains__', '__iter__', '__len__',
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUIndirectAddressing.cpp 282 MachineInstrBuilder Sequence = BuildMI(MBB, I, MBB.findDebugLoc(I),
300 Sequence.addReg(LiveAddressRegisterMap[Addr]);
301 Sequence.addImm(TII->getRegisterInfo().getIndirectSubReg(Addr));
  /external/llvm/utils/TableGen/
CodeGenSchedule.h 40 /// sequences. TheDef is nonnull for explicit SchedWrites, but Sequence may or
41 /// may not be empty. TheDef is null for inferred sequences, and Sequence must
45 /// or a sequence of writes on one operand.
55 IdxVec Sequence;
70 // added. Note that implicit Reads (from ReadVariant) may have a Sequence
78 HasVariants(false), IsVariadic(false), IsSequence(true), Sequence(Seq) {
79 assert(Sequence.size() > 1 && "implied sequence needs >1 RWs");
85 assert((!IsSequence || !HasVariants) && "Sequence can't have variant");
86 assert((!IsSequence || !Sequence.empty()) && "Sequence should be nonempty")
    [all...]
  /external/llvm/lib/CodeGen/
PostRASchedulerList.cpp 128 std::vector<SUnit*> Sequence;
228 Sequence.clear();
242 /// dumpSchedule - dump the scheduled Sequence.
244 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
245 if (SUnit *SU = Sequence[i])
309 // Schedule each sequence of instructions not interrupted by a label
612 Sequence.push_back(SU);
652 Sequence.reserve(SUnits.size());
722 Sequence.push_back(0); // NULL here means noop
734 for (unsigned i = 0, e = Sequence.size(); i != e; ++i
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.h 122 // first byte after the end of a sequence of target machine
138 struct Sequence {
139 // Sequence describes instructions at address range [LowPC, HighPC)
147 Sequence() { reset(); }
155 static bool orderByLowPC(const Sequence& LHS, const Sequence& RHS) {
168 void appendSequence(const DWARFDebugLine::Sequence &sequence) {
169 Sequences.push_back(sequence);
196 typedef std::vector<Sequence> SequenceVector
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_abcoll.py 19 "Sequence", "MutableSequence",
566 class Sequence(Sized, Iterable, Container):
567 """All the operations on a read-only sequence.
610 Sequence.register(tuple)
611 Sequence.register(basestring)
612 Sequence.register(buffer)
613 Sequence.register(xrange)
616 class MutableSequence(Sequence):
618 """All the operations on a read-only sequence.
639 'S.append(object) -- append object to the end of the sequence'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_abcoll.py 19 "Sequence", "MutableSequence",
566 class Sequence(Sized, Iterable, Container):
567 """All the operations on a read-only sequence.
610 Sequence.register(tuple)
611 Sequence.register(basestring)
612 Sequence.register(buffer)
613 Sequence.register(xrange)
616 class MutableSequence(Sequence):
618 """All the operations on a read-only sequence.
639 'S.append(object) -- append object to the end of the sequence'
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-gsub-table.hh 252 struct Sequence
324 (this+sequence[iter.get_coverage ()]).closure (c);
332 unsigned int count = sequence.len;
334 (this+sequence[i]).collect_glyphs (c);
355 return TRACE_RETURN ((this+sequence[index]).apply (c));
366 if (unlikely (!sequence.serialize (c, num_glyphs))) return TRACE_RETURN (false);
368 if (unlikely (!sequence[i].serialize (c, this).serialize (c,
378 return TRACE_RETURN (coverage.sanitize (c, this) && sequence.sanitize (c, this));
386 OffsetArrayOf<Sequence>
387 sequence; /* Array of Sequence table member in struct:OT::MultipleSubstFormat1
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsub-table.hh 252 struct Sequence
317 (this+sequence[iter.get_coverage ()]).closure (c);
325 unsigned int count = sequence.len;
327 (this+sequence[i]).collect_glyphs (c);
348 return TRACE_RETURN ((this+sequence[index]).apply (c));
359 if (unlikely (!sequence.serialize (c, num_glyphs))) return TRACE_RETURN (false);
361 if (unlikely (!sequence[i].serialize (c, this).serialize (c,
371 return TRACE_RETURN (coverage.sanitize (c, this) && sequence.sanitize (c, this));
379 OffsetArrayOf<Sequence>
380 sequence; /* Array of Sequence table member in struct:OT::MultipleSubstFormat1
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
wbnf.cpp 685 class Sequence : public Pick {
702 virtual ~Sequence(){
890 // combining sequence.
1153 UBool sequence(Pick* &node \/*out*\/){ function in class:Parser
    [all...]
  /external/icu4c/test/intltest/
wbnf.cpp 685 class Sequence : public Pick {
702 virtual ~Sequence(){
890 // combining sequence.
1153 UBool sequence(Pick* &node \/*out*\/){ function in class:Parser
    [all...]
  /external/harfbuzz/src/
harfbuzz-gsub-private.h 92 HB_Sequence* Sequence; /* array of Sequence tables */
95 HB_UShort SequenceCount; /* number of Sequence tables */
163 glyph sequence */
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-gsub-private.h 92 HB_Sequence* Sequence; /* array of Sequence tables */
95 HB_UShort SequenceCount; /* number of Sequence tables */
163 glyph sequence */

Completed in 355 milliseconds

1 2