/packages/apps/Browser/src/com/android/browser/ |
DataController.java | 91 OnQueryUrlIsBookmark cb = (OnQueryUrlIsBookmark) cc.replyTo; 94 cb.onQueryUrlIsBookmark(url, isBookmark);
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/ |
CropView.java | 219 public void setTouchCallback(TouchCallback cb) { 220 mTouchCallback = cb;
|
/external/chromium/net/tools/dump_cache/ |
upgrade.cc | 326 TestCompletionCallback cb; local 331 NULL, &cache, &cb); 332 if (cb.GetResult(rv) != net::OK) { 607 TestCompletionCallback cb; local 612 NULL, &cache, &cb); 613 if (cb.GetResult(rv) != net::OK) {
|
/external/chromium_org/net/third_party/nss/ssl/ |
dtlscon.c | 292 /* Cancel the timer and call the CB, 823 dtls_StartTimer(sslSocket *ss, DTLSTimerCb cb) 828 ss->ssl3.hs.rtTimerCb = cb; 838 dtls_RestartTimer(sslSocket *ss, PRBool backoff, DTLSTimerCb cb) 846 return dtls_StartTimer(ss, cb); 876 DTLSTimerCb cb = ss->ssl3.hs.rtTimerCb; local 878 /* Cancel the timer so that we can call the CB safely */ 881 /* Now call the CB */ 882 cb(ss); [all...] |
/external/chromium_org/net/tools/dump_cache/ |
upgrade_win.cc | 323 net::TestCompletionCallback cb; local 328 NULL, &cache, cb.callback()); 329 if (cb.GetResult(rv) != net::OK) { 598 net::TestCompletionCallback cb; local 603 NULL, &cache, cb.callback()); 604 if (cb.GetResult(rv) != net::OK) {
|
/external/chromium_org/third_party/openssl/openssl/crypto/bio/ |
bio.h | 136 /* callback is int cb(BIO *bio,state,ret); */ 501 #define BIO_set_proxy_cb(b,cb) BIO_callback_ctrl(b,BIO_C_SET_PROXY_PARAM,3,(void *(*cb)())) 582 #define BIO_set_info_callback(b,cb) (int)BIO_callback_ctrl(b,BIO_CTRL_SET_CALLBACK,cb) 616 /* void BIO_set_ex_free_func(BIO *bio,int idx,void (*cb)()); */ 702 int BIO_dump_cb(int (*cb)(const void *data, size_t len, void *u), 704 int BIO_dump_indent_cb(int (*cb)(const void *data, size_t len, void *u), [all...] |
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
bio.h | 136 /* callback is int cb(BIO *bio,state,ret); */ 501 #define BIO_set_proxy_cb(b,cb) BIO_callback_ctrl(b,BIO_C_SET_PROXY_PARAM,3,(void *(*cb)())) 582 #define BIO_set_info_callback(b,cb) (int)BIO_callback_ctrl(b,BIO_CTRL_SET_CALLBACK,cb) 616 /* void BIO_set_ex_free_func(BIO *bio,int idx,void (*cb)()); */ 702 int BIO_dump_cb(int (*cb)(const void *data, size_t len, void *u), 704 int BIO_dump_indent_cb(int (*cb)(const void *data, size_t len, void *u), [all...] |
ssl.h | 691 void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); 692 void SSL_set_msg_callback(SSL *ssl, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); [all...] |
/external/openssl/crypto/bio/ |
bio.h | 136 /* callback is int cb(BIO *bio,state,ret); */ 498 #define BIO_set_proxy_cb(b,cb) BIO_callback_ctrl(b,BIO_C_SET_PROXY_PARAM,3,(void *(*cb)())) 579 #define BIO_set_info_callback(b,cb) (int)BIO_callback_ctrl(b,BIO_CTRL_SET_CALLBACK,cb) 613 /* void BIO_set_ex_free_func(BIO *bio,int idx,void (*cb)()); */ 699 int BIO_dump_cb(int (*cb)(const void *data, size_t len, void *u), 701 int BIO_dump_indent_cb(int (*cb)(const void *data, size_t len, void *u), [all...] |
/external/openssl/include/openssl/ |
bio.h | 136 /* callback is int cb(BIO *bio,state,ret); */ 498 #define BIO_set_proxy_cb(b,cb) BIO_callback_ctrl(b,BIO_C_SET_PROXY_PARAM,3,(void *(*cb)())) 579 #define BIO_set_info_callback(b,cb) (int)BIO_callback_ctrl(b,BIO_CTRL_SET_CALLBACK,cb) 613 /* void BIO_set_ex_free_func(BIO *bio,int idx,void (*cb)()); */ 699 int BIO_dump_cb(int (*cb)(const void *data, size_t len, void *u), 701 int BIO_dump_indent_cb(int (*cb)(const void *data, size_t len, void *u), [all...] |
ssl.h | 688 void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); 689 void SSL_set_msg_callback(SSL *ssl, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); [all...] |
/libcore/harmony-tests/src/test/java/tests/api/java/nio/charset/ |
CharsetTest.java | 720 CharBuffer cb = c1.decode(ByteBuffer.wrap("abcdefg".getBytes("iso8859-1"))); 721 assertEquals("abcdefg", new String(cb.array())); 722 cb = c1.decode(ByteBuffer.wrap("".getBytes("iso8859-1"))); 723 assertEquals("", new String(cb.array())); 728 CharBuffer cb = c1.decode(ByteBuffer.wrap("abcd\u5D14efg".getBytes("iso8859-1"))); 730 assertEquals(new String(cb.array()).trim(), "abcd" + new String(replacement, "iso8859-1") + "efg"); [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
ViewImage.java | 401 public void run(final MenuHelper.MenuCallback cb) { 407 cb.run(uri, image); 494 ImageGetterCallback cb = new ImageGetterCallback() { local 546 mGetter.setPosition(pos, cb, mAllImages, mHandler); 784 ImageGetterCallback cb = new ImageGetterCallback() { local 873 mGetter.setPosition(pos, cb, mAllImages, mHandler); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderBlock.cpp | 264 RenderObject* cb = parent(); local 265 while (cb && (cb->style()->position() == StaticPosition || (cb->isInline() && !cb->isReplaced())) && !cb->isRenderView()) { 266 if (cb->style()->position() == RelativePosition && cb->isInline() && !cb->isReplaced()) { 267 cb = cb->containingBlock() 2265 RenderBlock* cb = containingBlock(); local 2660 RenderBlock* cb = this; local 2678 RenderBlock* cb = this; local [all...] |
RenderTable.cpp | 255 RenderBlock* cb = containingBlock(); local 259 bool hasPerpendicularContainingBlock = cb->style()->isHorizontalWritingMode() != style()->isHorizontalWritingMode(); 273 if (shrinkToAvoidFloats() && cb->containsFloats() && !hasPerpendicularContainingBlock) { 275 availableContentLogicalWidth = shrinkLogicalWidthToAvoidFloats(marginStart, marginEnd, toRenderBlockFlow(cb), 0); 305 if (avoidsFloats() && cb->containsFloats()) 308 bool hasInvertedDirection = cb->style()->isLeftToRightDirection() == style()->isLeftToRightDirection(); 309 computeInlineDirectionMargins(cb, containerLogicalWidthForAutoMargins, logicalWidth(), [all...] |
/external/openssl/ssl/ |
ssl.h | 688 void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); 689 void SSL_set_msg_callback(SSL *ssl, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); [all...] |
/external/chromium_org/third_party/openssl/openssl/ssl/ |
ssl.h | 691 void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); 692 void SSL_set_msg_callback(SSL *ssl, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_unicode.py | [all...] |
test_weakref.py | 529 # got tp_clear'ed by the time the c2.cb callback got invoked. 532 def cb(self, ignore): member in class:ReferencesTestCase.test_callback_in_cycle_3.C 541 c2.wr = weakref.ref(c1, c2.cb) 552 # c2's class (C) from getting tp_clear'ed before c2.cb is invoked. 557 def cb(self, ignore): member in class:ReferencesTestCase.test_callback_in_cycle_4.C 569 c2.wr = weakref.ref(c1, c2.cb) 629 def cb(self, ignore): member in class:ReferencesTestCase.test_callbacks_on_callback.C 630 alist.append("cb called") 635 callback = c.cb 637 d.wr = weakref.ref(callback, d.cb) # ditt 787 def cb(wparent): function in function:ReferencesTestCase.test_trashcan_16602.C.__init__ [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_unicode.py | [all...] |
test_weakref.py | 529 # got tp_clear'ed by the time the c2.cb callback got invoked. 532 def cb(self, ignore): member in class:ReferencesTestCase.test_callback_in_cycle_3.C 541 c2.wr = weakref.ref(c1, c2.cb) 552 # c2's class (C) from getting tp_clear'ed before c2.cb is invoked. 557 def cb(self, ignore): member in class:ReferencesTestCase.test_callback_in_cycle_4.C 569 c2.wr = weakref.ref(c1, c2.cb) 629 def cb(self, ignore): member in class:ReferencesTestCase.test_callbacks_on_callback.C 630 alist.append("cb called") 635 callback = c.cb 637 d.wr = weakref.ref(callback, d.cb) # ditt 787 def cb(wparent): function in function:ReferencesTestCase.test_trashcan_16602.C.__init__ [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_state_fs.c | [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
r300_state.c | 331 * then CB will not be changed. 509 BEGIN_CB(state->cb, 3); 532 BEGIN_CB(state->cb, 2); 549 BEGIN_CB(clip->cb, r300->clip_state.size); [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_state_fs.c | [all...] |
/external/mesa3d/src/gallium/drivers/r300/ |
r300_state.c | 331 * then CB will not be changed. 509 BEGIN_CB(state->cb, 3); 532 BEGIN_CB(state->cb, 2); 549 BEGIN_CB(clip->cb, r300->clip_state.size); [all...] |