HomeSort by relevance Sort by last modified time
    Searched defs:node (Results 626 - 650 of 2129) sorted by null

<<21222324252627282930>>

  /prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-dependency-tree/1.2/
maven-dependency-tree-1.2.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelineHandler.java 92 /** The bounds of the primary child node being dragged */
273 for (INode node : mDraggedNodes) {
274 INode from = match.edge.node;
275 assert match.with.node == null || match.with.node == node; local
276 INode to = node;
316 /** Records the matchable outside edges for the given node to the potential match list */
317 protected void addBounds(INode node, String id,
319 Rect b = node.getBounds()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertySheetPage.java 187 UiViewElementNode node = item.getUiViewNode(); local
188 if (node != null) {
189 node.addUpdateListener(this);
198 UiViewElementNode node = item.getUiViewNode(); local
199 if (node != null) {
200 node.removeUpdateListener(this);
209 public void uiElementNodeUpdated(UiElementNode node, UiUpdateState state) {
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 
lombok-ast-0.2.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.1/
lombok-ast-0.2.1.jar 
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /device/asus/flo/camera/QCamera2/HAL/
QCameraStateMachine.cpp 67 qcamera_sm_cmd_t *node = (qcamera_sm_cmd_t *)pme->api_queue.dequeue(); local
68 if (node == NULL) {
70 node = (qcamera_sm_cmd_t *)pme->evt_queue.dequeue();
72 if (node != NULL) {
73 switch (node->cmd) {
75 pme->stateMachine(node->evt, node->evt_payload);
80 pme->stateMachine(node->evt, node->evt_payload);
83 free(node->evt_payload)
136 qcamera_sm_cmd_t *node = local
171 qcamera_sm_cmd_t *node = local
208 qcamera_sm_cmd_t *node = local
    [all...]
  /device/lge/hammerhead/camera/QCamera2/HAL/
QCameraStateMachine.cpp 67 qcamera_sm_cmd_t *node = (qcamera_sm_cmd_t *)pme->api_queue.dequeue(); local
68 if (node == NULL) {
70 node = (qcamera_sm_cmd_t *)pme->evt_queue.dequeue();
72 if (node != NULL) {
73 switch (node->cmd) {
75 pme->stateMachine(node->evt, node->evt_payload);
80 pme->stateMachine(node->evt, node->evt_payload);
83 free(node->evt_payload)
136 qcamera_sm_cmd_t *node = local
171 qcamera_sm_cmd_t *node = local
208 qcamera_sm_cmd_t *node = local
    [all...]
  /device/moto/shamu/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_pp.c 684 mm_qcamera_q_node_t* node = local
686 if (NULL == node) {
691 memset(node, 0, sizeof(mm_qcamera_q_node_t));
692 node->data = data;
695 cam_list_add_tail_node(&node->list, &queue->head.list);
705 mm_qcamera_q_node_t* node = NULL; local
714 node = member_of(pos, mm_qcamera_q_node_t, list);
715 cam_list_del_node(&node->list);
720 if (NULL != node) {
721 data = node->data
730 mm_qcamera_q_node_t* node = NULL; local
759 mm_qcamera_q_node_t* node = NULL; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMAxisIteratorBase.java 32 /** The position of the last node within the iteration, as defined by XPath.
33 * Note that this is _not_ the node's handle within the DTM. Also, don't
38 /** The position of the current node within the iteration, as defined by XPath.
39 * Note that this is _not_ the node's handle within the DTM!
43 /** The position of the marked node within the iteration;
54 /** True if the start node should be considered part of the iteration.
69 * @return The root node of the iteration.
77 * @return A DTMAxisIterator which has been reset to the start node,
95 * Set the flag to include the start node in the iteration.
111 /** Returns the position of the last node within the iteration, a
271 int node; local
    [all...]
  /external/bison/src/
LR0.c 60 state_list *node = xmalloc (sizeof *node); local
67 node->next = NULL;
68 node->state = s;
71 first_state = node;
73 last_state->next = node;
74 last_state = node;
  /external/chromium_org/chrome/browser/importer/
profile_writer.cc 44 const BookmarkNode* node = bookmark_bar->GetChild(i); local
45 if (node->is_folder())
46 existing_folder_names.insert(node->GetTitle());
188 const BookmarkNode* node = parent->GetChild(index); local
189 if (node->is_folder() && node->GetTitle() == *folder_name) {
190 child = node;
  /external/chromium_org/chrome/browser/safe_browsing/
malware_details.cc 247 SafeBrowsingHostMsg_MalwareDOMDetails_Node node = params[i]; local
248 DVLOG(1) << node.url << ", " << node.tag_name << ", " << node.parent;
249 AddUrl(node.url, node.parent, node.tag_name, &(node.children));
  /external/chromium_org/chrome/browser/ui/bookmarks/
recently_used_folders_combo_model.cc 28 Item(const BookmarkNode* node, Type type);
33 const BookmarkNode* node; member in struct:RecentlyUsedFoldersComboModel::Item
37 RecentlyUsedFoldersComboModel::Item::Item(const BookmarkNode* node,
39 : node(node),
46 return item.node == node && item.type == type;
51 const BookmarkNode* node)
55 // Use + 2 to account for bookmark bar and other node.
68 RemoveNode(node->parent())
    [all...]
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_bubble_view.cc 103 const BookmarkNode* node = model->GetMostRecentlyAddedUserNodeForURL(url_); local
104 if (node)
105 model->Remove(node->parent(), node->parent()->GetIndexOf(node));
289 const BookmarkNode* node = local
291 if (node)
292 return node->GetTitle();
335 const BookmarkNode* node = BookmarkModelFactory::GetForProfile( local
344 if (node && parent
355 const BookmarkNode* node = model->GetMostRecentlyAddedUserNodeForURL(url_); local
    [all...]
bookmark_menu_controller_views.cc 35 const BookmarkNode* node,
40 node_(node),
44 menu_delegate_->Init(this, NULL, node, start_child_index,
175 const BookmarkNode* node = bookmark_bar_->GetNodeForButtonAtModelIndex( local
177 if (!node || !node->is_folder())
180 menu_delegate_->SetActiveMenu(node, start_index);
181 *button = bookmark_bar_->GetMenuButtonForNode(node);
  /external/chromium_org/chrome/browser/ui/webui/options/
cookies_view_handler.cc 233 const CookieTreeNode* node = model_util_->GetTreeNodeFromPath( local
235 if (node)
236 cookies_tree_model_->DeleteCookieNode(const_cast<CookieTreeNode*>(node));
246 const CookieTreeNode* node = model_util_->GetTreeNodeFromPath( local
248 if (node)
249 SendChildren(node);
  /external/chromium_org/components/bookmarks/browser/
bookmark_index_unittest.cc 40 const BookmarkNode* node = *it; variable
42 typed_count_map_.find(node->url());
46 node_typed_count_pairs->push_back(std::make_pair(node, found->second));
97 if (ASCIIToUTF16(expected_titles[i]) == matches[j].node->GetTitle()) {
368 // Makes sure index is updated when a node is removed.
374 // Remove the node and make sure we don't get back any results.
379 // Makes sure index is updated when a node's title is changed.
385 // Remove the node and make sure we don't get back any results.
412 EXPECT_EQ(n1, matches[0].node);
450 EXPECT_EQ(data[0].url, matches[0].node->url())
    [all...]
bookmark_node_data.cc 22 BookmarkNodeData::Element::Element(const BookmarkNode* node)
23 : is_url(node->is_url()),
24 url(node->url()),
25 title(node->GetTitle()),
26 date_added(node->date_added()),
27 date_folder_modified(node->date_folder_modified()),
28 id_(node->id()) {
29 if (node->GetMetaInfoMap())
30 meta_info_map = *node->GetMetaInfoMap();
31 for (int i = 0; i < node->child_count(); ++i
254 const BookmarkNode* node = GetBookmarkNodeByID(model, elements[i].id_); local
    [all...]
bookmark_node_data_unittest.cc 97 // Write a single node representing a URL to the clipboard.
101 const BookmarkNode* node = model()->AddURL(root, 0, title, url); local
102 BookmarkNodeData drag_data(node);
108 EXPECT_EQ(node->date_added(), drag_data.elements[0].date_added);
109 EXPECT_EQ(node->date_folder_modified(),
125 EXPECT_TRUE(read_data.GetFirstNode(model(), GetProfilePath()) == node);
127 // Make sure asking for the node with a different profile returns NULL.
172 // We should get back the same node when asking for the same profile.
176 // A different profile should return NULL for the node.
214 // And make sure we get the node back
273 const BookmarkNode* node = model()->AddURL(model()->other_node(), local
    [all...]
bookmark_utils_unittest.cc 104 // Node "foo bar" and folder "foo" are returned in search results.
263 const BookmarkNode* node = model->AddURL(model->other_node(), local
268 // Copy a node to the clipboard.
270 nodes.push_back(node);
316 // Load a model with an extra node that is not editable.
323 const BookmarkNode* node = model->AddURL(model->other_node(), local
328 // Copy a node to the clipboard.
330 nodes.push_back(node);
388 // Add a node containing meta info.
389 const BookmarkNode* node = model->AddURL(model->other_node() local
    [all...]
  /external/chromium_org/content/browser/frame_host/
frame_tree.cc 25 FrameTreeNode* node) {
26 if (node->frame_tree_node_id() == frame_tree_node_id) {
27 *out_node = node;
28 // Terminate iteration once the node has been found.
37 FrameTreeNode* node) {
39 if (node->current_frame_host()->GetProcess()->GetID() == process_id &&
40 node->current_frame_host()->GetRoutingID() == routing_id) {
41 *out_node = node;
42 // Terminate iteration once the node has been found.
48 // Iterate over the FrameTree to reset any node affected by the loss of th
82 FrameTreeNode* node = NULL; local
88 FrameTreeNode* node = NULL; local
100 FrameTreeNode* node = queue.front(); local
    [all...]
  /external/chromium_org/mojo/examples/window_manager/
window_manager.cc 10 #include "mojo/services/public/cpp/view_manager/node.h"
24 using mojo::view_manager::Node;
84 Node* node = view_manager_->GetNodeById(node_id); local
85 DCHECK(node);
86 std::vector<Node*>::iterator iter =
87 std::find(windows_.begin(), windows_.end(), node);
90 node->Destroy();
122 Node* node = view_manager_->GetNodeById(parent_node_id_)
138 Node* node = Node::Create(view_manager); variable
139 view_manager->GetRoots().front()->AddChild(node); variable
185 Node* node = view_manager_->GetNodeById(parent_node_id_); local
    [all...]
  /external/chromium_org/mojo/services/view_manager/
test_change_tracker.cc 49 "BoundsChanged node=%s old_bounds=%s new_bounds=%s",
56 "HierarchyChanged change_id=%d node=%s new_parent=%s old_parent=%s",
64 "Reordered change_id=%d node=%s relative=%s direction=%s",
71 return base::StringPrintf("NodeDeleted change_id=%d node=%s",
81 "ViewReplaced node=%s new_view=%s old_view=%s",
117 TestNode node; local
118 node.parent_id = data[i]->parent_id;
119 node.node_id = data[i]->node_id;
120 node.view_id = data[i]->view_id;
121 test_nodes->push_back(node);
    [all...]

Completed in 1914 milliseconds

<<21222324252627282930>>