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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_base.h 31 virtual void SendResponse(bool success) OVERRIDE;
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
image_writer_private_api.h 23 void OnWriteStarted(bool success, const std::string& error);
36 void OnWriteStarted(bool success, const std::string& error);
49 void OnWriteCancelled(bool success, const std::string& error);
75 bool success);
image_writer_private_api.cc 63 bool success,
65 if (!success) {
69 SendResponse(success);
109 bool success,
111 if (!success) {
114 SendResponse(success);
133 bool success,
135 if (!success) {
138 SendResponse(success);
176 bool success) {
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
import_data_overlay.css 23 #import-success-header {
27 #import-success-image {
  /external/chromium_org/components/dom_distiller/core/
fake_db.h 35 void InitCallback(bool success);
37 void LoadCallback(bool success);
39 void UpdateCallback(bool success);
47 bool success);
fake_db.cc 50 void FakeDB::InitCallback(bool success) {
51 init_callback_.Run(success);
55 void FakeDB::LoadCallback(bool success) {
56 load_callback_.Run(success);
60 void FakeDB::UpdateCallback(bool success) {
61 update_callback_.Run(success);
69 bool success) {
70 callback.Run(success, entries.Pass());
dom_distiller_database.cc 109 const bool* success) {
110 callback.Run(*success);
114 const bool* success) {
115 callback.Run(*success);
119 const bool* success,
121 callback.Run(*success, entries.Pass());
126 bool* success) {
127 DCHECK(success);
130 *success = database->Init(database_dir);
136 bool* success) {
171 bool* success = new bool(false); local
186 bool* success = new bool(false); local
199 bool* success = new bool(false); local
    [all...]
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
CriteriaHelper.java 65 boolean success = false;
66 while (count < maxAttempts && !success) {
69 success = pollForCriteria(criteria, maxTimeoutMs, checkIntervalMs);
71 return success;
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
WebStorageQuotaCallbacksImpl.h 47 static WebStorageQuotaCallbacksImpl* createLeakedPtr(PassOwnPtr<StorageUsageCallback> success, PassOwnPtr<StorageErrorCallback> error)
49 OwnPtr<WebStorageQuotaCallbacksImpl> callbacks = adoptPtr(new WebStorageQuotaCallbacksImpl(success, error));
53 static WebStorageQuotaCallbacksImpl* createLeakedPtr(PassOwnPtr<StorageQuotaCallback> success, PassOwnPtr<StorageErrorCallback> error)
55 OwnPtr<WebStorageQuotaCallbacksImpl> callbacks = adoptPtr(new WebStorageQuotaCallbacksImpl(success, error));
  /external/icu4c/layout/
IndicLayoutEngine.h 50 * @param success - set to an error code if the operation fails
59 le_int32 typoFlags, le_bool version2, const GlyphSubstitutionTableHeader *gsubTable, LEErrorCode &success);
68 * @param success - set to an error code if the operation fails
76 le_int32 typoFlags, LEErrorCode &success);
117 * @param success - set to an error code if the operation fails
124 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success);
145 * @param success - set to an error code if the operation fails
155 LEGlyphStorage &glyphStorage, LEErrorCode &success);
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...]
  /external/valgrind/main/memcheck/tests/
metadata.stdout.exp 1 result of GET is 1 (1 for success)
12 result of SET is 1 (1 for success)
  /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/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);

Completed in 338 milliseconds

1 2 3 4 56 7 8 91011>>