Home
last modified time | relevance | path

Searched refs:m_appArgs (Results 1 – 3 of 3) sorted by relevance

/external/emma/core/java12/com/vladium/emma/
DrunCommand.java169 m_appArgs = new String [freeArgs.length]; in run()
170 System.arraycopy (freeArgs, 1, m_appArgs, 1, freeArgs.length - 1); in run()
171 m_appArgs [0] = jarMainClass; in run()
183 m_appArgs = freeArgs; in run()
227 …if ($assert.ENABLED) $assert.ASSERT (m_appArgs != null && m_appArgs.length > 0, "invalid m_appArgs… in run()
229 final String [] appargs = new String [m_appArgs.length - 1]; in run()
230 System.arraycopy (m_appArgs, 1, appargs, 0, appargs.length); in run()
235 processor.setAppClass (m_appArgs [0], appargs); in run()
323 private String [] m_appArgs; field in runCommand
/external/emma/ant/ant14/com/vladium/emma/
DemmajavaTask.java199 if (m_appArgs != null) in execute()
201 final String [] args = m_appArgs.getArguments (); in execute()
228 if (m_appArgs != null) in execute()
230 final String [] args = m_appArgs.getArguments (); in execute()
309 if (m_appArgs == null) in createArg()
310 m_appArgs = new Commandline (); in createArg()
312 return m_appArgs.createArgument (); in createArg()
576 private Commandline m_appArgs; field in emmajavaTask
/external/emma/core/java12/com/vladium/emma/rt/
DAppRunner.java169 m_appArgs = _args; in setAppClass()
173 m_appArgs = IConstants.EMPTY_STRING_ARRAY; in setAppClass()
245 if (m_appArgs == null) in validateState()
500 Invoker invoker = new Invoker (appMain, null, new Object [] {m_appArgs}); in _run()
900 private String [] m_appArgs; // required to be non-null for run() field in AppRunner