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

12 3 4 5 6 7 8 91011>>

  /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...]
LEGlyphStorage.h 145 * @param success - set to an error code if the operation fails
149 void getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const;
159 * @param success - set to an error code if the operation fails
163 void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
171 * @param success - set to an error code if the operation fails
175 void getCharIndices(le_int32 charIndices[], LEErrorCode &success) const;
184 * @param success - set to an error code if the operation fails
188 void getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const;
197 * @param success - set to an error code if the operation fails
201 void getGlyphPositions(float positions[], LEErrorCode &success) const
    [all...]
GXLayoutEngine.cpp 19 GXLayoutEngine::GXLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, const MorphTableHeader *morphTable, LEErrorCode &success)
20 : LayoutEngine(fontInstance, scriptCode, languageCode, 0, success), fMorphTable(morphTable)
31 le_int32 GXLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success)
33 if (LE_FAILURE(success)) {
38 success = LE_ILLEGAL_ARGUMENT_ERROR;
42 mapCharsToGlyphs(chars, offset, count, FALSE, rightToLeft, glyphStorage, success);
44 if (LE_FAILURE(success)) {
55 LEGlyphStorage &/*glyphStorage*/, LEErrorCode &success)
57 if (LE_FAILURE(success)) {
62 success = LE_ILLEGAL_ARGUMENT_ERROR
    [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;
  /frameworks/base/core/java/com/android/internal/policy/
IKeyguardExitCallback.aidl 19 void onKeyguardExitResult(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...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
net.js 33 net.get = function(url, success)
35 $.get(url, success);
45 if (xhr.status == 200 && options.success)
46 options.success(xhr.responseText);
60 net.post = function(url, data, success)
66 success: success,
76 success: options.success,
88 success: function(jsonp)
    [all...]

Completed in 164 milliseconds

12 3 4 5 6 7 8 91011>>