Lines Matching refs:inc

72         '' =>  { inc: [] }
75 '' => { inc: [] }
78 'Driver' => { inc: [create_filename('%1$s', 'Hardware.h')] },
79 'Hardware' => { inc: [] }
82 'Driver' => { inc: [create_filename('%1$s', 'Hardware.h'), create_filename('%1$s', 'Interrupt.h')] },
83 'Interrupt' => { inc: [create_filename('%1$s', 'Hardware.h')] },
84 'Hardware' => { inc: [] }
87 'Model' => { inc: [] },
88 'Conductor' => { inc: [create_filename('%1$s', 'Model.h'), create_filename('%1$s', 'Hardware.h')] },
89 'Hardware' => { inc: [] }
92 'Model' => { inc: [] },
93 'Presenter' => { inc: [create_filename('%1$s', 'Model.h'), create_filename('%1$s', 'View.h')] },
94 'View' => { inc: [] }
105 inc: [],
136 triad = [{ ext: '.c', path: @options[:path_src], prefix: '', template: TEMPLATE_SRC, inc: :src, boilerplate: @options[:boilerplates][:src] },
137 { ext: '.h', path: @options[:path_inc], prefix: '', template: TEMPLATE_INC, inc: :inc, boilerplate: @options[:boilerplates][:inc] },
138 { ext: '.c', path: @options[:path_tst], prefix: prefix, template: TEMPLATE_TST, inc: :tst, boilerplate: @options[:boilerplates][:tst], test_define: @options[:test_define] }]
146 triad.select! { |v| v[:inc] == :tst } if pattern == 'test'
160 includes: case (cfg[:inc])
161 when :src then (@options[:includes][:src] || []) | (pattern_traits[:inc].map { |f| format(f, module_name) })
162 when :inc then (@options[:includes][:inc] || [])
163 when :tst then (@options[:includes][:tst] || []) | (pattern_traits[:inc].map { |f| format("#{@options[:mock_prefix]}#{f}", module_name) })