HomeSort by relevance Sort by last modified time
    Searched refs:success (Results 126 - 150 of 2937) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/core/java/android/print/
IPrintSpoolerCallbacks.aidl 32 void onSetPrintJobStateResult(boolean success, int sequence);
33 void onSetPrintJobTagResult(boolean success, int sequence);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
CsvUtilsTests.java 47 } catch (final CsvParseException success) {
48 assertEquals("Unterminated quote", success.getMessage());
53 } catch (final CsvParseException success) {
54 assertEquals("Unterminated quote", success.getMessage());
59 } catch (final CsvParseException success) {
60 assertEquals("Unterminated quote", success.getMessage());
65 } catch (final CsvParseException success) {
66 assertEquals("Unterminated quote", success.getMessage());
71 } catch (final CsvParseException success) {
72 assertEquals("Raw quote in text", success.getMessage())
    [all...]
  /external/icu4c/layout/
GlyphPosnLookupProc.h 35 LEErrorCode& success);
40 const LEFontInstance *fontInstance, LEErrorCode& success) const;
GlyphSubstLookupProc.cpp 36 LEErrorCode& success)
42 scriptTag, languageTag, featureMap, featureMapCount, featureOrder, success), fFilter(filter)
52 GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const
54 if (LE_FAILURE(success)) {
77 delta = subtable->process(glyphIterator, success, fFilter);
101 delta = subtable->process(this, glyphIterator, fontInstance, success);
109 delta = subtable->process(this, glyphIterator, fontInstance, success);
117 delta = subtable->process(this, lookupType, glyphIterator, fontInstance, success);
OpenTypeLayoutEngine.h 58 * @param success - set to an error code if the operation fails
66 le_int32 typoFlags, const GlyphSubstitutionTableHeader *gsubTable, LEErrorCode &success);
75 * @param success - set to an error code if the operation fails
80 le_int32 typoFlags, LEErrorCode &success);
267 * @param success - set to an error code if the operation fails
274 LEUnicode *&/*outChars*/, LEGlyphStorage &glyphStorage, LEErrorCode &success);
296 * @param success - set to an error code if the operation fails
306 LEGlyphStorage &glyphStorage, LEErrorCode &success);
308 virtual le_int32 glyphSubstitution(le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
329 * @param success - set to an error code if the operation fail
    [all...]
GlyphPosnLookupProc.cpp 41 LEErrorCode& success)
52 success
65 LEErrorCode& success) const
67 if (LE_FAILURE(success)) {
130 delta = subtable->process(this, glyphIterator, fontInstance, success);
138 delta = subtable->process(this, glyphIterator, fontInstance, success);
146 delta = subtable->process(this, lookupType, glyphIterator, fontInstance, success);
  /external/chromium_org/content/public/test/
test_notification_tracker.cc 46 bool success = events_[0].type == type; local
48 return success;
57 bool success = events_[0].type == type1 && events_[1].type == type2; local
59 return success;
69 bool success = events_[0].type == type1 && local
73 return success;
  /external/chromium_org/third_party/re2/re2/testing/
re2_arg_test.cc 18 bool success[6]; member in struct:re2::SuccessTable
99 bool success = kSuccessTable[i].success[column]; \
100 ASSERT_TRUE_M(retval == success, \
102 p, success).c_str()); \
103 if ( success ) { \
  /external/regex-re2/re2/testing/
re2_arg_test.cc 18 bool success[6]; member in struct:re2::SuccessTable
99 bool success = kSuccessTable[i].success[column]; \
100 ASSERT_TRUE_M(retval == success, \
102 p, success).c_str()); \
103 if ( success ) { \
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrsetvaluenomodificationallowederrEE.java 89 boolean success = false;
93 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
95 assertTrue("setValue_throws_NO_MODIFICATION", success);
99 boolean success = false;
103 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
105 assertTrue("setNodeValue_throws_NO_MODIFICATION", success);
documentinvalidcharacterexceptioncreateentref.java 73 boolean success = false;
77 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
79 assertTrue("throw_NOT_SUPPORTED_ERR", success);
84 boolean success = false;
88 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
90 assertTrue("throw_INVALID_CHARACTER_ERR", success);
documentinvalidcharacterexceptioncreateentref1.java 70 boolean success = false;
74 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
76 assertTrue("throw_NOT_SUPPORTED_ERR", success);
81 boolean success = false;
85 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
87 assertTrue("throw_INVALID_CHARACTER_ERR", success);
documentinvalidcharacterexceptioncreatepi.java 73 boolean success = false;
77 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
79 assertTrue("throw_NOT_SUPPORTED_ERR", success);
84 boolean success = false;
88 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
90 assertTrue("throw_INVALID_CHARACTER_ERR", success);
documentinvalidcharacterexceptioncreatepi1.java 70 boolean success = false;
74 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
76 assertTrue("throw_NOT_SUPPORTED_ERR", success);
81 boolean success = false;
85 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
87 assertTrue("throw_INVALID_CHARACTER_ERR", success);
hc_attrappendchild4.java 80 boolean success = false;
84 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
86 assertTrue("throw_NOT_SUPPORTED_ERR", success);
92 boolean success = false;
96 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR);
98 assertTrue("throw_HIERARCHY_REQUEST_ERR", success);
hc_attrinsertbefore5.java 81 boolean success = false;
85 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
87 assertTrue("throw_NOT_SUPPORTED_ERR", success);
93 boolean success = false;
97 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR);
99 assertTrue("throw_HIERARCHY_REQUEST_ERR", success);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapsetnameditemns09.java 84 boolean success = false;
88 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
90 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR_entities", success);
94 boolean success = false;
98 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
100 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR_notations", success);
  /external/chromium_org/chrome/browser/extensions/api/system_display/
display_info_provider_chromeos_unittest.cc 21 void BindRequestDisplayInfoResult(DisplayInfo* target, bool success) {
22 ASSERT_TRUE(success);
26 void BindSetDisplayUnitInfoResult(bool* success,
30 *success = success_in;
50 bool* success,
53 base::Bind(&BindSetDisplayUnitInfoResult, success, error));
340 bool success = false; local
343 &success, &error); local
345 ASSERT_TRUE(success);
359 bool success = false local
362 &success, &error); local
378 bool success = false; local
381 &success, &error); local
397 bool success = false; local
400 &success, &error); local
416 bool success = false; local
419 &success, &error); local
435 bool success = false; local
438 &success, &error); local
454 bool success = false; local
457 &success, &error); local
474 bool success = false; local
477 &success, &error); local
494 bool success = false; local
497 &success, &error); local
514 bool success = false; local
517 &success, &error); local
534 bool success = false; local
537 &success, &error); local
553 bool success = false; local
556 &success, &error); local
572 bool success = false; local
575 &success, &error); local
591 bool success = false; local
594 &success, &error); local
610 bool success = false; local
613 &success, &error); local
629 bool success = false; local
632 &success, &error); local
648 bool success = false; local
651 &success, &error); local
673 bool success = false; local
676 &success, &error); local
690 bool success = false; local
693 &success, &error); local
703 &success, &error); local
715 &success, &error); local
726 &success, &error); local
743 bool success = false; local
746 &success, &error); local
760 bool success = false; local
763 &success, &error); local
774 &success, &error); local
785 &success, &error); local
796 &success, &error); local
807 &success, &error); local
827 bool success = false; local
830 &success, &error); local
849 bool success = false; local
852 &success, &error); local
870 bool success = false; local
873 &success, &error); local
902 bool success = false; local
905 &success, &error); local
    [all...]
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-linux.c 113 EGLBoolean success; local
126 success = eglInitialize(sEglDisplay, &majorVersion, &minorVersion);
127 if (success != EGL_FALSE)
128 success = eglGetConfigs(sEglDisplay, NULL, 0, &numConfigs);
129 if (success != EGL_FALSE)
130 success = eglChooseConfig(sEglDisplay, configAttribs,
132 if (success != EGL_FALSE)
136 success = EGL_FALSE;
138 if (success != EGL_FALSE)
168 if (success != EGL_FALSE
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
compileall.py 42 success = 1
53 success = 0
60 success = 0
61 return success
74 success = 1
83 return success
95 return success
106 success = 0
109 success = 0
112 success =
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
compileall.py 42 success = 1
53 success = 0
60 success = 0
61 return success
74 success = 1
83 return success
95 return success
106 success = 0
109 success = 0
112 success =
    [all...]
  /external/chromium/chrome/common/
service_process_util_posix.cc 63 bool* success) {
66 *success = MessageLoopForIO::current()->WatchFileDescriptor(
69 if (!*success) {
81 *success = sigaction(SIGTERM, &action, &old_action_) == 0;
82 if (!*success) {
98 *success = WatchExecutable();
99 if (!*success) {
156 bool success = false; local
161 &success));
163 return success;
    [all...]
  /external/chromium_org/chrome/browser/chromeos/contacts/
contact_database.cc 76 bool* success = new bool(false); local
82 success),
86 base::Owned(success)));
95 bool* success = new bool(false); local
104 success),
108 base::Owned(success)));
114 bool* success = new bool(false); local
126 success,
132 base::Owned(success),
151 const bool* success) {
    [all...]
  /external/chromium_org/chromeos/attestation/
attestation_flow.h 34 typedef base::Callback<void(bool success,
53 typedef base::Callback<void(bool success,
73 // the existing key on success.
75 // On success |result| will be true and |data| will contain the
97 // success - The status of request creation.
101 bool success,
111 // success - The status of the Privacy CA operation.
115 bool success,
124 // success - The status of the enrollment operation.
128 bool success,
    [all...]
  /external/valgrind/main/memcheck/tests/
atomic_incs.c 51 unsigned long success;
60 : /*out*/"=b"(success)
64 } while (success != 1);
68 unsigned long success;
77 : /*out*/"=b"(success)
81 } while (success != 1);
186 unsigned long success;
195 : /*out*/"=b"(success)
199 } while (success != 1);
203 unsigned long success;
    [all...]

Completed in 1887 milliseconds

1 2 3 4 56 7 8 91011>>