/packages/apps/Email/src/com/android/email/activity/ |
UiUtilities.java | 72 public static <T extends View> T getViewOrNull(Activity parent, int viewId) { 73 return (T) parent.findViewById(viewId); 78 public static <T extends View> T getViewOrNull(View parent, int viewId) { 79 return (T) parent.findViewById(viewId); 86 public static <T extends View> T getView(Activity parent, int viewId) { 87 return (T) checkView(parent.findViewById(viewId)); 94 public static <T extends View> T getView(View parent, int viewId) { 95 return (T) checkView(parent.findViewById(viewId)); 117 public static void setVisibilitySafe(Activity parent, int viewId, int visibility) { 118 setVisibilitySafe(parent.findViewById(viewId), visibility) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
ImageViewRule.java | 32 public void onCreate(INode node, INode parent, InsertType insertType) { 33 super.onCreate(node, parent, insertType); 45 parent.removeChild(node);
|
/external/chromium/chrome/browser/ui/gtk/importer/ |
import_lock_dialog_gtk.cc | 20 void ShowImportLockDialog(gfx::NativeWindow parent, 22 ImportLockDialogGtk::Show(parent, importer_host); 29 void ImportLockDialogGtk::Show(GtkWindow* parent, ImporterHost* importer_host) { 30 new ImportLockDialogGtk(parent, importer_host); 33 ImportLockDialogGtk::ImportLockDialogGtk(GtkWindow* parent, 39 parent,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/ |
UiTextValueNode.java | 50 // the parent element, which is actually the first text node of the element. 52 UiElementNode parent = getUiParent(); local 53 if (parent != null) { 54 Node xml_node = parent.getXmlNode(); 84 UiElementNode parent = getUiParent(); local 85 if (parent != null && isValid() && isDirty()) { 87 Node element = parent.prepareCommit();
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman1/ |
AvdManagerPage.java | 40 * @param parent The parent of the composite.
43 public AvdManagerPage(Composite parent, int swtStyle, UpdaterData updaterData) {
44 super(parent, swtStyle);
53 private void createContents(Composite parent) {
54 parent.setLayout(new GridLayout(1, false));
56 Label label = new Label(parent, SWT.NONE);
71 mAvdSelector = new AvdSelector(parent,
|
/external/mesa3d/src/talloc/ |
hieralloc.c | 18 struct hieralloc_header * parent; member in struct:hieralloc_header 53 assert(!header->nextSibling || header->nextSibling->parent == header->parent); 55 assert(!header->prevSibling || header->prevSibling->parent == header->parent); 81 // attach to parent and siblings 82 static void add_to_parent(hieralloc_header_t * parent, hieralloc_header_t * header) 84 assert(NULL == header->parent); 88 if (parent->child) 90 // hieralloc_header_t * child = parent->child 113 hieralloc_header_t * parent = header->parent; local 159 hieralloc_header_t * parent = NULL; local 184 hieralloc_header_t * parent = header->parent; local [all...] |
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
UrlIntentListener.java | 32 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { 36 final Context context = parent.getContext();
|
/external/chromium/chrome/browser/bookmarks/ |
base_bookmark_model_observer.h | 30 const BookmarkNode* parent, 33 const BookmarkNode* parent,
|
/external/chromium/chrome/browser/chromeos/frame/ |
bubble_window.h | 33 static views::Window* Create(gfx::NativeWindow parent, 44 virtual void InitWindow(GtkWindow* parent, const gfx::Rect& bounds);
|
/external/chromium/chrome/browser/sync/engine/ |
conflict_resolver.cc | 77 VLOG(1) << "Item conflicting because its parent not yet committed. Id: " 189 Entry parent(trans, syncable::GET_BY_ID, parentid); 190 if (!parent.good()) // server parent update not received yet 192 // This loop walks upwards from the server parent. If we hit the root (0) 194 // parent id would cause a loop. We don't need more general loop detection 197 Entry parent(trans, syncable::GET_BY_ID, parentid); 198 CHECK(parent.good()); 201 parentid = parent.Get(syncable::PARENT_ID); 221 MutableEntry parent(trans, syncable::GET_BY_ID, parentid) [all...] |
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_all_tabs_controller.h | 30 parent:(const BookmarkNode*)parent
|
bookmark_editor_controller.h | 26 parent:(const BookmarkNode*)parent
|
/external/chromium/chrome/browser/ui/gtk/ |
gtk_custom_menu.cc | 15 GtkWidget *parent; local 20 parent = child->parent; 21 while (GTK_IS_MENU_SHELL(parent)) { 22 if (parent == reinterpret_cast<GtkWidget*>(menu_shell)) 24 parent = GTK_MENU_SHELL(parent)->parent_menu_shell; 37 menu_item = menu_item->parent;
|
theme_install_bubble_view_gtk.h | 18 static void Show(GtkWindow* parent); 26 explicit ThemeInstallBubbleViewGtk(GtkWidget* parent); 38 // Our parent is going down; self destruct. 48 // The parent browser window, over which we position ourselves.
|
/external/chromium/chrome/browser/ui/views/ |
certificate_viewer_win.cc | 13 void ShowCertificateViewer(gfx::NativeWindow parent, 17 // We set our parent to the tab window. This makes the cert dialog created 19 view_info.hwndParent = parent;
|
dialog_stubs_gtk.cc | 32 void EditSearchEngine(gfx::NativeWindow parent, 36 new EditSearchEngineDialog(GTK_WINDOW(parent), template_url, NULL, profile);
|
/external/chromium/chrome/browser/ui/webui/ |
cookies_tree_model_adapter.cc | 62 ui::TreeModelNode* parent, 69 CookieTreeNode* parent_node = model_->AsNode(parent); 82 ui::TreeModelNode* parent, 90 scoped_ptr<Value> parend_id(GetTreeNodeId(model_->AsNode(parent))); 119 void CookiesTreeModelAdapter::SendChildren(CookieTreeNode* parent) { 121 scoped_ptr<Value> parend_id(GetTreeNodeId(model_->AsNode(parent))); 123 cookies_tree_model_util::GetChildNodeList(parent, 0, parent->child_count(),
|
/external/chromium/third_party/libjingle/source/talk/examples/call/ |
mucinviterecvtask.h | 68 MucInviteRecvTask(Task* parent) : XmppTask(parent, XmppEngine::HL_TYPE) {}
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
UiUtils.java | 31 public static void openWarning(Shell parent, String title, String message) { 33 new MessageDialog(parent,
|
/external/iproute2/examples/ |
cbqinit.eth1 | 25 $TC class add dev $DEVICE parent 1:0 classid :1 est 1sec 8sec cbq \ 35 $TC class add dev $DEVICE parent 1:1 classid :2 est 1sec 8sec cbq \ 43 $TC qdisc add dev $DEVICE parent 1:2 sfq quantum 1514b perturb 15 47 $TC class add dev $DEVICE parent 1:1 classid :3 est 2sec 16sec cbq \ 51 $TC qdisc add dev $DEVICE parent 1:3 sfq quantum 1514b perturb 15 55 $TC class add dev $DEVICE parent 1:1 classid :4 est 1sec 8sec cbq \ 59 $TC qdisc add dev $DEVICE parent 1:4 sfq quantum 1514b perturb 15 63 $TC class add dev $DEVICE parent 1:1 classid 1:7FFE cbq \ 73 $TC class add dev $DEVICE parent 1:7FFE classid 1:7FFF est 4sec 32sec cbq \
|
/external/markdown/markdown/extensions/ |
def_list.py | 31 def test(self, parent, block): 34 def run(self, parent, blocks): 44 sibling = self.lastChild(parent) 49 parent.remove(sibling) 51 sibling = self.lastChild(parent) 62 dl = etree.SubElement(parent, 'dl') 82 def create_item(parent, block): 83 """ Create a new dd and parse the block with it as the parent. """ 84 dd = markdown.etree.SubElement(parent, 'dd')
|
/external/openssl/crypto/x509v3/ |
pcy_node.c | 95 const X509_POLICY_NODE *parent, 103 if (node->parent == parent) 114 X509_POLICY_NODE *parent, 122 node->parent = parent; 154 if (parent) 155 parent->nchild++;
|
/external/replicaisland/src/com/replica/replicaisland/ |
GravityComponent.java | 41 public void update(float timeDelta, BaseObject parent) { 44 ((GameObject) parent).getVelocity().add(mScaledGravity);
|
/external/webkit/Source/WebCore/accessibility/ |
AccessibilityScrollbar.h | 43 void setParent(AccessibilityObject* parent) { m_parent = parent; }
|
/external/webkit/Source/WebCore/css/ |
StyleList.h | 43 StyleList(StyleBase* parent) : StyleBase(parent) { }
|