HomeSort by relevance Sort by last modified time
    Searched refs:detached (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementLifecycleCallbacks.h 49 Detached = 1 << 2,
57 virtual void detached(Element*) = 0;
CustomElementCallbackInvocation.cpp 54 ASSERT(m_which == CustomElementLifecycleCallbacks::Attached || m_which == CustomElementLifecycleCallbacks::Detached);
63 case CustomElementLifecycleCallbacks::Detached:
64 callbacks()->detached(element);
122 case CustomElementLifecycleCallbacks::Detached:
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8CustomElementLifecycleCallbacks.h 51 static PassRefPtr<V8CustomElementLifecycleCallbacks> create(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
58 V8CustomElementLifecycleCallbacks(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
62 virtual void detached(Element*) OVERRIDE;
V8CustomElementLifecycleCallbacks.cpp 50 V(detached, Detached) \
53 PassRefPtr<V8CustomElementLifecycleCallbacks> V8CustomElementLifecycleCallbacks::create(ScriptState* scriptState, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
66 return adoptRef(new V8CustomElementLifecycleCallbacks(scriptState, prototype, created, attached, detached, attributeChanged));
69 static CustomElementLifecycleCallbacks::CallbackType flagSet(v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
77 if (!detached.IsEmpty())
78 flags |= CustomElementLifecycleCallbacks::Detached;
92 V8CustomElementLifecycleCallbacks::V8CustomElementLifecycleCallbacks(ScriptState* scriptState, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
93 : CustomElementLifecycleCallbacks(flagSet(attached, detached, attributeChanged))
100 , m_detached(scriptState->isolate(), detached)
198 void V8CustomElementLifecycleCallbacks::detached(Element* element) function in class:WebCore::V8CustomElementLifecycleCallbacks
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Server/
NetlinkServer.cpp 144 // Only handle connections which have not been detached
145 if (connection->detached == false) {
160 connection->detached == false) {
172 connection->detached = true;
187 if (i->second->detached == false) {
249 bool detached = connection->detached; local
260 // Remove connection from list only if detached, the detached
262 if (detached == false)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
verify.c 80 BIO *data,*detached=NULL,*p7bio=NULL; local
114 detached=BIO_new(BIO_s_file());
115 if (!BIO_read_filename(detached,argv[1]))
146 if ((PKCS7_get_detached(p7) || detached))
148 if (detached == NULL)
154 p7bio=PKCS7_dataInit(p7,detached);
dec.c 83 BIO *data,*detached=NULL,*p7bio=NULL; local
108 detached=BIO_new(BIO_s_file());
109 if (!BIO_read_filename(detached,argv[1]))
151 /* We cannot support detached encryption */
152 p7bio=PKCS7_dataDecode(p7,pkey,detached,x509);
  /external/openssl/crypto/pkcs7/
verify.c 80 BIO *data,*detached=NULL,*p7bio=NULL; local
114 detached=BIO_new(BIO_s_file());
115 if (!BIO_read_filename(detached,argv[1]))
146 if ((PKCS7_get_detached(p7) || detached))
148 if (detached == NULL)
154 p7bio=PKCS7_dataInit(p7,detached);
dec.c 83 BIO *data,*detached=NULL,*p7bio=NULL; local
108 detached=BIO_new(BIO_s_file());
109 if (!BIO_read_filename(detached,argv[1]))
151 /* We cannot support detached encryption */
152 p7bio=PKCS7_dataDecode(p7,pkey,detached,x509);
  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_netlink.c 196 static int linux_netlink_parse(char *buffer, size_t len, int *detached, const char **sys_name,
204 *detached = 0;
212 *detached = 1;
272 int detached, r; local
286 r = linux_netlink_parse(buffer, len, &detached, &sys_name,
292 busnum, devaddr, sys_name, detached ? "yes" : "no");
295 if (detached)
linux_udev.c 198 static int udev_device_info(struct libusb_context *ctx, int detached,
213 return linux_get_device_address(ctx, detached, busnum, devaddr,
222 int detached; local
231 detached = !strncmp(udev_action, "remove", 6);
233 r = udev_device_info(NULL, detached, udev_dev, &busnum, &devaddr, &sys_name);
242 } else if (detached) {
linux_usbfs.h 175 int linux_get_device_address (struct libusb_context *ctx, int detached,
  /external/compiler-rt/lib/lsan/
lsan_thread.h 43 u32 ThreadCreate(u32 tid, uptr uid, bool detached);
lsan_thread.cc 80 u32 ThreadCreate(u32 parent_tid, uptr user_id, bool detached) {
81 return thread_registry->CreateThread(user_id, detached, parent_tid,
lsan_interceptors.cc 249 int detached = 0; local
250 pthread_attr_getdetachstate(attr, &detached);
257 int tid = ThreadCreate(GetCurrentThread(), *(uptr *)th, detached);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
Connection.h 53 bool detached; /**< Connection state */ member in class:Connection
NetlinkConnection.cpp 63 detached = false;
86 detached = false;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.cc 22 detached(false), parent_tid(0), next(0) {
49 CHECK_EQ(false, detached);
57 if (!detached)
73 detached = _detached;
121 u32 ThreadRegistry::CreateThread(uptr user_id, bool detached, u32 parent_tid,
152 tctx->SetCreated(user_id, total_threads_++, detached,
234 tctx->detached = true;
262 if (tctx->detached) {
sanitizer_thread_registry.h 47 bool detached; member in class:__sanitizer::ThreadContextBase
94 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
  /external/chromium_org/third_party/skia/tests/
LayerRasterizerTest.cpp 100 SkAutoTUnref<SkLayerRasterizer> detached(builder.detachRasterizer());
105 REPORTER_ASSERT(reporter, largerCount == LayerRasterizerTester::CountLayers(*detached.get()));
114 const SkDeque& layersDetached = LayerRasterizerTester::GetLayers(*detached.get());
  /external/skia/tests/
LayerRasterizerTest.cpp 100 SkAutoTUnref<SkLayerRasterizer> detached(builder.detachRasterizer());
105 REPORTER_ASSERT(reporter, largerCount == LayerRasterizerTester::CountLayers(*detached.get()));
114 const SkDeque& layersDetached = LayerRasterizerTester::GetLayers(*detached.get());
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_linux.cc 231 bool detached;
350 ScopedThread::ScopedThread(bool detached, bool main) {
353 impl_->detached = detached;
358 pthread_attr_setdetachstate(&attr, detached);
369 if (!impl_->detached)
377 CHECK(!impl_->detached);
378 impl_->detached = true;
  /external/chromium_org/third_party/skia/src/core/
SkPictureFlat.h 512 SkFlatData* detached = this->detachScratch(); local
513 fHash.add(detached);
514 *fIndexedData.append() = detached;
516 return detached;
541 SkFlatData* detached = (SkFlatData*)fController->allocThrow(fScratch.bytesWritten()); local
546 memcpy(detached, scratch, fScratch.bytesWritten());
548 // We can now reuse fScratch, and detached will live until fController dies.
549 return detached;
  /external/skia/src/core/
SkPictureFlat.h 512 SkFlatData* detached = this->detachScratch(); local
513 fHash.add(detached);
514 *fIndexedData.append() = detached;
516 return detached;
541 SkFlatData* detached = (SkFlatData*)fController->allocThrow(fScratch.bytesWritten()); local
546 memcpy(detached, scratch, fScratch.bytesWritten());
548 // We can now reuse fScratch, and detached will live until fController dies.
549 return detached;
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationPagerAdapter.java 63 * Similar to singleton mode, but once enabled, detached mode is permanent for this adapter.
140 * Returns true if singleton mode or detached mode have been enabled, or if the current cursor
151 // In detached mode, the pager is decoupled from the cursor. Nothing should rely on the
260 final boolean detached = b.getBoolean(BUNDLE_DETACHED_MODE);
261 setDetachedMode(detached);
266 private void setDetachedMode(boolean detached) {
267 if (mDetachedMode == detached) {
270 mDetachedMode = detached;
307 // If we are in detached mode, changes to the cursor are of no interest to us, but they may
322 // enable detached mode and do no more here. the fragment itself will figure ou
    [all...]

Completed in 510 milliseconds

1 2 3