HomeSort by relevance Sort by last modified time
    Searched defs:parent (Results 726 - 750 of 1569) sorted by null

<<21222324252627282930>>

  /bionic/libc/bionic/
fts.c 76 FTSENT *parent, *tmp; local
102 /* Allocate/initialize root's parent. */
103 if ((parent = fts_alloc(sp, "", 0)) == NULL)
105 parent->fts_level = FTS_ROOTPARENTLEVEL;
118 p->fts_parent = parent;
167 free(parent);
172 free(parent);
211 * list which has a valid parent pointer.
323 * to make the names come out right, and set the parent errno
326 * directories back to the parent we don't do a chdir
    [all...]
  /bionic/libc/kernel/common/linux/
device.h 150 struct class_device *parent; member in struct:class_device
182 struct device * parent; member in struct:device
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkViews.java 482 * Command to get the accessibility ids of the parent of the given node. Returns the
492 AccessibilityNodeInfo parent = node.getParent(); local
493 if (parent == null) {
494 return new MonkeyCommandReturn(false, "Given node has no parent");
496 return (new GetAccessibilityIds()).query(parent, new ArrayList<String>());
  /development/ndk/platforms/android-3/include/linux/
device.h 145 struct class_device *parent; member in struct:class_device
177 struct device * parent; member in struct:device
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
AbstractPreferencesTest.java 57 static AbstractPreferences parent = null; field in class:AbstractPreferencesTest
92 parent = (AbstractPreferences) Preferences
95 // pref = new MockAbstractPreferences((AbstractPreferences) parent,
98 pref = (AbstractPreferences) parent.node("mock");
109 parent.node("mock").removeNode();
215 assertSame(pref, child1.parent());
509 assertSame(prefs, parent);
540 assertSame(child3, grandchild.parent());
603 assertSame(parent, pref.parent());
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
StepPattern.java 142 * parent or ancestor.
179 * parent or ancestor.
195 * parent or ancestor.
530 int parent = dtm.getParent(context); local
536 for (int child = traverser.first(parent); DTM.NULL != child;
537 child = traverser.next(parent, child))
  /external/chromium/chrome/browser/bookmarks/
bookmark_model.cc 171 void BookmarkModel::Remove(const BookmarkNode* parent, int index) {
172 if (!loaded_ || !IsValidIndex(parent, index, false) || is_root(parent)) {
176 RemoveAndDeleteNode(AsMutable(parent->GetChild(index)));
196 const BookmarkNode* old_parent = node->parent();
374 const BookmarkNode* BookmarkModel::AddFolder(const BookmarkNode* parent,
377 if (!loaded_ || parent == &root_ || !IsValidIndex(parent, index, true)) {
389 return AddNode(AsMutable(parent), index, new_node, false);
392 const BookmarkNode* BookmarkModel::AddURL(const BookmarkNode* parent,
465 const BookmarkNode* parent = GetParentForNewNodes(); local
601 BookmarkNode* parent = AsMutable(node->parent()); local
    [all...]
bookmark_utils.cc 95 const BookmarkNode* parent,
98 model->AddURL(parent, index_to_add_at, element.title, element.url);
100 const BookmarkNode* new_folder = model->AddFolder(parent,
159 bool ShouldOpenAll(gfx::NativeWindow parent,
171 return platform_util::SimpleYesNoBox(parent, title, message);
238 const BookmarkNode* parent,
244 if (!bookmark_utils::IsValidDropLocation(profile, data, parent, index))
298 int node_index = (drop_parent == node->parent()) ?
315 const BookmarkNode* parent,
317 if (!parent->is_folder() || !model)
453 const BookmarkNode* parent = iterator.Next(); local
    [all...]
  /external/chromium/chrome/browser/importer/
firefox3_importer.cc 44 int parent; member in struct:Firefox3Importer::BookmarkItem
228 // Find the bookmark path by tracing their links to parent folders.
233 while (child->parent >= 0) {
234 BookmarkItem* parent = list[child->parent]; local
235 if (parent->id == toolbar_folder_id) {
242 path.insert(path.begin(), parent->title);
247 } else if (parent->id == menu_folder_id ||
248 parent->id == unsorted_folder_id) {
255 } else if (livemark_id.find(parent->id) != livemark_id.end())
    [all...]
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_editor_view.cc 54 const BookmarkNode* parent,
59 new BookmarkEditorView(profile, parent, details, configuration);
65 const BookmarkNode* parent,
73 parent_(parent),
143 gfx::Rect parent_bounds = parent()->GetContentsBounds();
161 views::View* parent,
166 parent->AddChildView(new_folder_button_.get());
168 parent->RemoveChildView(new_folder_button_.get());
181 return (bb_node->parent() && bb_node->parent()->parent())
449 EditorNode* parent = tree_model_->AsNode(tree_view_->GetSelectedNode()); local
524 EditorNode* parent = show_tree_ ? local
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
content_settings_handler.cc 447 GeolocationContentSettingsMap::OneOriginSettings::const_iterator parent = local
450 // Add the "parent" entry for the non-embedded setting.
452 parent == one_settings.end() ? CONTENT_SETTING_DEFAULT : parent->second;
460 if (j == parent)
  /external/chromium/chrome/common/
automation_messages.h 64 ExternalTabSettings(gfx::NativeWindow parent,
76 gfx::NativeWindow parent; member in struct:ExternalTabSettings
  /external/chromium_org/ash/
root_window_controller.cc 78 aura::Window* parent) {
83 parent->AddChild(container);
134 // use the virtual screeen coordinates instead of parent.
289 if (window->parent() &&
290 window->parent()->id() >= kShellWindowId_LockScreenContainer) {
504 aura::Window* parent = root_window(); local
516 parent->AddChild(keyboard_container);
517 keyboard_container->SetBounds(parent->bounds());
  /external/chromium_org/base/
tracked_objects.h 147 // and tracks parent/child relationships for the executed tasks. The statistics
170 // TODO(jar): We should support (optionally) the recording of parent-child
172 // Born during the running of a parent task. The resulting data can be used by
174 // the ancestor task. It can also be used to illuminate what child or parent is
359 PROFILING_ACTIVE, // Recording profiles (no parent-child links).
360 PROFILING_CHILDREN_ACTIVE, // Fully active, recording parent-child links.
441 // If parent-child tracking is not compiled in, then an attempt to set the
444 // compiled into the binary, and parent-child tracking at the
454 // For testing only, indicate if the status of parent-child tracking is turned
462 // The task that will be tracked is passed in as |parent| so that parent-chil
698 BirthOnThreadSnapshot parent; member in struct:tracked_objects::ParentChildPairSnapshot
    [all...]
  /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
730 scoped_refptr<Layer> parent = Layer::Create(); local
795 scoped_refptr<Layer> parent = Layer::Create(); local
826 scoped_refptr<Layer> parent = Layer::Create(); local
855 scoped_refptr<Layer> parent = Layer::Create(); local
922 scoped_refptr<Layer> parent = Layer::Create(); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
menu_manager_unittest.cc 267 // Tests that deleting a parent properly removes descendants.
380 // Try switching item3 to be the parent of item1 - this should fail.
406 // Make sure you can't make an item be it's own parent.
566 MenuItem* parent = CreateTestItem(extension); local
568 MenuItem::Id parent_id = parent->id();
570 ASSERT_TRUE(manager_.AddContextItem(extension, parent));
571 ASSERT_TRUE(manager_.AddChildItem(parent->id(), item));
685 MenuItem* parent = CreateTestItem(extension); local
686 manager_.AddContextItem(extension, parent);
696 manager_.AddChildItem(parent->id(), child1)
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_model_associator.cc 83 // Provides the following abstraction: given a parent bookmark node, find best
87 // Creates an instance with the given parent bookmark node.
386 // * For each sync node for the current sync parent node, find the best
387 // matching bookmark node under the corresponding bookmark parent node.
393 // nodes to the sync parent node.
528 // At this point all the children nodes of the parent sync node have
529 // corresponding children in the parent bookmark node and they are all in
531 // So the children starting from index in the parent bookmark node are the
532 // ones that are not present in the parent sync node. So create them.
560 : folder(f), parent(p), sync_id(id) {
562 const BookmarkNode* parent; member in struct:browser_sync::FolderInfo
590 const BookmarkNode* parent = dfs_stack.top(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_editor_view.cc 63 const BookmarkNode* parent,
72 parent_(parent),
153 return (bb_node->parent() && bb_node->parent()->parent());
213 tree_model_->Remove(node->parent(), node);
220 void BookmarkEditorView::Show(gfx::NativeWindow parent) {
221 CreateBrowserModalDialogViews(this, parent);
366 const BookmarkNode* parent,
372 const BookmarkNode* parent,
439 EditorNode* parent = tree_model_->AsNode(tree_view_->GetSelectedNode()); local
524 EditorNode* parent = show_tree_ ? local
    [all...]
  /external/chromium_org/chrome/renderer/plugins/
plugin_placeholder.cc 348 // If we have a width and height, search for a parent (often <div>) with the
349 // same dimensions. If we find such a parent, hide that as well.
373 WebNode parent = element; local
374 while (!parent.parentNode().isNull()) {
375 parent = parent.parentNode();
376 if (!parent.isElementNode())
378 element = parent.toConst<WebElement>();
  /external/chromium_org/chrome/utility/importer/
firefox_importer.cc 81 int parent; member in struct:FirefoxImporter::BookmarkItem
260 // Find the bookmark path by tracing their links to parent folders.
265 while (child->parent >= 0) {
266 BookmarkItem* parent = list[child->parent]; local
267 if (livemark_id.find(parent->id) != livemark_id.end()) {
272 if (parent->id != menu_folder_id) {
275 path.insert(path.begin(), parent->title);
278 if (parent->id == toolbar_folder_id)
281 if (parent->id == toolbar_folder_id |
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_contents_view_win.cc 81 HWND parent = ::GetAncestor(hwnd, GA_ROOT); local
82 if (parent) {
84 ui::HWNDSubclass::AddFilterToTarget(parent, filter);
325 // Our parent might have changed. So we re-install our hwnd message filter.
  /external/chromium_org/skia/ext/
vector_canvas_unittest.cc 362 typedef ImageTest parent; typedef in class:skia::VectorCanvasTest
364 VectorCanvasTest() : parent(CurrentMode()), compare_canvas_(true) {
369 parent::SetUp();
387 parent::TearDown();
408 double diff1 = parent::ProcessCanvas(*vcanvas_, number + L"vc_" + filename);
409 double diff2 = parent::ProcessCanvas(*pcanvas_, number + L"pc_" + filename);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.cpp 96 if (task.parent->hasTagName(templateTag))
97 task.parent = toHTMLTemplateElement(task.parent.get())->content();
99 if (ContainerNode* parent = task.child->parentNode())
100 parent->parserRemoveChild(task.child.get());
103 task.parent->parserInsertBefore(task.child.get(), task.nextChild.get());
105 task.parent->parserAppendChild(task.child.get());
110 if (task.child->parentNode() && task.parent->attached() && !task.child->attached()) {
134 if (ContainerNode* parent = task.child->parentNode())
135 parent->parserRemoveChild(task.child.get())
456 ContainerNode* parent = m_openElements.rootNode(); local
732 ContainerNode* parent; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Frame.cpp 86 Frame* parent = frame->tree()->parent(); local
87 if (!parent)
89 return parent->pageZoomFactor();
94 Frame* parent = frame->tree()->parent(); local
95 if (!parent)
97 return parent->textZoomFactor();
252 return document()->printing() && (!tree()->parent() || !tree()->parent()->document()->printing())
    [all...]
TouchAdjustment.cpp 289 Node* parent = candidate->parentOrShadowHostNode(); local
290 while (parent && parent->isContentEditable()) {
291 replacement = parent;
297 parent = parent->parentOrShadowHostNode();

Completed in 2589 milliseconds

<<21222324252627282930>>