HomeSort by relevance Sort by last modified time
    Searched defs:update (Results 76 - 100 of 1083) sorted by null

1 2 34 5 6 7 8 91011>>

  /cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/
AmbiguousContentProvider.java 61 public int update(Uri uri, ContentValues values, String selection, method in class:AmbiguousContentProvider
PermissionContentProvider.java 61 public int update(Uri uri, ContentValues values, String selection, method in class:PermissionContentProvider
PermissionContentProviderGranting.java 61 public int update(Uri uri, ContentValues values, String selection, method in class:PermissionContentProviderGranting
PermissionContentProviderPath.java 45 public int update(Uri uri, ContentValues values, String selection, method in class:PermissionContentProviderPath
PermissionContentProviderPathRestricting.java 61 public int update(Uri uri, ContentValues values, String selection, method in class:PermissionContentProviderPathRestricting
PrivateContentProvider.java 61 public int update(Uri uri, ContentValues values, String selection, method in class:PrivateContentProvider
PrivateContentProviderGranting.java 61 public int update(Uri uri, ContentValues values, String selection, method in class:PrivateContentProviderGranting
  /cts/hostsidetests/appsecurity/test-apps/PermissionDeclareAppCompat/src/com/android/cts/permissiondeclareappcompat/
AmbiguousContentProvider.java 61 public int update(Uri uri, ContentValues values, String selection, method in class:AmbiguousContentProvider
  /external/apache-http/src/org/apache/http/conn/
OperatedClientConnection.java 68 * because of an {@link #update update}.
79 * because of an {@link #update update}.
91 * because of an {@link #update update}.
168 void update(Socket sock, HttpHost target, method in interface:OperatedClientConnection
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/
MSOutlookKeyIdCalculator.java 27 dig.update(spkiEnc, 0, spkiEnc.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
PKCS5S1ParametersGenerator.java 41 digest.update(password, 0, password.length);
42 digest.update(salt, 0, salt.length);
47 digest.update(digestBytes, 0, digestBytes.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
DigestInputStream.java 29 digest.update((byte)b);
43 digest.update(b, off, n);
DigestOutputStream.java 22 digest.update((byte)b);
31 digest.update(b, off, len);
MacInputStream.java 29 mac.update((byte)b);
43 mac.update(b, off, n);
MacOutputStream.java 22 mac.update((byte)b);
31 mac.update(b, off, len);
  /external/chromium_org/content/browser/media/
webrtc_internals_message_handler.cc 71 base::string16 update = WebUI::GetJavascriptCall(command, args_vector); local
75 host->ExecuteJavascriptInWebFrame(base::string16(), update); local
  /external/chromium_org/content/renderer/media/
webcontentdecryptionmodulesession_impl.cc 49 void WebContentDecryptionModuleSessionImpl::update(const uint8* response, function in class:content::WebContentDecryptionModuleSessionImpl
  /external/chromium_org/remoting/webapp/
connection_stats.js 17 * @param {Element} statsElement The HTML div to which to update stats.
31 * Update the statistics panel.
34 remoting.ConnectionStats.prototype.update = function(stats) {
  /external/chromium_org/third_party/WebKit/Source/core/loader/appcache/
ApplicationCache.cpp 70 void ApplicationCache::update(ExceptionState& exceptionState) function in class:WebCore::ApplicationCache
73 if (!cacheHost || !cacheHost->update())
74 exceptionState.throwDOMException(InvalidStateError, "there is no application cache to update.");
  /external/chromium_org/third_party/WebKit/Source/platform/drm/
ContentDecryptionModuleSession.cpp 63 void ContentDecryptionModuleSession::update(const Uint8Array& key) function in class:WebCore::ContentDecryptionModuleSession
65 m_session->update(key.data(), key.length());
  /external/chromium_org/third_party/WebKit/Source/web/
PageOverlay.cpp 109 void PageOverlay::update() function in class:blink::PageOverlay
PageOverlayList.cpp 87 // update overlay layers' z-order. Otherwise, just update current overlay.
91 update();
93 pageOverlay->update();
109 void PageOverlayList::update() function in class:blink::PageOverlayList
112 m_pageOverlays[i]->update();
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
mocktool.py 48 self.update(**kwargs)
50 def update(self, **kwargs): member in class:MockOptions
51 self.__dict__.update(**kwargs)
  /external/chromium_org/ui/accessibility/
ax_tree_serializer_unittest.cc 57 // the tree and send them as part of the next update.
86 AXTreeUpdate update; local
87 serializer_->SerializeChanges(tree1_->GetFromId(1), &update);
89 // The update should only touch nodes 1 and 4 - nodes 2 and 3 are unchanged
91 EXPECT_EQ(0, update.node_id_to_clear);
92 ASSERT_EQ(static_cast<size_t>(2), update.nodes.size());
93 EXPECT_EQ(1, update.nodes[0].id);
94 EXPECT_EQ(4, update.nodes[1].id);
123 AXTreeUpdate update; local
124 serializer_->SerializeChanges(tree1_->GetFromId(4), &update);
169 AXTreeUpdate update; local
    [all...]
ax_tree_unittest.cc 40 AXTreeUpdate update; local
41 serializer.SerializeChanges(src_tree.GetRoot(), &update);
44 ASSERT_TRUE(dst_tree.Unserialize(update));
73 AXTreeUpdate update; local
74 update.node_id_to_clear = 2;
75 update.nodes.resize(1);
76 update.nodes[0].id = 1;
77 update.nodes[0].id = AX_ROLE_ROOT_WEB_AREA;
78 EXPECT_FALSE(tree.Unserialize(update));
94 // but never update it
95 AXTreeUpdate update; local
112 AXTreeUpdate update; local
129 AXTreeUpdate update; local
154 AXTreeUpdate update; local
    [all...]

Completed in 278 milliseconds

1 2 34 5 6 7 8 91011>>