HomeSort by relevance Sort by last modified time
    Searched defs:CONTINUE (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
EventHandler.java 78 /** Continue indicator.
83 int CONTINUE = 3;
111 * or continue integration, possibly with a reset state or derivatives.</p>
124 * <li>if {@link #CONTINUE} is returned, no specific action will
126 * will continue.</li>
160 * {@link #RESET_DERIVATIVES} or {@link #CONTINUE}
165 /** Reset the state prior to continue the integration.
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
EventHandlerWithJacobians.java 103 /** Continue indicator.
108 int CONTINUE = 3;
141 * or continue integration, possibly with a reset state or derivatives.</p>
155 * <li>if {@link #CONTINUE} is returned, no specific action will
157 * will continue.</li>
195 * {@link #RESET_DERIVATIVES} or {@link #CONTINUE}
201 /** Reset the state prior to continue the integration.
  /external/wpa_supplicant_8/src/eap_server/
eap_server_gtc.c 16 enum { CONTINUE, SUCCESS, FAILURE } state;
28 data->state = CONTINUE;
71 data->state = CONTINUE;
191 return data->state != CONTINUE;
eap_server_identity.c 16 enum { CONTINUE, SUCCESS, FAILURE } state;
28 data->state = CONTINUE;
146 return data->state != CONTINUE;
eap_server_md5.c 21 enum { CONTINUE, SUCCESS, FAILURE } state;
32 data->state = CONTINUE;
70 data->state = CONTINUE;
142 return data->state != CONTINUE;
eap_server_tls.c 22 enum { START, CONTINUE, SUCCESS, FAILURE } state;
33 case CONTINUE:
34 return "CONTINUE";
144 eap_tls_state(data, CONTINUE);
168 case CONTINUE:
eap_server_tnc.c 18 START, CONTINUE, RECOMMENDATION, FRAG_ACK, WAIT_FRAG_ACK, DONE,
46 case CONTINUE:
47 return "CONTINUE";
120 eap_tnc_set_state(data, CONTINUE);
288 case CONTINUE:
503 eap_tnc_set_state(data, CONTINUE);
521 eap_tnc_set_state(data, CONTINUE);
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
GuidedStepActivity.java 38 private static final int CONTINUE = 1;
93 addAction(actions, CONTINUE, "Continue", "Let's do it");
100 if (action.getId() == CONTINUE) {
149 addAction(actions, CONTINUE, "Continue", "");
154 if (action.getId() == CONTINUE) {
182 addAction(actions, CONTINUE, "Done", "All finished");
188 if (action.getId() == CONTINUE) {
  /external/deqp/framework/common/
tcuTestCase.hpp 103 CONTINUE = 1
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpHeaderValues.java 41 CONTINUE="100-continue",
69 CONTINUE_BUFFER=CACHE.add(CONTINUE, CONTINUE_ORDINAL),
HttpStatus.java 48 * <td>Continue</td>
689 /** <code>100 Continue</code> */
690 CONTINUE(CONTINUE_100, "Continue"),
    [all...]
  /external/v8/src/compiler/
generic-algorithm.h 27 CONTINUE = 0x0, // Continue depth-first normally
104 Control Pre(GenericNode<B, S>* node) { return CONTINUE; }
105 Control Post(GenericNode<B, S>* node) { return CONTINUE; }
  /external/v8/src/
optimizing-compiler-thread.h 42 static_cast<base::AtomicWord>(CONTINUE));
87 enum StopFlag { CONTINUE, STOP, FLUSH };
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/arpa/
ftp.h 42 #define CONTINUE 3 /* positive intermediate */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/arpa/
ftp.h 42 #define CONTINUE 3 /* positive intermediate */
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Configuration.java 222 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
233 continue;
239 continue;
246 mode = CONTINUE; // Look for a following \n
247 continue;
250 continue;
269 continue;
281 continue;
285 if (mode == CONTINUE) { // Part of a \r\n sequence
287 continue;
    [all...]
  /external/deqp/framework/randomshaders/
rsgToken.hpp 44 CONTINUE,
  /external/e2fsprogs/ext2ed/
ext2ed.h 371 #define CONTINUE 1
  /external/javassist/src/main/javassist/compiler/
TokenId.java 28 int CONTINUE = 309;
  /external/wpa_supplicant_8/src/eap_peer/
eap_sim.c 46 CONTINUE, RESULT_SUCCESS, SUCCESS, FAILURE
56 case CONTINUE:
57 return "CONTINUE";
127 eap_sim_state(data, CONTINUE);
1143 eap_sim_state(data, CONTINUE);
    [all...]
eap_aka.c 45 CONTINUE, RESULT_SUCCESS, SUCCESS, FAILURE
63 case CONTINUE:
64 return "CONTINUE";
99 eap_aka_state(data, CONTINUE);
    [all...]
  /libcore/luni/src/main/java/java/util/
Properties.java 86 private static final int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3,
305 continue;
313 continue;
320 mode = CONTINUE; // Look for a following \n
321 continue;
324 continue;
343 continue;
360 continue;
364 if (mode == CONTINUE) { // Part of a \r\n sequence
366 continue;
    [all...]
  /external/sonivox/jet_tools/JetCreator/
midifile.py 71 CONTINUE = 0xfb
82 CONTINUE,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
httplib.py 105 CONTINUE = 100
165 100: 'Continue',
289 continue
297 continue
300 continue
309 continue
410 if status != CONTINUE:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
httplib.py 105 CONTINUE = 100
165 100: 'Continue',
289 continue
297 continue
300 continue
309 continue
410 if status != CONTINUE:
    [all...]

Completed in 499 milliseconds

1 2 3 4 5