Searched refs:Seq (Results 1 - 25 of 32) sorted by relevance

12

/macosx-10.9.5/llvmCore-3425.0.33/utils/TableGen/
H A DSequenceToOffsetTable.h68 void add(const SeqT &Seq) { argument
70 typename SeqMap::iterator I = Seqs.lower_bound(Seq);
72 // If SeqMap contains a sequence that has Seq as a suffix, I will be
74 if (I != Seqs.end() && isSuffix(Seq, I->first))
77 I = Seqs.insert(I, std::make_pair(Seq, 0u));
79 // The entry before I may be a suffix of Seq that can now be erased.
80 if (I != Seqs.begin() && isSuffix((--I)->first, Seq))
98 /// get - Returns the offset of Seq in the final table.
99 unsigned get(const SeqT &Seq) const {
101 typename SeqMap::const_iterator I = Seqs.lower_bound(Seq);
[all...]
H A DCodeGenSchedule.h74 CodeGenSchedRW(unsigned Idx, bool Read, const IdxVec &Seq, argument
77 HasVariants(false), IsVariadic(false), IsSequence(true), Sequence(Seq) {
357 unsigned findOrInsertRW(ArrayRef<unsigned> Seq, bool IsRead);
372 std::string genRWName(const IdxVec& Seq, bool IsRead);
373 unsigned findRWForSequence(const IdxVec &Seq, bool IsRead);
H A DCodeGenSchedule.cpp187 RecVec Seq = RWDef->getValueAsListOfDefs("Writes"); local
188 for (RecIter I = Seq.begin(), E = Seq.end(); I != E; ++I)
331 std::string CodeGenSchedModels::genRWName(const IdxVec& Seq, bool IsRead) { argument
333 for (IdxIter I = Seq.begin(), E = Seq.end(); I != E; ++I) {
334 if (I != Seq.begin())
462 unsigned CodeGenSchedModels::findRWForSequence(const IdxVec &Seq,
468 if (I->Sequence == Seq)
476 unsigned CodeGenSchedModels::findOrInsertRW(ArrayRef<unsigned> Seq,
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/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 DMipsAnalyzeImmediate.h51 void ReplaceADDiuSLLWithLUi(InstSeq &Seq);
H A DMipsSEInstrInfo.cpp283 const MipsAnalyzeImmediate::InstSeq &Seq = local
285 MipsAnalyzeImmediate::InstSeq::const_iterator Inst = Seq.begin();
287 assert(Seq.size() && (!LastInstrIsADDiu || (Seq.size() > 1)));
299 // Build the remaining instructions in Seq.
300 for (++Inst; Inst != Seq.end() - LastInstrIsADDiu; ++Inst)
H A DMipsISelDAGToDAG.cpp512 const MipsAnalyzeImmediate::InstSeq &Seq = local
515 MipsAnalyzeImmediate::InstSeq::const_iterator Inst = Seq.begin();
533 for (++Inst; Inst != Seq.end(); ++Inst) {
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/apps/xml/
H A DrdfExample.xotcl23 <rdf:Seq ID="CreatorsAlphabeticalBySurname">
26 </rdf:Seq>
H A DxmlExample.xotcl40 <rdf:Seq ID="CreatorsAlphabeticalBySurname">
43 </rdf:Seq>
/macosx-10.9.5/llvmCore-3425.0.33/utils/lit/lit/
H A DShUtil.py4 from ShCommands import Command, Pipeline, Seq
243 lhs = Seq(lhs, operator[0], self.parse_pipeline())
326 Seq(Pipeline([Command(['a'], [])], False),
331 Seq(Pipeline([Command(['a'], [])], False),
336 Seq(Pipeline([Command(['a'], [])], False),
341 Seq(Pipeline([Command(['a'], [])], False),
346 Seq(Seq(Pipeline([Command(['a'], [])], False),
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 DTestRunner.py46 if isinstance(cmd, ShUtil.Seq):
301 cmd = ShUtil.Seq(cmd, '&&', c)
/macosx-10.9.5/ruby-104/ruby/lib/rss/
H A D1.0.rb88 class Seq < Element class
100 @tag_name = 'Seq'
272 Seq = ::RSS::RDF::Seq
282 install_have_child_element("Seq", URI, nil)
290 self.Seq = args[0]
292 self.Seq ||= Seq.new
296 if @Seq
297 @Seq
[all...]
/macosx-10.9.5/ruby-104/ruby/sample/drb/
H A Dname.rb72 class Seq class
92 seq = Seq.new(0, 'seq')
/macosx-10.9.5/ruby-104/ruby/test/rss/
H A Dtest_parser_1.0.rb178 assert_missing_tag("Seq", "items") do
193 <rdf:Seq>
194 </rdf:Seq>
206 <rdf:Seq>
207 </rdf:Seq>
220 <rdf:Seq>
221 </rdf:Seq>
236 <rdf:Seq>
238 </rdf:Seq>
H A Drss-testcase.rb119 <rdf:Seq>
121 </rdf:Seq>
365 channel.items.Seq.lis << RDF::Channel::Items::Seq::Li.new(item_link)
H A Dtest_1.0.rb64 items.Seq.lis << items.class::Seq::Li.new(item_link)
150 li = items.Seq.class::Li.new(item_link)
151 items.Seq.lis << li
161 assert_equal("Seq", seq.name)
173 seq = RDF::Seq.new
180 assert_equal("Seq", s.name)
/macosx-10.9.5/swig-10/Lib/octave/
H A Doctcontainer.swg548 template <class OctSeq, class Seq>
550 assign(const OctSeq& octseq, Seq* seq) {
562 template <class Seq, class T = typename Seq::value_type >
564 typedef Seq sequence;
596 template <class Seq, class T = typename Seq::value_type >
598 typedef Seq sequence;
600 typedef typename Seq::size_type size_type;
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/library/xml/
H A Dxml.xotcl107 <rdf:Seq ID="CreatorsAlphabeticalBySurname">
110 </rdf:Seq>
/macosx-10.9.5/swig-10/Lib/python/
H A Dpycontainer.swg746 template <class SwigPySeq, class Seq>
748 assign(const SwigPySeq& swigpyseq, Seq* seq) {
757 template <class Seq, class T = typename Seq::value_type >
759 typedef Seq sequence;
794 template <class Seq, class T = typename Seq::value_type >
796 typedef Seq sequence;
798 typedef typename Seq::size_type size_type;
/macosx-10.9.5/swig-10/Lib/ruby/
H A Drubycontainer.swg983 template <class RubySeq, class Seq>
985 assign(const RubySeq& rubyseq, Seq* seq) {
994 template <class Seq, class T = typename Seq::value_type >
996 typedef Seq sequence;
1034 template< class Seq >
1035 struct traits_asptr_stdseq< Seq, swig::GC_VALUE > {
1036 typedef Seq sequence;
1072 template <class Seq, class T = typename Seq
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rss/maker/
H A D1.0.rb52 seq = items.Seq
57 li = RDF::Channel::Items::Seq::Li.new(item.link)
/macosx-10.9.5/CPANInternal-140/XML-SAX/SAX/PurePerl/
H A DDTDDecls.pm119 # ChoiceOrSeq ::= '(' S* Cp ( Choice | Seq )? S* ')'
121 # [[50]] Seq ::= ( S* ',' S* Cp )+
122 # // Children ::= (Choice | Seq) Cardinality?
123 # // Cp ::= ( QName | Choice | Seq) Cardinality?
125 # // Seq ::= '(' S* Cp ( S* ',' S* Cp )* S* ')'
151 $model .= $self->Seq($reader);
203 sub Seq { subroutine
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DObjCARC.cpp1396 /// Seq - The current position in the sequence.
1397 Sequence Seq : 8;
1405 Seq(S_None) {}
1420 Seq = NewSeq;
1424 return Seq;
1432 Seq = NewSeq;
1443 Seq = MergeSeqs(Seq, Other.Seq, TopDown);
1448 Seq
2697 Sequence Seq = S.GetSeq(); local
2900 Sequence Seq = S.GetSeq(); local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/tests/
H A DxoRDF.test636 <rdf:Seq ID="JSPapersByDate">
640 </rdf:Seq>
641 <rdf:Seq ID="JSPapersBySubj">
645 </rdf:Seq>
649 ::xotcl::rdf::parser::RDFSeq-::res1 --- rdf:Seq
651 TYPES: http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq
661 ::xotcl::rdf::parser::RDFSeq-::res2 --- rdf:Seq
663 TYPES: http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq
675 rdfdoc#JSPapersByDate #type #Seq
679 rdfdoc#JSPapersBySubj #type #Seq
[all...]

Completed in 324 milliseconds

12