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

1 2

  /external/chromium_org/chrome/browser/policy/test/
asn1der.py 15 SEQUENCE = 0x30
61 def Sequence(values):
62 """Encodes a sequence of other values.
69 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 189 Sequence.push_back(SU);
545 Sequence.reserve(SUnits.size());
632 std::reverse(Sequence.begin(), Sequence.end());
656 std::vector<SDNode*> Sequence;
674 Sequence.push_back(N);
762 Sequence.reserve(DAGSize);
776 unsigned NumNodes = Sequence.size();
778 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/chromium_org/tools/gn/
command_format.cc 82 void Sequence(SequenceStyle style, const std::vector<PARSENODE*>& list);
213 Sequence(kSequenceStyleBlock, block->statements());
245 Sequence(kSequenceStyleFunctionCall, func_call->args()->contents());
257 Sequence(kSequenceStyleList, list->contents());
282 void Printer::Sequence(SequenceStyle style,
  /external/llvm/lib/CodeGen/
PostRASchedulerList.cpp 125 std::vector<SUnit*> Sequence;
223 Sequence.clear();
237 /// dumpSchedule - dump the scheduled Sequence.
239 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
240 if (SUnit *SU = Sequence[i])
307 // Schedule each sequence of instructions not interrupted by a label
470 Sequence.push_back(SU);
480 /// emitNoop - Add a noop to the current instruction sequence.
484 Sequence.push_back(nullptr); // NULL here means noop
518 Sequence.reserve(SUnits.size())
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.cpp 160 DWARFDebugLine::Sequence::Sequence() {
164 void DWARFDebugLine::Sequence::reset() {
203 Sequence.reset();
207 if (Sequence.Empty) {
208 // Record the beginning of instruction sequence.
209 Sequence.Empty = false;
210 Sequence.LowPC = Row.Address;
211 Sequence.FirstRowIndex = RowNumber;
216 // Record the end of instruction sequence
576 DWARFDebugLine::Sequence sequence; local
    [all...]
DWARFDebugLine.h 124 // first byte after the end of a sequence of target machine
140 struct Sequence {
141 // Sequence describes instructions at address range [LowPC, HighPC)
149 Sequence();
152 static bool orderByLowPC(const Sequence& LHS, const Sequence& RHS) {
169 void appendSequence(const DWARFDebugLine::Sequence &S) {
196 typedef std::vector<Sequence> SequenceVector;
219 struct Sequence Sequence;
    [all...]
  /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...]
  /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
335 (this+sequence[iter.get_coverage ()]).closure (c);
343 unsigned int count = sequence.len;
345 (this+sequence[i]).collect_glyphs (c);
366 return TRACE_RETURN ((this+sequence[index]).apply (c));
377 if (unlikely (!sequence.serialize (c, num_glyphs))) return TRACE_RETURN (false);
379 if (unlikely (!sequence[i].serialize (c, this).serialize (c,
389 return TRACE_RETURN (coverage.sanitize (c, this) && sequence.sanitize (c, this));
397 OffsetArrayOf<Sequence>
398 sequence; /* Array of Sequence table member in struct:OT::MultipleSubstFormat1
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsub-table.hh 252 struct Sequence
335 (this+sequence[iter.get_coverage ()]).closure (c);
343 unsigned int count = sequence.len;
345 (this+sequence[i]).collect_glyphs (c);
366 return TRACE_RETURN ((this+sequence[index]).apply (c));
377 if (unlikely (!sequence.serialize (c, num_glyphs))) return TRACE_RETURN (false);
379 if (unlikely (!sequence[i].serialize (c, this).serialize (c,
389 return TRACE_RETURN (coverage.sanitize (c, this) && sequence.sanitize (c, this));
397 OffsetArrayOf<Sequence>
398 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/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
lcms2_internal.h 878 // Sequence --------------------------------------------------------------------------------------------------------
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 273 /// \enum Sequence
275 /// \brief A sequence of states that a pointer may go through in which an
277 enum Sequence {
287 raw_ostream &operator<<(raw_ostream &OS, const Sequence S)
289 raw_ostream &operator<<(raw_ostream &OS, const Sequence S) {
306 llvm_unreachable("Unknown sequence type.");
310 static Sequence MergeSeqs(Sequence A, Sequence B, bool TopDown) {
319 // Choose the side which is further along in the sequence
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 800 milliseconds

1 2