/packages/inputmethods/PinyinIME/jni/command/ |
pinyinime_dictbuilder.cpp | 32 bool success; local 34 success = dict_trie->build_dict(argv[1], argv[2]); 36 success = dict_trie->build_dict("../data/rawdict_utf16_65105_freq.txt", 39 if (success) { 46 success = dict_trie->save_dict("../../res/raw/dict_pinyin.dat"); 48 if (success) {
|
/frameworks/base/core/java/android/view/ |
IOnKeyguardExitResult.aidl | 23 void onKeyguardExitResult(boolean success);
|
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/ |
029-define-chain-obj-to-func-with-args.c | 2 #define foo bar(success)
|
036-define-func-non-macro-multi-token-argument.c | 1 #define bar success
|
038-func-arg-with-commas.c | 1 #define foo(x) success
|
/external/mesa3d/src/glsl/glcpp/tests/ |
029-define-chain-obj-to-func-with-args.c | 2 #define foo bar(success)
|
036-define-func-non-macro-multi-token-argument.c | 1 #define bar success
|
038-func-arg-with-commas.c | 1 #define foo(x) success
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/ |
TestCaseOutputResult.java | 40 private boolean success ; field in class:TestCaseOutputResult 43 this.success = result; 52 return success ? OK : FAIL; 56 this.success = value; 60 success = Boolean.parseBoolean(script);
|
/external/chromium_org/remoting/base/ |
auto_thread_task_runner_unittest.cc | 13 void SetFlagTask(bool* success) { 14 *success = true; 28 bool success = false; local 29 message_loop.PostTask(FROM_HERE, base::Bind(&SetFlagTask, &success)); 33 EXPECT_TRUE(success);
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
gUnitTestResult.java | 32 private boolean success; field in class:gUnitTestResult 38 public gUnitTestResult(boolean success, String output) { 39 this.success = success; 43 public gUnitTestResult(boolean success, String output, boolean isLexerTest) { 44 this(success, output); 48 public gUnitTestResult(boolean success, String output, String returned) { 49 this(success, output); 54 return success;
|
/external/chromium_org/chrome/browser/automation/ |
testing_automation_provider_win.cc | 16 void TestingAutomationProvider::TerminateSession(int handle, bool* success) { 17 *success = false; 22 *success = (::PostMessageW(window, WM_ENDSESSION, 0, 0) == TRUE); 28 bool* success) { 29 *success = false; 34 *success = true;
|
/external/icu4c/layout/ |
loengine.cpp | 23 LEErrorCode *success) 27 return (le_engine *) LayoutEngine::layoutEngineFactory(fontInstance, scriptCode, languageCode, typo_flags, *success); 47 LEErrorCode *success) 52 *success = LE_ILLEGAL_ARGUMENT_ERROR; 56 return le->layoutChars(chars, offset, count, max, rightToLeft, x, y, *success); 61 LEErrorCode *success) 66 *success = LE_ILLEGAL_ARGUMENT_ERROR; 76 LEErrorCode *success) 81 *success = LE_ILLEGAL_ARGUMENT_ERROR; 85 le->getGlyphs(glyphs, *success); [all...] |
LEGlyphStorage.cpp | 65 void LEGlyphStorage::allocateGlyphArray(le_int32 initialGlyphCount, le_bool rightToLeft, LEErrorCode &success) 67 if (LE_FAILURE(success)) { 72 success = LE_ILLEGAL_ARGUMENT_ERROR; 81 success = LE_MEMORY_ALLOCATION_ERROR; 92 success = LE_MEMORY_ALLOCATION_ERROR; 119 success = LE_MEMORY_ALLOCATION_ERROR; 126 le_int32 LEGlyphStorage::allocatePositions(LEErrorCode &success) 128 if (LE_FAILURE(success)) { 133 success = LE_INTERNAL_ERROR; 140 success = LE_MEMORY_ALLOCATION_ERROR 518 LEErrorCode success = LE_NO_ERROR; local [all...] |
GlyphPositioningTables.cpp | 21 const GlyphDefinitionTableHeader *glyphDefinitionTableHeader, LEErrorCode &success, 24 if (LE_FAILURE(success)) { 28 GlyphPositioningLookupProcessor processor(this, scriptTag, languageTag, featureMap, featureMapCount, featureOrder, success); 29 if (LE_FAILURE(success)) { 33 processor.process(glyphStorage, glyphPositionAdjustments, rightToLeft, glyphDefinitionTableHeader, fontInstance, success);
|
KhmerLayoutEngine.cpp | 21 le_int32 typoFlags, const GlyphSubstitutionTableHeader *gsubTable, LEErrorCode &success) 22 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success) 29 le_int32 typoFlags, LEErrorCode &success) 30 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success) 45 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) 47 if (LE_FAILURE(success)) { 52 success = LE_ILLEGAL_ARGUMENT_ERROR; 61 success = LE_MEMORY_ALLOCATION_ERROR; 65 glyphStorage.allocateGlyphArray(worstCase, rightToLeft, success); 66 glyphStorage.allocateAuxData(success); [all...] |
TibetanLayoutEngine.cpp | 27 le_int32 typoFlags, const GlyphSubstitutionTableHeader *gsubTable, LEErrorCode &success) 28 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success) 35 le_int32 typoFlags, LEErrorCode &success) 36 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success) 51 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) 53 if (LE_FAILURE(success)) { 58 success = LE_ILLEGAL_ARGUMENT_ERROR; 67 success = LE_MEMORY_ALLOCATION_ERROR; 71 glyphStorage.allocateGlyphArray(worstCase, rightToLeft, success); 72 glyphStorage.allocateAuxData(success); [all...] |
/external/chromium_org/chrome/common/safe_browsing/ |
zip_analyzer.h | 17 bool success; member in struct:safe_browsing::zip_analyzer::Results 21 Results() : success(false), has_executable(false), has_archive(false) {}
|
/external/chromium_org/chrome/test/base/ |
history_index_restore_observer.cc | 15 void HistoryIndexRestoreObserver::OnCacheRestoreFinished(bool success) { 16 succeeded_ = success;
|
/external/chromium_org/components/nacl/browser/ |
nacl_process_host_unittest.cc | 12 bool success = VirtualFree(addr, 0, MEM_RELEASE); local 13 ASSERT_TRUE(success);
|
/frameworks/base/core/java/com/android/internal/policy/ |
IKeyguardExitCallback.aidl | 19 void onKeyguardExitResult(boolean success);
|
/external/chromium_org/printing/android/java/src/org/chromium/printing/ |
PrintingContextInterface.java | 21 * @param success True if the settings are successfully prepared to be used by the native side. 23 void askUserForSettingsReply(boolean success);
|
/external/chromium_org/chrome/browser/extensions/api/system_cpu/ |
system_cpu_api.cc | 27 void SystemCpuGetInfoFunction::OnGetCpuInfoCompleted(bool success) { 28 if (success) 32 SendResponse(success);
|
/external/chromium_org/chrome/browser/extensions/api/system_memory/ |
system_memory_api.cc | 23 void SystemMemoryGetInfoFunction::OnGetMemoryInfoCompleted(bool success) { 24 if (success) 28 SendResponse(success);
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
NodeIsSupported.java | 90 boolean success; 103 success = element.isSupported(featureXML, version); 104 assertTrue("nodeissupported01_XML1", success); 105 success = element.isSupported(featureXML, version1); 106 assertTrue("nodeissupported01_XML2", success); 110 success = element.isSupported(featureCore, version); 111 assertTrue("nodeissupported01_Core1", success); 112 success = element.isSupported(featureCore, version1); 113 success = element.isSupported(featureCore, version2); 114 assertTrue("nodeissupported01_Core3", success); [all...] |