Lines Matching full:inc
34 PATTERNS = { 'src' => {'' => { :inc => [] } },
35 'dh' => {'Driver' => { :inc => ['%1$sHardware.h'] },
36 'Hardware' => { :inc => [] }
38 'dih' => {'Driver' => { :inc => ['%1$sHardware.h', '%1$sInterrupt.h'] },
39 'Interrupt'=> { :inc => ['%1$sHardware.h'] },
40 'Hardware' => { :inc => [] }
42 'mch' => {'Model' => { :inc => [] },
43 'Conductor'=> { :inc => ['%1$sModel.h', '%1$sHardware.h'] },
44 'Hardware' => { :inc => [] }
46 'mvp' => {'Model' => { :inc => [] },
47 'Presenter'=> { :inc => ['%1$sModel.h', '%1$sView.h'] },
48 'View' => { :inc => [] }
125 @includes = { :src => [], :inc => [], :tst => [] }
129 TRIAD = [ { :ext => '.c', :path => @path_src, :template => TEMPLATE_SRC, :inc => :src, :boil…
130 …ath => @path_inc, :template => TEMPLATE_INC, :inc => :inc, :boilerplate => @boilerplates[:i…
131 …{ :ext => '.c', :path => @path_tst+'Test', :template => TEMPLATE_TST, :inc => :tst, :boilerplate =…
147 :includes => case(triad[:inc])
148 … when :src then @includes[:src] | pattern_traits[:inc].map{|f| f % [@module_name]}
149 when :inc then @includes[:inc]
150 … when :tst then @includes[:tst] | pattern_traits[:inc].map{|f| "Mock#{f}"% [@module_name]}