• Home
  • Raw
  • Download

Lines Matching refs:ref

164 		const char* ref[]	= { "hello" };  in deCommandLine_selfTest()  local
165 testParse(cmdLine, ref, DE_LENGTH_OF_ARRAY(ref)); in deCommandLine_selfTest()
169 const char* ref[] = { "hello", "world" }; in deCommandLine_selfTest() local
170 testParse(cmdLine, ref, DE_LENGTH_OF_ARRAY(ref)); in deCommandLine_selfTest()
174 const char* ref[] = { "hello/world" }; in deCommandLine_selfTest() local
175 testParse(cmdLine, ref, DE_LENGTH_OF_ARRAY(ref)); in deCommandLine_selfTest()
179 const char* ref[] = { "hello/world", "--help" }; in deCommandLine_selfTest() local
180 testParse(cmdLine, ref, DE_LENGTH_OF_ARRAY(ref)); in deCommandLine_selfTest()
184 const char* ref[] = { "hello/world", "--help", "foo" }; in deCommandLine_selfTest() local
185 testParse(cmdLine, ref, DE_LENGTH_OF_ARRAY(ref)); in deCommandLine_selfTest()
189 const char* ref[] = { "hello\\world", "--help", "foo" }; in deCommandLine_selfTest() local
190 testParse(cmdLine, ref, DE_LENGTH_OF_ARRAY(ref)); in deCommandLine_selfTest()
194 const char* ref[] = { "hello/worl d", "--help", "--foo=bar", "ba z\"" }; in deCommandLine_selfTest() local
195 testParse(cmdLine, ref, DE_LENGTH_OF_ARRAY(ref)); in deCommandLine_selfTest()
199 const char* ref[] = { "hello/worl d", "--help", "--foo=bar", "ba z'" }; in deCommandLine_selfTest() local
200 testParse(cmdLine, ref, DE_LENGTH_OF_ARRAY(ref)); in deCommandLine_selfTest()
204 const char* ref[] = { "hello", "'world'" }; in deCommandLine_selfTest() local
205 testParse(cmdLine, ref, DE_LENGTH_OF_ARRAY(ref)); in deCommandLine_selfTest()
209 const char* ref[] = { "hello", "\"world\"" }; in deCommandLine_selfTest() local
210 testParse(cmdLine, ref, DE_LENGTH_OF_ARRAY(ref)); in deCommandLine_selfTest()
214 const char* ref[] = { "hello", "world\n" }; in deCommandLine_selfTest() local
215 testParse(cmdLine, ref, DE_LENGTH_OF_ARRAY(ref)); in deCommandLine_selfTest()