HomeSort by relevance Sort by last modified time
    Searched refs:success (Results 226 - 250 of 3839) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentrenamenode27.js 87 var success;
128 success = false;
133 success = (typeof(ex.code) != 'undefined' && ex.code == 9);
135 assertTrue("throw_NOT_SUPPORTED_ERR_1",success);
139 success = false;
144 success = (typeof(ex.code) != 'undefined' && ex.code == 9);
146 assertTrue("throw_NOT_SUPPORTED_ERR_2",success);
150 success = false;
155 success = (typeof(ex.code) != 'undefined' && ex.code == 9);
157 assertTrue("throw_NOT_SUPPORTED_ERR_3",success);
    [all...]
nodereplacechild23.js 87 var success;
117 success = false;
122 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
124 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR_1",success);
128 success = false;
133 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
135 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR_2",success);
139 success = false;
144 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
146 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR_3",success);
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorDOMStorageAgent.h 63 void setDOMStorageItem(ErrorString*, int storageId, const String& key, const String& value, bool* success);
64 void removeDOMStorageItem(ErrorString*, int storageId, const String& key, bool* success);
  /external/webkit/Source/WebCore/platform/graphics/win/
GlyphPageTreeNodeCairoWin.cpp 54 bool success = result != GDI_ERROR && static_cast<unsigned>(result) == bufferLength; local
55 if (success) {
  /frameworks/base/core/java/android/webkit/
SslErrorHandlerImpl.java 98 boolean success = (outState != null);
99 if (success) {
104 return success;
112 boolean success = (inState != null);
113 if (success) {
114 success = inState.containsKey("ssl-error-handler");
115 if (success) {
120 return success;
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccIoResult.java 49 public boolean success() { method in class:IccIoResult
54 * Returns exception on error or null if success
57 if (success()) return null;
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractInterruptibleChannel.java 99 * @param success
109 protected final void end(boolean success) throws AsynchronousCloseException {
115 if (!success && closed) {
  /external/chromium/base/
string_number_conversions_unittest.cc 79 bool success; member in struct:base::__anon2354
110 EXPECT_EQ(cases[i].success, StringToInt(cases[i].input, &output));
113 EXPECT_EQ(cases[i].success, StringToInt(cases[i].input.begin(),
118 EXPECT_EQ(cases[i].success, StringToInt(
125 EXPECT_EQ(cases[i].success, StringToInt(utf16_input, &output));
128 EXPECT_EQ(cases[i].success, StringToInt(utf16_input.begin(),
133 EXPECT_EQ(cases[i].success, StringToInt(
177 bool success; member in struct:base::__anon2355
215 EXPECT_EQ(cases[i].success, StringToInt64(cases[i].input, &output));
218 EXPECT_EQ(cases[i].success, StringToInt64(cases[i].input.begin()
279 bool success; member in struct:base::__anon2356
349 bool success; member in struct:base::__anon2357
388 bool success; member in struct:base::__anon2358
    [all...]
version_unittest.cc 21 bool success; member in struct:version_string
44 EXPECT_EQ(cases[i].success, vers.get() != NULL);
45 if (cases[i].success) {
  /external/chromium/chrome/browser/extensions/
file_reader.h 23 // Reports success or failure and the data of the file upon success.
38 void RunCallback(bool success, const std::string& data);
  /external/chromium/third_party/libjingle/source/talk/xmpp/
saslmechanism.h 58 // Notification of a SASL "<success>". Sometimes information
59 // is passed on success.
60 virtual void HandleSaslSuccess(const XmlElement * success);
  /external/qemu/telephony/
remote_call.h 25 typedef void (*RemoteResultFunc)( void* opaque, int success );
38 * is called to indicate success or failure after some time.
  /external/webkit/Source/WebCore/bindings/v8/
ScriptScope.h 42 bool success();
  /external/webkit/Source/WebCore/platform/win/
ClipboardUtilitiesWin.h 68 String getURL(IDataObject*, DragData::FilenameConversionPolicy, bool& success, String* title = 0);
70 String getPlainText(IDataObject*, bool& success);
72 String getTextHTML(IDataObject*, bool& success);
74 String getCFHTML(IDataObject*, bool& success);
  /frameworks/base/core/java/android/util/
Base64InputStream.java 140 boolean success;
143 success = coder.process(EMPTY, 0, 0, true);
145 success = coder.process(inputBuffer, 0, bytesRead, false);
147 if (!success) {
  /external/chromium/third_party/libjingle/source/talk/examples/call/
discoitemsquerytask.cc 68 bool success = false;
73 success = true;
77 if (!success) {
  /external/icu4c/layout/
LEInsertionList.cpp 54 LEGlyphID *LEInsertionList::insert(le_int32 position, le_int32 count, LEErrorCode &success)
56 if (LE_FAILURE(success)) {
62 success = LE_MEMORY_ALLOCATION_ERROR;
  /external/webkit/Source/WebKit/android/
RenderSkinAndroid.cpp 73 bool success = SkImageDecoder::DecodeMemory(asset->getBuffer(false), asset->getLength(), bitmap); local
74 if (!success) {
79 return success;
  /frameworks/base/core/java/android/app/
KeyguardManager.java 100 * @param success True if the user was able to authenticate, false if
103 void onKeyguardExitResult(boolean success);
207 public void onKeyguardExitResult(boolean success) throws RemoteException {
208 callback.onKeyguardExitResult(success);
  /frameworks/base/libs/utils/
ObbFile.cpp 89 bool success = false; local
96 success = readFrom(fd);
99 if (!success) {
104 return success;
229 bool success = false; local
235 success = writeTo(fd);
239 if (!success) {
242 return success;
314 bool success = false; local
320 success = removeFrom(fd)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrremovechild1.java 75 boolean success = false;
79 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
81 assertTrue("setValue_throws_NO_MODIFICATION_ERR", success);
attrreplacechild1.java 77 boolean success = false;
81 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
83 assertTrue("setValue_throws_NO_MODIFICATION_ERR", success);
characterdataappenddatanomodificationallowederr.java 90 boolean success = false;
94 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
96 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR", success);
characterdataappenddatanomodificationallowederrEE.java 77 boolean success = false;
81 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
83 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR", success);
characterdatadeletedatanomodificationallowederr.java 90 boolean success = false;
94 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
96 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR", success);

Completed in 829 milliseconds

1 2 3 4 5 6 7 8 91011>>