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

1 2 3 4 5

  /external/autotest/client/cros/cellular/mbim_compliance/sequences/
sequence.py 12 class Sequence(entity.Entity):
17 Run the sequence.
19 @returns The result of the sequence. The type of value returned varies
20 by the sequence type.
23 logging.info('---- Sequence (%s) begin ----', self.name())
25 logging.info('---- Sequence (%s) end ----', self.name())
30 The actual method runs the sequence.
31 Subclasses should override this method to run their own sequence.
  /prebuilts/go/darwin-x86/doc/progs/
eff_sequence.go 13 seq := Sequence{6, 2, -1, 44, 16}
18 type Sequence []int
21 func (s Sequence) Len() int {
24 func (s Sequence) Less(i, j int) bool {
27 func (s Sequence) Swap(i, j int) {
32 func (s Sequence) String() string {
  /prebuilts/go/linux-x86/doc/progs/
eff_sequence.go 13 seq := Sequence{6, 2, -1, 44, 16}
18 type Sequence []int
21 func (s Sequence) Len() int {
24 func (s Sequence) Less(i, j int) bool {
27 func (s Sequence) Swap(i, j int) {
32 func (s Sequence) String() string {
  /external/libchrome/base/task_scheduler/
sequence.h 25 // A Sequence holds slots each containing up to a single Task that must be
28 // In comments below, an "empty Sequence" is a Sequence with no slot.
31 // architecture: Sequence -> Task -> TaskRunner -> Sequence -> ...
32 // This is okay so long as the other owners of Sequence (PriorityQueue and
40 // the caller that the Sequence should be re-enqueued for execution).
43 class BASE_EXPORT Sequence : public RefCountedThreadSafe<Sequence> {
45 Sequence();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h 43 std::vector<SUnit*> Sequence;
101 /// in the Sequence member.
106 /// consistent with the Sequence of scheduled instructions.
110 /// according to the order specified in Sequence.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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,
  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
_typecheck.py 111 class Sequence(_SingleArgumentType):
112 """A typed sequence.
114 A correct type is a sequence where each element has the single provided type.
118 return (isinstance(instance, collections.Sequence)
  /external/tensorflow/tensorflow/python/keras/_impl/keras/utils/
data_utils.py 323 @tf_export('keras.utils.Sequence')
324 class Sequence(object):
325 """Base object for fitting to a sequence of data, such as a dataset.
327 Every `Sequence` must implements the `__getitem__` and the `__len__` methods.
334 `Sequence` are a safer way to do multiprocessing. This structure guarantees
349 class CIFAR10Sequence(Sequence):
375 index: position of the batch in the Sequence.
384 """Number of batch in the Sequence.
387 The number of batches in the Sequence.
404 """Get the value from the Sequence `uid` at index `i`
    [all...]
  /prebuilts/gdb/darwin-x86/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:
  /prebuilts/gdb/linux-x86/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:
  /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:
  /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:
  /external/kotlinc/lib/
kotlin-stdlib-jdk8.jar 
kotlin-stdlib-jre8.jar 
  /external/python/cpython2/Lib/test/
test_strop.py 98 self.assertTrue(strop.join(Sequence()) == 'w x y z')
152 # join() now works with any sequence type.
153 class Sequence:
seq_tests.py 16 class Sequence:
17 'Sequence using __getitem__'
24 'Sequence using iterator protocol'
37 'Sequence using iterator protocol defined with a generator'
86 return chain(imap(lambda x:x, iterfunc(IterGen(Sequence(seqn)))))
127 s = "this is also a sequence"
133 for g in (Sequence, IterFunc, IterGen,
  /external/swiftshader/third_party/subzero/src/
IceThreading.h 148 /// initializers, and it includes a sequence number so that work items can be
162 /// WI_Nop: No actual work. This is a placeholder to maintain sequence numbers
184 uint32_t getSequenceNumber() const { return Sequence; }
192 const uint32_t Sequence;
  /tools/apksig/src/test/java/com/android/apksig/internal/asn1/
Asn1DerEncoderTest.java 112 encodeToHex(new Sequence(BigInteger.ZERO, "0.0", new byte[0])));
116 encodeToHex(new Sequence(BigInteger.ZERO, null, new byte[0])));
121 encodeToHex(new Sequence(null, "0.0", new byte[0])));
150 @Asn1Class(type = Asn1Type.SEQUENCE)
161 @Asn1Class(type = Asn1Type.SEQUENCE)
172 @Asn1Class(type = Asn1Type.SEQUENCE)
206 @Asn1Class(type = Asn1Type.SEQUENCE)
218 @Asn1Class(type = Asn1Type.SEQUENCE)
219 public static class Sequence {
229 public Sequence(BigInteger num, String oid, byte[] octets)
    [all...]
  /external/llvm/lib/CodeGen/
PostRASchedulerList.cpp 135 std::vector<SUnit*> Sequence;
241 Sequence.clear();
255 /// dumpSchedule - dump the scheduled Sequence.
257 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
258 if (SUnit *SU = Sequence[i])
333 // Schedule each sequence of instructions not interrupted by a label
508 Sequence.push_back(SU);
518 /// emitNoop - Add a noop to the current instruction sequence.
522 Sequence.push_back(nullptr); // NULL here means noop
556 Sequence.reserve(SUnits.size())
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 163 DWARFDebugLine::Sequence::Sequence() { reset(); }
165 void DWARFDebugLine::Sequence::reset() {
202 Sequence.reset();
206 if (Sequence.Empty) {
207 // Record the beginning of instruction sequence.
208 Sequence.Empty = false;
209 Sequence.LowPC = Row.Address;
210 Sequence.FirstRowIndex = RowNumber;
215 // Record the end of instruction sequence
582 DWARFDebugLine::Sequence sequence; local
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
PtrState.h 11 // is only used by the ARC Sequence Dataflow computation. By separating this
33 /// \enum Sequence
35 /// \brief A sequence of states that a pointer may go through in which an
37 enum Sequence {
48 const Sequence S) LLVM_ATTRIBUTE_UNUSED;
51 /// retain-decrement-use-release sequence or release-use-decrement-retain
52 /// reverse sequence.
75 /// For a top-down sequence, the set of objc_retains or
80 /// sequence.
109 /// The current position in the sequence
    [all...]
  /external/python/cpython3/Lib/test/
seq_tests.py 17 class Sequence:
18 'Sequence using __getitem__'
25 'Sequence using iterator protocol'
38 'Sequence using iterator protocol defined with a generator'
87 return chain(map(lambda x:x, iterfunc(IterGen(Sequence(seqn)))))
128 s = "this is also a sequence"
134 for g in (Sequence, IterFunc, IterGen,
  /prebuilts/clang/host/darwin-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/darwin-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...]

Completed in 859 milliseconds

1 2 3 4 5