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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/service/dreams/
IDreamService.aidl 23 void attach(IBinder windowToken);
  /frameworks/base/core/java/android/service/wallpaper/
IWallpaperService.aidl 25 void attach(IWallpaperConnection connection,
  /external/chromium/chrome/browser/history/
in_memory_database.cc 69 // Attach to the history database on disk. (We can't ATTACH in the middle of
71 sql::Statement attach(GetDB().GetUniqueStatement("ATTACH ? AS history"));
72 if (!attach) {
73 NOTREACHED() << "Unable to attach to history database.";
77 attach.BindString(0, history_name.value());
79 attach.BindString(0, WideToUTF8(history_name.value()));
81 if (!attach.Run()) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLIElement.h 41 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
HTMLFrameElement.h 42 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
HTMLFrameElement.cpp 73 void HTMLFrameElement::attach(const AttachContext& context) function in class:WebCore::HTMLFrameElement
75 HTMLFrameElementBase::attach(context);
  /external/chromium_org/third_party/skia/include/views/
SkOSWindow_Android.h 32 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo* info);
SkOSWindow_NaCl.h 32 bool attach(SkBackEndTypes /* attachType */, int /* msaaSampleCount */, AttachmentInfo* info) { function in class:SkOSWindow
SkOSWindow_iOS.h 30 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
SkOSWindow_Mac.h 35 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
  /external/skia/include/views/
SkOSWindow_Android.h 32 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo* info);
SkOSWindow_NaCl.h 32 bool attach(SkBackEndTypes /* attachType */, int /* msaaSampleCount */, AttachmentInfo* info) { function in class:SkOSWindow
SkOSWindow_iOS.h 30 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
SkOSWindow_Mac.h 35 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
nonmultipart.py 18 def attach(self, payload):
23 'Cannot attach additional subparts to non-multipart/*')
17 def attach(self, payload): member in class:MIMENonMultipart
message.py 33 message.Message.attach(self, _msg)
multipart.py 32 attach new subparts to the message by using the attach() method.
46 self.attach(p)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
nonmultipart.py 18 def attach(self, payload):
23 'Cannot attach additional subparts to non-multipart/*')
17 def attach(self, payload): member in class:MIMENonMultipart
message.py 33 message.Message.attach(self, _msg)
multipart.py 32 attach new subparts to the message by using the attach() method.
46 self.attach(p)
  /external/chromium_org/chrome/browser/history/
in_memory_database.cc 69 // Attach to the history database on disk. (We can't ATTACH in the middle of
71 sql::Statement attach(GetDB().GetUniqueStatement("ATTACH ? AS history"));
73 attach.BindString(0, history_name.value());
75 attach.BindString(0, WideToUTF8(history_name.value()));
77 if (!attach.Run())
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
PasswordGeneratorButtonElement.h 57 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/heap/
ThreadState.h 50 static void attach(intptr_t* startOfStack);
  /libcore/luni/src/main/java/java/nio/channels/
SelectionKey.java 65 * Attaches an object to this key. It is acceptable to attach {@code null},
69 * the object to attach, or {@code null} to discard the current
74 public final Object attach(Object anObject) { method in class:SelectionKey
  /packages/apps/Mms/src/com/android/mms/transaction/
Observable.java 44 * Attach an observer to this object.
48 public void attach(Observer observer) { method in class:Observable

Completed in 555 milliseconds

1 2 3 4 5 6 7 8 91011>>