HomeSort by relevance Sort by last modified time
    Searched refs:success (Results 151 - 175 of 2836) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/quota/
DeprecatedStorageQuotaCallbacksImpl.h 46 static PassOwnPtrWillBeRawPtr<DeprecatedStorageQuotaCallbacksImpl> create(StorageUsageCallback* success, StorageErrorCallback* error)
48 return adoptPtrWillBeNoop(new DeprecatedStorageQuotaCallbacksImpl(success, error));
51 static PassOwnPtrWillBeRawPtr<DeprecatedStorageQuotaCallbacksImpl> create(StorageQuotaCallback* success, StorageErrorCallback* error)
53 return adoptPtrWillBeNoop(new DeprecatedStorageQuotaCallbacksImpl(success, error));
  /external/icu/icu4c/source/layout/
AlternateSubstSubtables.cpp 18 GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter) const
22 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
24 if (coverageIndex >= 0 && LE_SUCCESS(success)) {
29 const LEReferenceTo<AlternateSetTable> alternateSetTable(base, success,
IndicLayoutEngine.h 50 * @param success - set to an error code if the operation fails
59 le_int32 typoFlags, le_bool version2, const LEReferenceTo<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);
LigatureSubstProc2.cpp 25 LigatureSubstitutionProcessor2::LigatureSubstitutionProcessor2(const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success)
26 : StateTableProcessor2(morphSubtableHeader, success),
28 componentOffset(0), ligatureOffset(0), entryTable(), ligatureSubstitutionHeader(morphSubtableHeader, success)
30 if (LE_FAILURE(success)) return;
36 entryTable = LEReferenceToArrayOf<LigatureSubstitutionStateEntry2>(stHeader, success, entryTableOffset, LE_UNBOUNDED_ARRAY);
48 le_uint16 LigatureSubstitutionProcessor2::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex2 index, LEErrorCode &success)
50 const LigatureSubstitutionStateEntry2 *entry = entryTable.getAlias(index, success);
51 if(LE_FAILURE(success)) return 0;
72 LEReferenceTo<LigatureActionEntry> ap(stHeader, success, ligActionOffset); // byte offset
73 ap.addObject(ligActionIndex - 1, success); // index offset ( one before the actual start, because we will pre-increment
    [all...]
GlyphLookupTables.h 27 le_bool coversScript(const LETableReference &base, LETag scriptTag, LEErrorCode &success) const;
28 le_bool coversScriptAndLanguage(const LETableReference &base, LETag scriptTag, LETag languageTag, LEErrorCode &success, le_bool exactMatch = FALSE) const;
KernTable.h 42 KernTable(const LETableReference &table, LEErrorCode &success);
47 void process(LEGlyphStorage& storage, LEErrorCode &success);
NonContextualGlyphSubstProc.h 27 virtual void process(LEGlyphStorage &glyphStorage, LEErrorCode &success) = 0;
29 static SubtableProcessor *createInstance(const LEReferenceTo<MorphSubtableHeader> &morphSubtableHeader, LEErrorCode &success);
OpenTypeLayoutEngine.h 59 * @param success - set to an error code if the operation fails
67 le_int32 typoFlags, const LEReferenceTo<GlyphSubstitutionTableHeader> &gsubTable, LEErrorCode &success);
76 * @param success - set to an error code if the operation fails
81 le_int32 typoFlags, LEErrorCode &success);
273 * @param success - set to an error code if the operation fails
280 LEUnicode *&/*outChars*/, LEGlyphStorage &glyphStorage, LEErrorCode &success);
302 * @param success - set to an error code if the operation fails
312 LEGlyphStorage &glyphStorage, LEErrorCode &success);
314 virtual le_int32 glyphSubstitution(le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
335 * @param success - set to an error code if the operation fail
    [all...]
SubtableProcessor.cpp 18 SubtableProcessor::SubtableProcessor(const LEReferenceTo<MorphSubtableHeader> &morphSubtableHeader, LEErrorCode &success)
21 if(LE_FAILURE(success)) return;
SubtableProcessor.h 24 virtual void process(LEGlyphStorage &glyphStorage, LEErrorCode &success) = 0;
28 SubtableProcessor(const LEReferenceTo<MorphSubtableHeader> &morphSubtableHeader, LEErrorCode &success);
SubtableProcessor2.h 24 virtual void process(LEGlyphStorage &glyphStorage, LEErrorCode &success) = 0;
28 SubtableProcessor2(const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success);
TrimmedArrayProcessor2.h 28 virtual void process(LEGlyphStorage &glyphStorage, LEErrorCode &success);
30 TrimmedArrayProcessor2(const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success);
ClassDefinitionTables.h 24 le_int32 getGlyphClass(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
25 le_bool hasGlyphClass(const LETableReference &base, le_int32 glyphClass, LEErrorCode &success) const;
46 le_int32 getGlyphClass(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
47 le_bool hasGlyphClass(const LETableReference &base, le_int32 glyphClass, LEErrorCode &success) const;
64 le_int32 getGlyphClass(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
65 le_bool hasGlyphClass(const LETableReference &base, le_int32 glyphClass, LEErrorCode &success) const;
KernTable.cpp 77 KernTable::KernTable(const LETableReference& base, LEErrorCode &success)
80 if(LE_FAILURE(success) || fTable.isEmpty()) {
86 LEReferenceTo<KernTableHeader> header(fTable, success);
100 if(LE_FAILURE(success)) return;
103 LEReferenceTo<SubtableHeader> subhead(header, success, KERN_TABLE_HEADER_SIZE);
105 if (LE_SUCCESS(success) && !subhead.isEmpty() && subhead->version == 0) {
109 LEReferenceTo<Subtable_0> table(subhead, success, KERN_SUBTABLE_HEADER_SIZE);
111 if(table.isEmpty() || LE_FAILURE(success)) return;
125 if(LE_SUCCESS(success) && nPairs>0) {
130 success,
    [all...]
LookupProcessor.h 38 le_bool rightToLeft, const LEReferenceTo<GlyphDefinitionTableHeader> &glyphDefinitionTableHeader, const LEFontInstance *fontInstance, LEErrorCode& success) const;
40 le_uint32 applyLookupTable(const LEReferenceTo<LookupTable> &lookupTable, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const;
42 le_uint32 applySingleLookup(le_uint16 lookupTableIndex, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const;
45 GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const = 0;
61 LEErrorCode& success);
65 le_int32 selectLookups(const LEReferenceTo<FeatureTable> &featureTable, FeatureMask featureMask, le_int32 order, LEErrorCode &success);
SegmentArrayProcessor2.cpp 24 SegmentArrayProcessor2::SegmentArrayProcessor2(const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success)
25 : NonContextualGlyphSubstitutionProcessor2(morphSubtableHeader, success)
27 const LEReferenceTo<NonContextualGlyphSubstitutionHeader2> header(morphSubtableHeader, success);
28 segmentArrayLookupTable = LEReferenceTo<SegmentArrayLookupTable>(morphSubtableHeader, success, &header->table); // don't parent to 'header' as it is on the stack
35 void SegmentArrayProcessor2::process(LEGlyphStorage &glyphStorage, LEErrorCode &success)
43 const LookupSegment *lookupSegment = segmentArrayLookupTable->lookupSegment(segmentArrayLookupTable, segments, thisGlyph, success);
  /external/chromium_org/base/prefs/
pref_store_observer_mock.cc 26 void PrefStoreObserverMock::OnInitializationCompleted(bool success) {
28 initialization_success = success;
  /external/chromium_org/chrome/browser/chromeos/login/easy_unlock/
easy_unlock_remove_keys_operation.h 22 typedef base::Callback<void (bool success)> RemoveKeysCallback;
35 void OnKeyRemoved(bool success, cryptohome::MountError return_code);
  /external/chromium_org/google_apis/gcm/engine/
gcm_store.cc 10 : success(false),
28 success = false;
  /external/chromium_org/components/leveldb_proto/
proto_database_impl.h 71 const bool* success) {
72 callback.Run(*success);
77 const bool* success) {
78 callback.Run(*success);
83 const bool* success, scoped_ptr<std::vector<T> > entries) {
84 callback.Run(*success, entries.Pass());
88 bool* success) {
89 DCHECK(success);
92 *success = database->Init(database_dir);
99 scoped_ptr<KeyVector> keys_to_remove, bool* success) {
163 bool* success = new bool(false); local
176 bool* success = new bool(false); local
189 bool* success = new bool(false); local
    [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 ) { \
  /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...]
  /external/chromium_org/chrome/browser/extensions/
display_info_provider_chromeos_unittest.cc 32 bool* success,
36 *success = DisplayInfoProvider::Get()->SetInfo(display_id, info, error);
322 bool success = false; local
325 base::Int64ToString(secondary.id()), info, &success, &error); local
327 ASSERT_TRUE(success);
341 bool success = false; local
344 base::Int64ToString(secondary.id()), info, &success, &error); local
346 ASSERT_TRUE(success);
360 bool success = false; local
363 base::Int64ToString(secondary.id()), info, &success, &error) local
379 bool success = false; local
382 base::Int64ToString(secondary.id()), info, &success, &error); local
398 bool success = false; local
401 base::Int64ToString(secondary.id()), info, &success, &error); local
417 bool success = false; local
420 base::Int64ToString(secondary.id()), info, &success, &error); local
436 bool success = false; local
439 base::Int64ToString(secondary.id()), info, &success, &error); local
456 bool success = false; local
459 base::Int64ToString(secondary.id()), info, &success, &error); local
475 bool success = false; local
478 base::Int64ToString(secondary.id()), info, &success, &error); local
494 bool success = false; local
497 base::Int64ToString(secondary.id()), info, &success, &error); local
514 bool success = false; local
517 base::Int64ToString(secondary.id()), info, &success, &error); local
533 bool success = false; local
536 base::Int64ToString(secondary.id()), info, &success, &error); local
552 bool success = false; local
555 base::Int64ToString(secondary.id()), info, &success, &error); local
571 bool success = false; local
574 base::Int64ToString(secondary.id()), info, &success, &error); local
590 bool success = false; local
593 base::Int64ToString(secondary.id()), info, &success, &error); local
609 bool success = false; local
612 base::Int64ToString(secondary.id()), info, &success, &error); local
628 bool success = false; local
631 base::Int64ToString(secondary.id()), info, &success, &error); local
653 bool success = false; local
656 base::Int64ToString(secondary.id()), info, &success, &error); local
670 bool success = false; local
673 base::Int64ToString(secondary.id()), info, &success, &error); local
683 base::Int64ToString(secondary.id()), info, &success, &error); local
695 base::Int64ToString(secondary.id()), info, &success, &error); local
706 base::Int64ToString(secondary.id()), info, &success, &error); local
723 bool success = false; local
726 base::Int64ToString(secondary.id()), info, &success, &error); local
740 bool success = false; local
743 base::Int64ToString(secondary.id()), info, &success, &error); local
754 base::Int64ToString(secondary.id()), info, &success, &error); local
765 base::Int64ToString(secondary.id()), info, &success, &error); local
776 base::Int64ToString(secondary.id()), info, &success, &error); local
787 base::Int64ToString(secondary.id()), info, &success, &error); local
807 bool success = false; local
810 base::Int64ToString(secondary.id()), info, &success, &error); local
829 bool success = false; local
832 base::Int64ToString(secondary.id()), info, &success, &error); local
849 bool success = false; local
852 base::Int64ToString(secondary.id()), info, &success, &error); local
881 bool success = false; local
884 base::Int64ToString(internal_display_id), info, &success, &error); local
    [all...]
  /external/chromium_org/net/spdy/
spdy_frame_builder.cc 68 bool success = true; local
71 success &= WriteUInt16(kControlFlagMask |
73 success &= WriteUInt16(
75 success &= WriteBytes(&flags_length, sizeof(flags_length));
77 return success;
87 bool success = true; local
88 success &= WriteUInt32(stream_id);
95 success &= WriteBytes(&flags_length, sizeof(flags_length));
97 return success;
108 bool success = true local
178 bool success = false; local
202 bool success = false; local
    [all...]

Completed in 1816 milliseconds

1 2 3 4 5 67 8 91011>>