Searched defs:Seq (Results 1 - 24 of 24) sorted by relevance

/external/llvm/utils/lit/lit/
H A DShCommands.py65 class Seq: class in inherits:
73 return 'Seq(%r, %r, %r)' % (self.lhs, self.op, self.rhs)
76 if not isinstance(other, Seq):
H A DShUtil.py5 from lit.ShCommands import Command, Pipeline, Seq namespace
244 lhs = Seq(lhs, operator[0], self.parse_pipeline())
323 Seq(Pipeline([Command(['a'], [])], False),
328 Seq(Pipeline([Command(['a'], [])], False),
333 Seq(Pipeline([Command(['a'], [])], False),
338 Seq(Pipeline([Command(['a'], [])], False),
343 Seq(Seq(Pipeline([Command(['a'], [])], False),
350 Seq(Pipeline([Command(['a'], [])], False),
/external/chromium_org/mojo/system/
H A Dlocal_data_pipe_unittest.cc875 void Seq(int32_t start, size_t count, int32_t* out) { function in namespace:mojo::system::__anon8850
898 Seq(0, arraysize(buffer), buffer);
916 Seq(0, 5u, expected_buffer);
923 Seq(100, arraysize(buffer), buffer);
951 Seq(200, arraysize(buffer), buffer);
962 Seq(300, arraysize(buffer), buffer);
1004 Seq(400, 6, static_cast<int32_t*>(write_ptr));
1041 Seq(600, 4, static_cast<int32_t*>(write_ptr));
1056 Seq(700, 3, static_cast<int32_t*>(write_ptr));
1100 Seq(
[all...]
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DTraditional.py9 from Regexps import Alt, Seq, Rep, Rep1, Opt, Any, AnyBut, Bol, Eol, Char namespace
52 return Seq(*re_list)
H A D__init__.py18 Str, Any, AnyBut, AnyChar, Seq, Alt, Opt, Rep, Rep1,
35 from Regexps import RE, Seq, Alt, Rep1, Empty, Str, Any, AnyBut, AnyChar, Range namespace
H A DRegexps.py137 return Seq(self, other)
289 class Seq(RE): class in inherits:RE
290 """Seq(re1, re2, re3...) is an RE which matches |re1| followed by
331 return "Seq(%s)" % ','.join(map(str, self.re_list))
427 Empty = Seq()
438 result = Seq(*tuple(map(Char, s)))
/external/llvm/lib/Target/Mips/
H A DMipsAnalyzeImmediate.cpp85 void MipsAnalyzeImmediate::ReplaceADDiuSLLWithLUi(InstSeq &Seq) { argument
88 if ((Seq.size() < 2) || (Seq[0].Opc != ADDiu) ||
89 (Seq[1].Opc != SLL) || (Seq[1].ImmOpnd < 16))
93 int64_t Imm = SignExtend64<16>(Seq[0].ImmOpnd);
94 int64_t ShiftedImm = (uint64_t)Imm << (Seq[1].ImmOpnd - 16);
100 Seq[0].Opc = LUi;
101 Seq[0].ImmOpnd = (unsigned)(ShiftedImm & 0xffff);
102 Seq
[all...]
H A DMipsSEISelDAGToDAG.cpp692 const MipsAnalyzeImmediate::InstSeq &Seq = local
695 MipsAnalyzeImmediate::InstSeq::const_iterator Inst = Seq.begin();
713 for (++Inst; Inst != Seq.end(); ++Inst) {
H A DMipsSEInstrInfo.cpp392 const MipsAnalyzeImmediate::InstSeq &Seq = local
394 MipsAnalyzeImmediate::InstSeq::const_iterator Inst = Seq.begin();
396 assert(Seq.size() && (!LastInstrIsADDiu || (Seq.size() > 1)));
409 // Build the remaining instructions in Seq.
410 for (++Inst; Inst != Seq.end() - LastInstrIsADDiu; ++Inst)
/external/llvm/utils/TableGen/
H A DSequenceToOffsetTable.h69 void add(const SeqT &Seq) { argument
71 typename SeqMap::iterator I = Seqs.lower_bound(Seq);
73 // If SeqMap contains a sequence that has Seq as a suffix, I will be
75 if (I != Seqs.end() && isSuffix(Seq, I->first))
78 I = Seqs.insert(I, std::make_pair(Seq, 0u));
80 // The entry before I may be a suffix of Seq that can now be erased.
81 if (I != Seqs.begin() && isSuffix((--I)->first, Seq))
99 /// get - Returns the offset of Seq in the final table.
100 unsigned get(const SeqT &Seq) const {
102 typename SeqMap::const_iterator I = Seqs.lower_bound(Seq);
[all...]
H A DCodeGenSchedule.cpp190 RecVec Seq = RWDef->getValueAsListOfDefs("Writes"); local
191 for (RecIter I = Seq.begin(), E = Seq.end(); I != E; ++I)
334 std::string CodeGenSchedModels::genRWName(const IdxVec& Seq, bool IsRead) { argument
336 for (IdxIter I = Seq.begin(), E = Seq.end(); I != E; ++I) {
337 if (I != Seq.begin())
465 unsigned CodeGenSchedModels::findRWForSequence(const IdxVec &Seq,
471 if (I->Sequence == Seq)
479 unsigned CodeGenSchedModels::findOrInsertRW(ArrayRef<unsigned> Seq,
[all...]
H A DCodeGenSchedule.h75 CodeGenSchedRW(unsigned Idx, bool Read, const IdxVec &Seq, argument
78 HasVariants(false), IsVariadic(false), IsSequence(true), Sequence(Seq) {
369 unsigned findOrInsertRW(ArrayRef<unsigned> Seq, bool IsRead);
386 std::string genRWName(const IdxVec& Seq, bool IsRead);
387 unsigned findRWForSequence(const IdxVec &Seq, bool IsRead);
/external/chromium_org/v8/src/
H A Deffects.h48 static Effect Seq(Effect e1, Effect e2, Zone* zone) { function in struct:v8::internal::Effect
96 void Seq(Var var, Effect effect) { function in class:v8::internal::EffectsMixin
99 effect = Effect::Seq(locator.value(), effect, Base::zone());
104 void Seq(Effects that) { function in class:v8::internal::EffectsMixin
130 Seq(override.effects);
138 void Call(Var var, Effect effect) { self.Seq(var, effect); }
163 void Call(Var var, Effect effect) { effects.Seq(var, new_effect); }
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsnamed.c720 cmsSEQ* Seq; local
729 Seq = (cmsSEQ*) _cmsMallocZero(ContextID, sizeof(cmsSEQ));
730 if (Seq == NULL) return NULL;
732 Seq -> ContextID = ContextID;
733 Seq -> seq = (cmsPSEQDESC*) _cmsCalloc(ContextID, n, sizeof(cmsPSEQDESC));
734 Seq -> n = n;
736 if (Seq -> seq == NULL) {
737 _cmsFree(ContextID, Seq);
742 Seq -> seq[i].Manufacturer = NULL;
743 Seq
[all...]
H A Dcmsvirt.c67 cmsSEQ* Seq = cmsAllocProfileSequenceDescription(ContextID, 1); local
69 if (Seq == NULL) return FALSE;
71 Seq->seq[0].deviceMfg = (cmsSignature) 0;
72 Seq->seq[0].deviceModel = (cmsSignature) 0;
75 Seq->seq[0].attributes[0] = 0;
76 Seq->seq[0].attributes[1] = 0;
78 Seq->seq[0].attributes = 0;
81 Seq->seq[0].technology = (cmsTechnologySignature) 0;
83 cmsMLUsetASCII( Seq->seq[0].Manufacturer, cmsNoLanguage, cmsNoCountry, "Little CMS");
84 cmsMLUsetASCII( Seq
[all...]
H A Dcmstypes.c3308 cmsSEQ* Seq = (cmsSEQ*) Ptr; local
3311 if (!_cmsWriteUInt32Number(io, Seq->n)) return FALSE;
3313 for (i=0; i < Seq ->n; i++) {
3315 cmsPSEQDESC* sec = &Seq -> seq[i];
3422 cmsSEQ* Seq = (cmsSEQ*) Cargo; local
3424 if (!io ->Write(io, 16, Seq ->seq[n].ProfileID.ID8)) return FALSE;
3427 if (!SaveDescription(self, io, Seq ->seq[n].Description)) return FALSE;
3437 cmsSEQ* Seq = (cmsSEQ*) Ptr; local
3444 if (!_cmsWriteUInt32Number(io, Seq ->n)) return FALSE;
3447 if (!WritePositionTable(self, io, 0, Seq
[all...]
/external/llvm/include/llvm/Support/
H A DYAMLTraits.h668 yamlize(IO &io, T &Seq, bool) { argument
671 unsigned count = io.outputting() ? SequenceTraits<T>::size(io, Seq) : incnt;
675 yamlize(io, SequenceTraits<T>::element(io, Seq, i), true);
683 unsigned count = io.outputting() ? SequenceTraits<T>::size(io, Seq) : incnt;
687 yamlize(io, SequenceTraits<T>::element(io, Seq, i), true);
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.cc666 return Seq(expr, 2, exprs, env);
712 return Seq(expr, expr->getNumInits(), expr->getInits(), env);
770 ExprEffect Seq(clang::Stmt* parent, function in class:__anon17419::FunctionAnalyzer
952 void Seq(clang::Stmt* a, clang::Stmt* b, clang::Stmt* c) { function in class:__anon17419::FunctionAnalyzer::Block
959 void Seq(clang::Stmt* a, clang::Stmt* b) { function in class:__anon17419::FunctionAnalyzer::Block
966 Seq(a, b, c);
971 Seq(a, b);
1041 block.Seq(stmt->getCond(), stmt->getBody());
/external/clang/lib/Format/
H A DFormat.cpp254 static size_t size(IO &IO, std::vector<FormatStyle> &Seq) { argument
255 return Seq.size();
257 static FormatStyle &element(IO &IO, std::vector<FormatStyle> &Seq, argument
259 if (Index >= Seq.size()) {
260 assert(Index == Seq.size());
262 if (Seq.size() > 0 && Seq[0].Language == FormatStyle::LK_None) {
263 Template = Seq[0];
268 Seq.resize(Index + 1, Template);
270 return Seq[Inde
[all...]
/external/llvm/unittests/Support/
H A DYAMLIOTest.cpp1638 OptionalTestSeq Seq; local
1642 Seq.Tests.push_back(One);
1643 Seq.Tests.push_back(Two);
1644 Seq.Tests.push_back(Three);
1645 Seq.Tests.push_back(Four);
1651 yout << Seq; local
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp433 unsigned char Seq : 8;
440 Seq(S_None) {}
494 DEBUG(dbgs() << "Old: " << Seq << "; New: " << NewSeq << "\n");
495 Seq = NewSeq;
499 return static_cast<Sequence>(Seq);
539 Seq = MergeSeqs(GetSeq(), Other.GetSeq(), TopDown);
543 if (Seq == S_None) {
899 Value *Ptr, Sequence Seq) {
928 std::string SeqStr = SequenceToString(Seq);
942 Value *Ptr, Sequence Seq) {
898 GenerateARCBBEntranceAnnotation(const char *Name, BasicBlock *BB, Value *Ptr, Sequence Seq) argument
941 GenerateARCBBTerminatorAnnotation(const char *Name, BasicBlock *BB, Value *Ptr, Sequence Seq) argument
1631 const Sequence Seq = I->second.GetSeq(); local
1836 Sequence Seq = S.GetSeq(); local
2069 Sequence Seq = S.GetSeq(); local
[all...]
/external/opencv/cvaux/src/
H A Dcvlee.cpp1040 Seq : in, pointer to the sequence
1045 T _cvSeqPush(CvSeq* Seq, T pElem);
1052 Seq : in, pointer to the sequence
1057 T _cvSeqPushFront(CvSeq* Seq, T pElem);
1450 CvSeq* Seq; local
1454 for(Seq = (CvSeq*)VoronoiDiagram->sites; Seq != NULL; Seq = Seq->h_next)
1455 if(Seq
4449 _cvSeqPush(CvSeq* Seq, T pElem) argument
4457 _cvSeqPushFront(CvSeq* Seq, T pElem) argument
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp6427 class Seq { class in class:__anon18013::SequenceChecker::SequenceTree
6428 explicit Seq(unsigned N) : Index(N) {} function in class:__anon18013::SequenceChecker::SequenceTree::Seq
6432 Seq() : Index(0) {} function in class:__anon18013::SequenceChecker::SequenceTree::Seq
6436 Seq root() const { return Seq(0); }
6441 Seq allocate(Seq Parent) {
6443 return Seq(Values.size() - 1);
6447 void merge(Seq S) {
6454 bool isUnsequenced(Seq Cu
6496 SequenceTree::Seq Seq; member in struct:__anon18013::SequenceChecker::Usage
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9012 MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq): argument
9013 MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { }
9069 unsigned Seq = 0; local
9106 StoreNodes.push_back(MemOpLink(Index, Ptr.Offset, Seq++));

Completed in 521 milliseconds