HomeSort by relevance Sort by last modified time
    Searched defs:Sequence (Results 26 - 50 of 118) sorted by null

12 3 4 5

  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 143 /// first byte after the end of a sequence of target machine
159 struct Sequence {
160 Sequence();
162 /// Sequence describes instructions at address range [LowPC, HighPC)
172 static bool orderByLowPC(const Sequence &LHS, const Sequence &RHS) {
191 void appendSequence(const DWARFDebugLine::Sequence &S) {
225 using SequenceVector = std::vector<Sequence>;
233 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &Seq,
254 struct Sequence Sequence
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 143 /// first byte after the end of a sequence of target machine
159 struct Sequence {
160 Sequence();
162 /// Sequence describes instructions at address range [LowPC, HighPC)
172 static bool orderByLowPC(const Sequence &LHS, const Sequence &RHS) {
191 void appendSequence(const DWARFDebugLine::Sequence &S) {
225 using SequenceVector = std::vector<Sequence>;
233 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &Seq,
254 struct Sequence Sequence
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 143 /// first byte after the end of a sequence of target machine
159 struct Sequence {
160 Sequence();
162 /// Sequence describes instructions at address range [LowPC, HighPC)
172 static bool orderByLowPC(const Sequence &LHS, const Sequence &RHS) {
191 void appendSequence(const DWARFDebugLine::Sequence &S) {
225 using SequenceVector = std::vector<Sequence>;
233 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &Seq,
254 struct Sequence Sequence
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 143 /// first byte after the end of a sequence of target machine
159 struct Sequence {
160 Sequence();
162 /// Sequence describes instructions at address range [LowPC, HighPC)
172 static bool orderByLowPC(const Sequence &LHS, const Sequence &RHS) {
191 void appendSequence(const DWARFDebugLine::Sequence &S) {
225 using SequenceVector = std::vector<Sequence>;
233 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &Seq,
254 struct Sequence Sequence
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 143 /// first byte after the end of a sequence of target machine
159 struct Sequence {
160 Sequence();
162 /// Sequence describes instructions at address range [LowPC, HighPC)
172 static bool orderByLowPC(const Sequence &LHS, const Sequence &RHS) {
191 void appendSequence(const DWARFDebugLine::Sequence &S) {
225 using SequenceVector = std::vector<Sequence>;
233 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &Seq,
254 struct Sequence Sequence
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 143 /// first byte after the end of a sequence of target machine
159 struct Sequence {
160 Sequence();
162 /// Sequence describes instructions at address range [LowPC, HighPC)
172 static bool orderByLowPC(const Sequence &LHS, const Sequence &RHS) {
191 void appendSequence(const DWARFDebugLine::Sequence &S) {
225 using SequenceVector = std::vector<Sequence>;
233 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &Seq,
254 struct Sequence Sequence
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
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,
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
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,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
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,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
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,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
_abcoll.py 19 "Sequence", "MutableSequence",
587 class Sequence(Sized, Iterable, Container):
588 """All the operations on a read-only sequence.
631 Sequence.register(tuple)
632 Sequence.register(basestring)
633 Sequence.register(buffer)
634 Sequence.register(xrange)
637 class MutableSequence(Sequence):
639 """All the operations on a read-only sequence.
660 'S.append(object) -- append object to the end of the sequence'
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_abcoll.py 19 "Sequence", "MutableSequence",
517 class Sequence(Sized, Iterable, Container):
518 """All the operations on a read-only sequence.
557 Sequence.register(tuple)
558 Sequence.register(basestring)
559 Sequence.register(buffer)
560 Sequence.register(xrange)
563 class MutableSequence(Sequence):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
string_tests.py 9 class Sequence:
14 class BadSeq1(Sequence):
17 class BadSeq2(Sequence):
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 132 // first byte after the end of a sequence of target machine
148 struct Sequence {
149 // Sequence describes instructions at address range [LowPC, HighPC)
157 Sequence();
160 static bool orderByLowPC(const Sequence& LHS, const Sequence& RHS) {
180 void appendSequence(const DWARFDebugLine::Sequence &S) {
213 typedef std::vector<Sequence> SequenceVector;
219 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &seq,
240 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...]
  /external/python/cpython2/Lib/
_abcoll.py 19 "Sequence", "MutableSequence",
590 class Sequence(Sized, Iterable, Container):
591 """All the operations on a read-only sequence.
634 Sequence.register(tuple)
635 Sequence.register(basestring)
636 Sequence.register(buffer)
637 Sequence.register(xrange)
640 class MutableSequence(Sequence):
642 """All the operations on a read-only sequence.
663 'S.append(object) -- append object to the end of the sequence'
    [all...]
  /external/python/cpython2/Lib/test/
string_tests.py 9 class Sequence:
14 class BadSeq1(Sequence):
17 class BadSeq2(Sequence):
    [all...]
  /external/python/cpython3/Lib/test/
string_tests.py 9 class Sequence:
14 class BadSeq1(Sequence):
18 class BadSeq2(Sequence):
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 138 // first byte after the end of a sequence of target machine
154 struct Sequence {
155 Sequence();
157 // Sequence describes instructions at address range [LowPC, HighPC)
167 static bool orderByLowPC(const Sequence& LHS, const Sequence& RHS) {
190 void appendSequence(const DWARFDebugLine::Sequence &S) {
225 typedef std::vector<Sequence> SequenceVector;
231 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &seq,
252 struct Sequence Sequence
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 139 /// first byte after the end of a sequence of target machine
155 struct Sequence {
156 Sequence();
158 /// Sequence describes instructions at address range [LowPC, HighPC)
168 static bool orderByLowPC(const Sequence &LHS, const Sequence &RHS) {
187 void appendSequence(const DWARFDebugLine::Sequence &S) {
222 typedef std::vector<Sequence> SequenceVector;
228 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &Seq,
249 struct Sequence Sequence
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 139 /// first byte after the end of a sequence of target machine
155 struct Sequence {
156 Sequence();
158 /// Sequence describes instructions at address range [LowPC, HighPC)
168 static bool orderByLowPC(const Sequence &LHS, const Sequence &RHS) {
187 void appendSequence(const DWARFDebugLine::Sequence &S) {
222 typedef std::vector<Sequence> SequenceVector;
228 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &Seq,
249 struct Sequence Sequence
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 138 // first byte after the end of a sequence of target machine
154 struct Sequence {
155 Sequence();
157 // Sequence describes instructions at address range [LowPC, HighPC)
167 static bool orderByLowPC(const Sequence& LHS, const Sequence& RHS) {
190 void appendSequence(const DWARFDebugLine::Sequence &S) {
225 typedef std::vector<Sequence> SequenceVector;
231 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &seq,
252 struct Sequence Sequence
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 139 /// first byte after the end of a sequence of target machine
155 struct Sequence {
156 Sequence();
158 /// Sequence describes instructions at address range [LowPC, HighPC)
168 static bool orderByLowPC(const Sequence &LHS, const Sequence &RHS) {
187 void appendSequence(const DWARFDebugLine::Sequence &S) {
222 typedef std::vector<Sequence> SequenceVector;
228 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &Seq,
249 struct Sequence Sequence
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 139 /// first byte after the end of a sequence of target machine
155 struct Sequence {
156 Sequence();
158 /// Sequence describes instructions at address range [LowPC, HighPC)
168 static bool orderByLowPC(const Sequence &LHS, const Sequence &RHS) {
187 void appendSequence(const DWARFDebugLine::Sequence &S) {
222 typedef std::vector<Sequence> SequenceVector;
228 uint32_t findRowInSeq(const DWARFDebugLine::Sequence &Seq,
249 struct Sequence Sequence
    [all...]
  /prebuilts/gdb/darwin-x86/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...]

Completed in 1394 milliseconds

12 3 4 5