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