Searched defs:result (Results 1 - 25 of 3124) sorted by path

1234567891011>>

/external/antlr/src/org/antlr/runtime/debug/
H A DBlankDebugEventListener.java57 public void semanticPredicate(boolean result, String predicate) {} argument
H A DDebugEventHub.java203 public void semanticPredicate(boolean result, String predicate) { argument
206 listener.semanticPredicate(result, predicate);
H A DDebugEventListener.java215 /** A semantic predicate was evaluate with this result and action text */
216 public void semanticPredicate(boolean result, String predicate); argument
294 * In our case, it will always be the result of calling
H A DDebugEventRepeater.java68 public void semanticPredicate(boolean result, String predicate) { listener.semanticPredicate(result, predicate); } argument
H A DDebugEventSocketProxy.java210 public void semanticPredicate(boolean result, String predicate) { argument
213 buf.append(result);
H A DProfiler.java380 public void semanticPredicate(boolean result, String predicate) { argument
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DCalendarTest.java40 // Test for correct result defined by the last set field
45 assertTrue("Incorrect result 0: " + cal.getTime().getTime(), cal
51 assertTrue("Incorrect result 0a: " + cal.getTime(), cal.getTime()
57 assertTrue("Incorrect result 0b: " + cal.getTime(), cal.getTime()
75 assertTrue("Incorrect result 0c1: " + cal.getTime().getTime(), cal
81 assertTrue("Incorrect result 0c2: " + cal.getTime().getTime(), cal
87 assertTrue("Incorrect result 0c3: " + cal.getTime(), cal.getTime()
93 assertTrue("Incorrect result 0d: " + cal.getTime(), cal.getTime()
99 assertTrue("Incorrect result 0e: " + cal.getTime(), cal.getTime()
105 assertTrue("Incorrect result
1061 assertDisplayNameMap(String[] values, Map<String, Integer> result, int shift) argument
[all...]
H A DCollectionsTest.java105 boolean result = true; field in class:CollectionsTest.SynchCollectionChecker
118 result = false;
158 return result;
178 boolean result = true; field in class:CollectionsTest.SynchMapChecker
201 result = false;
245 return result;
833 boolean result = Collections.replaceAll(list, new Character('1'),
835 assertFalse("Test1: Collections.replaceAll() returned wrong result",
836 result);
841 result
[all...]
/external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
H A DMockAbstractPreferences.java36 int result = NORMAL; field in class:MockAbstractPreferences
81 result = r;
91 if (result == returnNull)
99 switch (result) {
119 if (result == returnNull)
144 return result == returnNull ? null : attr.getProperty(key);
153 return result == returnNull ? null : results;
H A DPreferencesTest.java250 int result = normal; field in class:PreferencesTest.MockInputStream
255 result = i;
259 switch (result) {
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Configuration.java220 static void load(InputStream in, Hashtable<String, String> result) throws IOException { argument
293 result.put(key.toString(), value.toString());
335 result.put(key.toString(), value.toString());
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLEngineImplTest.java192 fail("Modification of the returned result "
223 String[] result = engine.getEnabledCipherSuites();
224 if (result.length != enabled.length) {
225 fail("Returned result differs from expected.");
227 for (int k=0; k<result.length; k++) {
230 if (result[k].equals(enabled[n])) {
234 if (result.length != enabled.length) {
235 fail("Returned result does not correspond "
283 fail("Modification of the returned result "
301 fail("Modification of the returned result "
1344 print(SSLEngineResult result) argument
[all...]
/external/apache-http/src/org/apache/commons/codec/language/
H A DDoubleMetaphone.java94 DoubleMetaphoneResult result = new DoubleMetaphoneResult(this.getMaxCodeLen());
96 while (!result.isComplete() && index <= value.length() - 1) {
104 index = handleAEIOUY(value, result, index);
107 result.append('P');
112 result.append('S');
116 index = handleC(value, result, index);
119 index = handleD(value, result, index);
122 result.append('F');
126 index = handleG(value, result, index, slavoGermanic);
129 index = handleH(value, result, inde
269 handleAEIOUY(String value, DoubleMetaphoneResult result, int index) argument
280 handleC(String value, DoubleMetaphoneResult result, int index) argument
334 handleCC(String value, DoubleMetaphoneResult result, int index) argument
360 handleCH(String value, DoubleMetaphoneResult result, int index) argument
391 handleD(String value, DoubleMetaphoneResult result, int index) argument
417 handleG(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
473 handleGH(String value, DoubleMetaphoneResult result, int index) argument
507 handleH(String value, DoubleMetaphoneResult result, int index) argument
525 handleJ(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
560 handleL(String value, DoubleMetaphoneResult result, int index) argument
578 handleP(String value, DoubleMetaphoneResult result, int index) argument
594 handleR(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
611 handleS(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
664 handleSC(String value, DoubleMetaphoneResult result, int index) argument
696 handleT(String value, DoubleMetaphoneResult result, int index) argument
726 handleW(String value, DoubleMetaphoneResult result, int index) argument
765 handleX(String value, DoubleMetaphoneResult result, int index) argument
786 handleZ(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerHandlerImpl.java85 * @param doFragment True if the result should be a document fragement.
170 * @param result A Result instance, should not be null.
172 * @throws IllegalArgumentException if result is invalid for some reason.
174 public void setResult(Result result) throws IllegalArgumentException argument
177 if (null == result)
178 throw new IllegalArgumentException(XSLMessages.createMessage(XSLTErrorResources.ER_RESULT_NULL, null)); //"result should not be null");
183 // m_transformer.createResultContentHandler(result);
186 m_transformer.createSerializationHandler(result);
191 throw new IllegalArgumentException(XSLMessages.createMessage(XSLTErrorResources.ER_RESULT_COULD_NOT_BE_SET, null)); //"result could not be set");
194 m_result = result;
[all...]
H A DTransformerIdentityImpl.java74 * result is a stream. If the result is a DOM, it will send the events to
75 * {@link org.apache.xml.utils.DOMBuilder}. If the result is another
105 * @param result A Result instance, should not be null.
107 * @throws IllegalArgumentException if result is invalid for some reason.
109 public void setResult(Result result) throws IllegalArgumentException argument
111 if(null == result)
113 m_result = result;
168 * Create a result ContentHandler from a Result object, based
171 * @param outputTarget Where the transform result shoul
[all...]
/external/bison/lib/
H A Ddirname.c113 char const *result; local
115 result = dir_name (file);
116 if (strcmp (result, expected_result))
117 printf ("%s: got %s, expected %s\n", file, result, expected_result);
H A Dgetopt.c1096 int result;
1101 result = _getopt_internal_r (argc, argv, optstring, longopts, longind,
1108 return result;
1092 int result; local
/external/bison/src/
H A Dmuscle_tab.c205 muscle_entry *result = NULL; local
208 result = hash_lookup (muscle_table, &probe);
209 return result ? result->value : NULL;
/external/blktrace/btreplay/
H A Dbtreplay.c1120 size_t count, result; local
1122 result = read(tip->ifd, &bunch->hdr, sizeof(bunch->hdr));
1123 if (result != sizeof(bunch->hdr)) {
1124 if (result == 0)
1128 (long)result);
1134 result = read(tip->ifd, &bunch->pkts, count);
1135 if (result != count) {
1137 (long)result, (long)count);
/external/bluetooth/bluez/audio/
H A Dgstsbcenc.c245 GstCaps *result; local
247 result = gst_sbc_util_caps_fixate(caps, &error_message);
249 if (!result) {
256 return result;
H A Dgstsbcutil.c323 GstCaps *result; local
439 result = gst_caps_new_simple("audio/x-sbc",
449 return result;
/external/bluetooth/bluez/gdbus/
H A Dmainloop.c269 gboolean result; local
273 result = g_dbus_request_name(conn, name, error);
280 if (result == FALSE)
341 int result; local
343 result = dbus_bus_request_name(connection, name,
351 if (result != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER) {
H A Dobject.c801 dbus_bool_t result; local
806 result = dbus_connection_send(connection, message, NULL);
810 return result;
834 gboolean result; local
838 result = g_dbus_send_reply_valist(connection, message, type, args);
842 return result;
850 gboolean result; local
854 result = emit_signal_valist(connection, path, interface,
859 return result;
H A Dpolkit.c97 DBusMessageIter result; local
100 dbus_message_iter_recurse(iter, &result);
102 dbus_message_iter_get_basic(&result, &authorized);
103 dbus_message_iter_get_basic(&result, &challenge);
/external/bluetooth/bluez/lib/bluetooth/
H A Dl2cap.h114 uint16_t result; member in struct:__anon363
119 /* connect result */
141 uint16_t result; member in struct:__anon365
191 uint16_t result; member in struct:__anon370
200 /* info result */

Completed in 412 milliseconds

1234567891011>>