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

<<11121314151617181920>>

  /external/chromium/chrome/browser/extensions/
execute_code_in_tab_function.h 29 void OnExecuteCodeFinished(int request_id, bool success,
34 void DidLoadFile(bool success, const std::string& data);
37 // true on success. If true is returned, this does an AddRef.
  /external/chromium/chrome/browser/net/
url_request_mock_link_doctor_job.cc 17 bool success = PathService::Get(chrome::DIR_TEST_DATA, &test_dir); local
18 DCHECK(success);
  /external/chromium_org/base/
rand_util_posix.cc 49 bool success = ReadFromFD(urandom_fd, reinterpret_cast<char*>(&number), local
51 CHECK(success);
  /external/chromium_org/chrome/browser/chromeos/file_manager/
volume_manager_observer.h 47 const std::string& device_path, bool success) = 0;
51 const std::string& device_path, bool success) = 0;
  /external/chromium_org/chrome/browser/chromeos/login/
online_attempt_host.h 29 virtual void OnChecked(const std::string &username, bool success) = 0;
50 void ResolveOnUIThread(bool success);
  /external/chromium_org/content/child/service_worker/
service_worker_message_filter.cc 26 const bool success = PickleIterator(msg).ReadInt(&ipc_thread_id); local
27 DCHECK(success);
  /external/chromium_org/extensions/browser/
file_reader.cc 30 bool success = base::ReadFileToString(resource_.GetFilePath(), &data); local
31 origin_loop_->PostTask(FROM_HERE, base::Bind(callback_, success, data));
  /external/chromium_org/ppapi/shared_impl/
ppb_tcp_socket_shared.h 47 void CompletePendingTransition(bool success);
49 void DoTransition(TransitionType transition, bool success);
  /external/icu4c/layout/
GlyphSubstLookupProc.h 37 LEErrorCode& success);
42 const LEFontInstance *fontInstance, LEErrorCode& success) const;
HanLayoutEngine.h 42 * @param success - set to an error code if the operation fails
51 le_int32 typoFlags, const GlyphSubstitutionTableHeader *gsubTablem, LEErrorCode &success);
93 * @param success - set to an error code if the operation fails
100 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success);
MPreFixups.cpp 43 void MPreFixups::apply(LEGlyphStorage &glyphStorage, LEErrorCode& success)
45 if (LE_FAILURE(success)) {
66 LEErrorCode success = LE_NO_ERROR; local
76 success = LE_MEMORY_ALLOCATION_ERROR;
84 indexSave[i] = glyphStorage.getCharIndex(mpreIndex + i, success); //charIndices[mpreIndex + i];
89 le_int32 charIndex = glyphStorage.getCharIndex(mpreLimit + i, success);
92 glyphStorage.setCharIndex(mpreIndex + i, charIndex, success);
97 glyphStorage.setCharIndex(mpreDest, indexSave[i], success);
HangulLayoutEngine.cpp 187 le_int32 typoFlags, const GlyphSubstitutionTableHeader *gsubTable, LEErrorCode &success)
188 : OpenTypeLayoutEngine(fontInstance, scriptCode, korLanguageCode, typoFlags, gsubTable, success)
196 le_int32 typoFlags, LEErrorCode &success)
197 : OpenTypeLayoutEngine(fontInstance, scriptCode, korLanguageCode, typoFlags, success)
210 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success)
212 if (LE_FAILURE(success)) {
217 success = LE_ILLEGAL_ARGUMENT_ERROR;
226 success = LE_MEMORY_ALLOCATION_ERROR;
230 glyphStorage.allocateGlyphArray(worstCase, rightToLeft, success);
231 glyphStorage.allocateAuxData(success);
    [all...]
OpenTypeLayoutEngine.cpp 129 le_int32 typoFlags, const GlyphSubstitutionTableHeader *gsubTable, LEErrorCode &success)
130 : LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success), fFeatureMask(minimalFeatures),
220 le_int32 typoFlags, LEErrorCode &success)
221 : LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success), fFeatureOrder(FALSE),
277 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success)
279 if (LE_FAILURE(success)) {
284 success = LE_ILLEGAL_ARGUMENT_ERROR;
297 success = LE_MEMORY_ALLOCATION_ERROR;
301 if (LE_FAILURE(success)) {
309 if (LE_FAILURE(success)) {
    [all...]
LookupProcessor.cpp 23 const LEFontInstance *fontInstance, LEErrorCode& success) const
25 if (LE_FAILURE(success)) {
37 delta = applySubtable(lookupSubtable, lookupType, glyphIterator, fontInstance, success);
39 if (delta > 0 && LE_FAILURE(success)) {
51 const LEFontInstance *fontInstance, LEErrorCode& success) const
53 if (LE_FAILURE(success)) {
81 applyLookupTable(lookupTable, &glyphIterator, fontInstance, success);
82 if (LE_FAILURE(success)) {
95 const LEFontInstance *fontInstance, LEErrorCode& success) const
97 if (LE_FAILURE(success)) {
    [all...]
  /external/wpa_supplicant_8/src/ap/
preauth_auth.h 17 int success);
35 int success)
  /libcore/luni/src/test/java/tests/org/w3c/dom/
Prefix.java 134 boolean success = false;
138 success = (ex.code == DOMException.NAMESPACE_ERR);
140 assertTrue("throw_NAMESPACE_ERR", success);
152 boolean success = false;
156 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
158 assertTrue("throw_INVALID_CHARACTER_ERR", success);
170 boolean success = false;
174 success = (ex.code == DOMException.NAMESPACE_ERR);
176 assertTrue("throw_NAMESPACE_ERR", success);
204 // boolean success = false
    [all...]
  /external/chromium/chrome/browser/ui/webui/chromeos/
imageburner_ui.h 43 virtual void OnDownloadStarted(bool success) = 0;
77 void DownloadStarted(bool success, const GURL& url);
93 virtual void OnImageDirCreated(bool success, ImageBurnTaskProxy* task) = 0;
94 virtual void OnImageUrlCreated(GURL* image_url, bool success) = 0;
108 virtual void OnDownloadStarted(bool success) OVERRIDE;
200 virtual void OnImageDirCreated(bool success, ImageBurnTaskProxy* task)
202 virtual void OnImageUrlCreated(GURL* image_url, bool success) OVERRIDE;
205 virtual void OnDownloadStarted(bool success) OVERRIDE;
209 void OnImageDirCreatedOnUIThread(bool success);
212 void UnzipComplete(bool success);
    [all...]
  /external/valgrind/main/coregrind/m_demangle/
cplus-dem.c 251 They are all non-zero so that they can be used as `success'
1170 int success = 0; local
1412 int success = 1; local
1727 int success = 1; local
1787 int success; local
1843 int success; local
1980 int success = 1; local
2093 int success = 0; local
2533 int success = 0; local
2585 int success = 0; local
2639 int success = 0; local
2737 int success = 1; local
2946 int success = 1; local
3196 int success = 1; local
3280 int success = 1; local
3539 int success; local
3848 int success = 1; local
    [all...]
  /external/chromium/base/i18n/
icu_string_conversions_unittest.cc 111 bool success; member in struct:base::__anon4089
251 bool success = CodepageToWide(kConvertCodepageCases[i].encoded, local
255 EXPECT_EQ(kConvertCodepageCases[i].success, success);
262 if (success &&
266 success = WideToCodepage(wide, kConvertCodepageCases[i].codepage_name,
268 EXPECT_EQ(kConvertCodepageCases[i].success, success);
318 bool success = CodepageToUTF16(kConvertCodepageCases[i].encoded, local
327 EXPECT_EQ(kConvertCodepageCases[i].success, success)
370 bool success = ConvertToUtf8AndNormalize( local
    [all...]
  /external/chromium_org/base/i18n/
icu_string_conversions_unittest.cc 111 bool success; member in struct:base::__anon6188
258 bool success = CodepageToWide(kConvertCodepageCases[i].encoded, local
262 EXPECT_EQ(kConvertCodepageCases[i].success, success);
269 if (success &&
273 success = WideToCodepage(wide, kConvertCodepageCases[i].codepage_name,
275 EXPECT_EQ(kConvertCodepageCases[i].success, success);
325 bool success = CodepageToUTF16(kConvertCodepageCases[i].encoded, local
334 EXPECT_EQ(kConvertCodepageCases[i].success, success)
378 bool success = ConvertToUtf8AndNormalize( local
    [all...]
  /external/chromium_org/chrome/browser/history/android/
android_history_provider_service_unittest.cc 88 bool success() const { function in class:__anon7756::CallbackHelper
105 bool success,
107 success_ = success;
112 bool success,
114 success_ = success;
120 bool success,
122 success_ = success;
128 bool success,
130 success_ = success;
166 EXPECT_TRUE(callback->success());
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
wallpaper_directories.js 52 * the result. Calls success callback if success.
54 * @param {function(DirectoryEntry):void} success Call success with requested
59 requestDir: function(dirName, success, failure) {
73 success(dirEntry);
82 * @param {function(DirectoryEntry):void} success Call success with requested
87 getDirectory: function(dirName, success, failure) {
89 success(this.wallpaperDirs[dirName])
    [all...]
  /external/chromium_org/content/browser/frame_host/
render_frame_host_manager_browsertest.cc 81 bool success = false; local
85 &success));
86 EXPECT_TRUE(success);
100 success = false;
104 &success));
105 EXPECT_TRUE(success);
114 success = false;
118 &success));
119 EXPECT_FALSE(success);
149 bool success = false local
203 bool success = false; local
257 bool success = false; local
304 bool success = false; local
352 bool success = false; local
436 bool success = false; local
541 bool success = false; local
686 bool success = false; local
779 bool success = false; local
846 bool success = false; local
928 bool success = false; local
963 bool success = false; local
1015 bool success = false; local
1154 bool success = false; local
1331 bool success = false; local
    [all...]
  /art/test/067-preemptive-unpark/src/
Main.java 32 if (test.success) {
83 public volatile boolean success = false; field in class:Main.ParkTester
100 success = false;
103 success = true;
  /dalvik/tests/067-preemptive-unpark/src/
Main.java 32 if (test.success) {
83 public volatile boolean success = false; field in class:Main.ParkTester
100 success = false;
103 success = true;

Completed in 725 milliseconds

<<11121314151617181920>>