HomeSort by relevance Sort by last modified time
    Searched defs:CODE2 (Results 1 - 6 of 6) sorted by null

  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
ModeCommandHandlerTest.java 31 private static final String CODE2 = "B";
52 verifyOneDataElement(commandHandler.getInvocation(1), ModeCommandHandler.MODE_KEY, CODE2);
72 command2 = new Command(CommandNames.MODE, array(CODE2));
StruCommandHandlerTest.java 31 private static final String CODE2 = "R";
52 verifyOneDataElement(commandHandler.getInvocation(1), StruCommandHandler.FILE_STRUCTURE_KEY, CODE2);
72 command2 = new Command(CommandNames.STRU, array(CODE2));
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
ModeCommandHandlerTest.java 33 private static final String CODE2 = "B";
54 verifyOneDataElement(commandHandler.getInvocation(1), ModeCommandHandler.MODE_KEY, CODE2);
74 command2 = new Command(CommandNames.MODE, array(CODE2));
StruCommandHandlerTest.java 33 private static final String CODE2 = "R";
54 verifyOneDataElement(commandHandler.getInvocation(1), StruCommandHandler.FILE_STRUCTURE_KEY, CODE2);
74 command2 = new Command(CommandNames.STRU, array(CODE2));
  /cts/tests/tests/content/src/android/content/cts/
ContentUrisTest.java 30 private static final int CODE2 = 2;
43 result = ContentUris.withAppendedId(uri2, CODE2);
44 assertEquals(CODE2, ContentUris.parseId(result));
76 expected = "content://" + AUTHORITY + "/" + PATH2 + "/" + CODE2;
77 assertNotNull(actually = ContentUris.withAppendedId(uri2, CODE2));
98 expected = "content://" + AUTHORITY + "/" + PATH2 + "/" + CODE2;
101 assertNotNull(actually = ContentUris.appendId(b, CODE2));
  /external/curl/src/
tool_setopt.c 177 #define CODE2(f,a,b) ADDF((&easysrc_code, f,a,b))
256 CODE2("curl_easy_setopt(hnd, %s, %ldL);", name, lval);
259 CODE2("curl_easy_setopt(hnd, %s, (long)%s);", name, nv->name);
302 CODE2("%s%ldL);", preamble, rest);
345 CODE2("%s%luUL);", preamble, rest);
420 CODE2("curl_easy_setopt(hnd, %s, post%d);", name, i);
459 CODE2("curl_easy_setopt(hnd, %s, slist%d);", name, i);
555 CODE2("curl_easy_setopt(hnd, %s, \"%s\");", name, escaped);
558 CODE2("curl_easy_setopt(hnd, %s, %s);", name, value);

Completed in 153 milliseconds