/sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/ |
TreeOverviewView.java | 32 public void createPartControl(Composite parent) { 33 parent.setLayout(new FillLayout()); 35 mTreeViewOverview = new TreeViewOverview(parent);
|
/external/chromium_org/cc/layers/ |
layer_unittest.cc | 90 EXPECT_EQ(parent_.get(), child1_->parent()); 91 EXPECT_EQ(parent_.get(), child2_->parent()); 92 EXPECT_EQ(parent_.get(), child3_->parent()); 97 EXPECT_EQ(child1_.get(), grand_child1_->parent()); 98 EXPECT_EQ(child1_.get(), grand_child2_->parent()); 102 EXPECT_EQ(child2_.get(), grand_child3_->parent()); 158 scoped_refptr<Layer> parent = Layer::Create(); local 161 // Upon creation, layers should not have children or parent. 162 ASSERT_EQ(0U, parent->children().size()); 163 EXPECT_FALSE(child->parent()); 179 scoped_refptr<Layer> parent = Layer::Create(); local 196 scoped_refptr<Layer> parent = Layer::Create(); local 241 scoped_refptr<Layer> parent = Layer::Create(); local 262 scoped_refptr<Layer> parent = Layer::Create(); local 393 scoped_refptr<Layer> parent = Layer::Create(); local 768 scoped_refptr<Layer> parent = Layer::Create(); local 839 scoped_refptr<Layer> parent = Layer::Create(); local 870 scoped_refptr<Layer> parent = Layer::Create(); local 899 scoped_refptr<Layer> parent = Layer::Create(); local 966 scoped_refptr<Layer> parent = Layer::Create(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/ |
PODRedBlackTree.h | 277 // method copies the "m_data" field, but not the child or parent 289 Node* parent() const { return m_parent; } function in class:WebCore::PODRedBlackTree::Node 392 Node* y = x->parent(); 395 y = y->parent(); 415 start = start->parent(); 435 // Link x's parent to y. 436 y->setParent(x->parent()); 437 if (!x->parent()) { 440 if (x == x->parent()->left()) 441 x->parent()->setLeft(y) [all...] |
/external/chromium/chrome/browser/ |
page_info_window.h | 17 void ShowPageInfoBubble(gfx::NativeWindow parent,
|
ssl_client_certificate_selector.h | 18 // Opens a constrained SSL client certificate selection dialog under |parent|, 27 TabContents* parent,
|
/external/chromium/chrome/browser/ui/views/tabs/ |
tab_strip_factory.h | 17 // Creates and returns a new tabstrip. The tabstrip should be added to |parent|. 19 views::View* parent,
|
/external/chromium_org/chrome/browser/ui/android/ |
simple_message_box_android.cc | 11 MessageBoxResult ShowMessageBox(gfx::NativeWindow parent,
|
/external/chromium_org/chrome/browser/ui/views/ |
native_focus_tracker_views_aura.cc | 18 view = view->parent();
|
simple_message_box_win.h | 12 MessageBoxResult NativeShowMessageBox(HWND parent,
|
/external/chromium_org/content/browser/worker_host/ |
worker_document_set.h | 57 // communication with the parent tab for things like http auth dialogs. 58 void Add(WorkerMessageFilter* parent, 64 bool Contains(WorkerMessageFilter* parent, 69 void Remove(WorkerMessageFilter* parent, unsigned long long document_id); 73 void RemoveAll(WorkerMessageFilter* parent);
|
/external/chromium_org/content/renderer/accessibility/ |
accessibility_node_serializer.h | 18 const blink::WebAXObject& parent,
|
/external/chromium_org/third_party/libjingle/source/talk/examples/chat/ |
textchatsendtask.h | 39 // parent a reference to task interface associated withe the XMPP client. 40 explicit TextChatSendTask(XmppTaskParentInterface* parent);
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/ |
der_sequence_free.c | 29 while (in->prev != NULL || in->parent != NULL) { 30 if (in->parent != NULL) { 31 in = in->parent; 42 in->child->parent = NULL;
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
ACallCommand.java | 57 this._position_.parent(null); 62 if(node.parent() != null) 64 node.parent().removeChild(node); 67 node.parent(this); 84 if(e.parent() != null) 86 e.parent().removeChild(e); 89 e.parent(this); 104 if(e.parent() != null) 106 e.parent().removeChild(e); 109 e.parent(this) [all...] |
/external/smali/util/src/main/java/ds/tree/ |
Visitor.java | 44 * @param parent The parent of the node being visited 47 public void visit(String key, RadixTreeNode<T> parent, RadixTreeNode<T> node);
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
signalbar.h | 20 SignalBar(QObject *parent = 0);
|
/frameworks/base/core/java/android/widget/ |
SpinnerAdapter.java | 38 * @param parent the parent that this view will eventually be attached to 42 public View getDropDownView(int position, View convertView, ViewGroup parent);
|
/external/chromium_org/sync/syncable/ |
parent_child_index.cc | 76 ParentChildrenMap::iterator parent = local 78 DCHECK(parent != parent_children_map_.end()); 80 OrderedChildSet* children = parent->second; 87 parent_children_map_.erase(parent); 93 ParentChildrenMap::const_iterator parent = local 95 if (parent == parent_children_map_.end()) { 98 const OrderedChildSet* children = parent->second; 104 ParentChildrenMap::iterator parent = parent_children_map_.find(id); local 105 if (parent == parent_children_map_.end()) { 110 DCHECK(!parent->second->empty()) [all...] |
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
XMLFilterImplTest.java | 53 private XMLFilterImpl parent = new MockFilter(logger); field in class:XMLFilterImplTest 55 private XMLFilterImpl child = new XMLFilterImpl(parent); 68 parent.setContentHandler(handler); 69 parent.setDTDHandler(handler); 70 parent.setErrorHandler(handler); 78 assertEquals(null, parent.getParent()); 83 assertEquals(null, parent.getParent()); 94 child.setParent(parent); 95 assertEquals(parent, child.getParent()); 112 // No parent cas [all...] |
/external/chromium/chrome/browser/instant/ |
instant_confirm_dialog.cc | 22 void ShowInstantConfirmDialogIfNecessary(gfx::NativeWindow parent, 37 ShowInstantConfirmDialog(parent, profile);
|
/external/chromium/chrome/browser/ui/gtk/bookmarks/ |
bookmark_bar_gtk_unittest.cc | 74 const BookmarkNode* parent = model->GetBookmarkBarNode(); local 75 model->AddURL(parent, parent->child_count(), 85 const BookmarkNode* parent = model->GetBookmarkBarNode(); local 86 model->AddURL(parent, parent->child_count(), 88 model->AddURL(parent, parent->child_count(),
|
/external/chromium_org/chrome/browser/ui/gtk/bookmarks/ |
bookmark_bar_gtk_unittest.cc | 74 const BookmarkNode* parent = model_->bookmark_bar_node(); local 75 model_->AddURL(parent, parent->child_count(), 83 const BookmarkNode* parent = model_->bookmark_bar_node(); local 84 model_->AddURL(parent, parent->child_count(), 86 model_->AddURL(parent, parent->child_count(),
|
/external/chromium_org/chrome/browser/ui/ |
simple_message_box.h | 26 // Shows a dialog box with the given |title| and |message|. If |parent| is 27 // non-NULL, the box will be made modal to the |parent|, except on Mac, where it 33 MessageBoxResult ShowMessageBox(gfx::NativeWindow parent, 39 // labeled with |yes_text| and |no_text|. If |parent| is non-NULL, the box will 40 // be made modal to the |parent|. (Aura only.) 45 MessageBoxResult ShowMessageBoxWithButtonText(gfx::NativeWindow parent,
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSRegionRule.cpp | 40 CSSRegionRule::CSSRegionRule(StyleRuleRegion* regionRule, CSSStyleSheet* parent) 41 : CSSGroupingRule(regionRule, parent)
|
CSSSupportsRule.cpp | 38 CSSSupportsRule::CSSSupportsRule(StyleRuleSupports* supportsRule, CSSStyleSheet* parent) 39 : CSSGroupingRule(supportsRule, parent)
|