HomeSort by relevance Sort by last modified time
    Searched refs:nodes (Results 501 - 525 of 789) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/browser/sync/glue/
bookmark_change_processor.cc 134 // Don't need to update versions of deleted nodes.
152 // Note: the root node may have additional extra nodes. Currently none of
156 // Don't need to update versions of deleted nodes.
172 // Do a DFS and delete all the child sync nodes, use sync id instead of
173 // bookmark node ids since the bookmark nodes may already be deleted.
197 // if we are processing topmost node, all other nodes must be processed
306 // We shouldn't see changes to the top-level nodes.
345 // We shouldn't see changes to the top-level nodes.
502 // A parent to hold nodes temporarily orphaned by parent deletion. It is
514 // Ignore changes to the permanent top-level nodes. We only care abou
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNode.cpp 66 static void collectChildrenAndRemoveFromOldParent(Node& node, NodeVector& nodes, ExceptionState& exceptionState)
69 nodes.append(&node);
74 getChildNodes(node, nodes);
161 exceptionState.throwDOMException(HierarchyRequestError, "Nodes of type '" + newChild->nodeName() + "' may not be inserted inside nodes of type '" + nodeName() + "'.");
711 // As an optimization we don't notify leaf nodes when when inserting
729 // As an optimization we skip notifying Text nodes and other leaf nodes
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
ShortcutsScreen.js 199 * @param {!Array.<!Element>} nodes
203 _joinNodes: function(nodes, delimiter)
206 for (var i = 0; i < nodes.length; ++i) {
209 result.appendChild(nodes[i]);
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.cpp 502 const HitTestResult::NodeSet& nodes = result.rectBasedTestResult(); local
503 if (nodes.size() != 1)
505 return nodes.first().get() == m_element;
  /external/chromium_org/ui/gfx/geometry/
r_tree_base.cc 106 for (Nodes::const_iterator i = children_.begin(); i != children_.end(); ++i)
111 for (Nodes::const_iterator i = children_.begin(); i != children_.end(); ++i)
116 Nodes* nodes) {
124 // Move the lowest-distance nodes to the returned vector.
125 nodes->insert(
126 nodes->end(), children_.begin(), children_.begin() + number_to_remove);
131 NodeBase* child_node, Nodes* orphans) {
140 Nodes::iterator i = std::find(children_.begin(), children_.end(), child_node);
163 // If we are a parent of nodes on the provided node level, we are done
    [all...]
  /external/srec/srec/crec/
srec_context.c 927 /* determine number of arcs and nodes to allocate, add 50% for dynamic */
947 PLogMessage("Warning: using max nodes instead\n");
982 fst->FSMnode_list = (FSMnode*)CALLOC_CLR(max_num_FSMnodes, sizeof(FSMnode), "srec.graph.nodes");
3604 nodeID *nodes, num_nodes, num_alloc; member in struct:nodeID_list_t
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutActionBar.java 351 List<INode> nodes = new ArrayList<INode>(selections.size()); local
353 nodes.add(item.getNode());
356 return nodes;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ClientRulesEngine.java 400 public void select(final @NonNull Collection<INode> nodes) {
403 selectionManager.select(nodes);
404 // ALSO run an async select since immediately after nodes are created they
410 selectionManager.select(nodes);
  /external/chromium_org/third_party/libxml/src/
xpath.c 71 * non-element nodes; actually it will speed up comparison only if
937 fprintf(output, "Set contains %d nodes:\n", cur->nodeNr);
    [all...]
  /external/libxml2/
xpath.c 82 * non-element nodes; actually it will speed up comparison only if
127 * with more than 10 millions nodes.
1018 fprintf(output, "Set contains %d nodes:\n", cur->nodeNr);
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
navigation_manager.js 333 * of unique ancestor nodes as a parameter and returning a desired node.
376 * @param {boolean=} opt_skipText Skips focus on text nodes; defaults to false.
424 // Specially annotated nodes.
907 * @param {boolean=} opt_skipText Skips focusing text nodes or any of their
1036 * This is used to update the selection to arbitrary nodes because there are
    [all...]
  /external/chromium_org/ui/keyboard/resources/elements/
kb-keyboard.js 891 * in the distributed nodes for the keyboard.
898 var nodes = this.$.content.getDistributedNodes();
899 for (var i = 0; i < nodes.length; i++) {
900 if (nodes[i].id && nodes[i].id == keyset.id)
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-impl-0.9.0.M2.jar 
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
mathml_store_rules.js 6 * @fileoverview Speech rules for mathml and mathjax nodes.
424 * Initialize specializations wrt. content of nodes.
428 // Some special nodes for square and cube.
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_bookmark_unittest.cc 414 // Creates the bookmark root node and the permanent nodes if they don't
443 // Loop through creating permanent nodes as necessary.
879 // The bookmark model shouldn't yet have seen any of the nodes of |adds|.
885 // Make sure the bookmark model received all of the nodes in |adds|.
2018 std::queue<const BookmarkNode*> nodes; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
ElementsTreeOutline.js 294 * @param {!Array.<!WebInspector.DOMNode>} nodes
296 _fireElementsTreeUpdated: function(nodes)
298 this._eventSupport.dispatchEventToListeners(WebInspector.ElementsTreeOutline.Events.ElementsTreeUpdated, nodes);
    [all...]
ElementsPanel.js 668 var nodes = /** @type {!Array.<!WebInspector.DOMNode>} */ (event.data || []);
669 if (!nodes.length)
674 if (nodes.indexOf(crumb.representedObject) !== -1) {
    [all...]
  /external/chromium_org/ui/keyboard/resources/
main.js 616 var nodes = keyboard.querySelectorAll('[sound]').array();
618 for (var i = 0; i < nodes.length; i++) {
619 var id = nodes[i].getAttribute('sound');
  /prebuilts/tools/common/m2/repository/org/apache/felix/maven-bundle-plugin/2.3.6/
maven-bundle-plugin-2.3.6.jar 
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
rewrites.rb 51 nodes = ANTLR3::CommonTreeNodeStream( r.tree )
52 nodes.token_stream = parser.input
53 walker = tree_grammar_module::TreeParser.new( nodes )
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptSource.js     [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
req.c 115 * -nodes - no des encryption
174 int nodes=0,kludge=0,newhdr=0,subject=0,pubkey=0; local
330 else if (strcmp(*argv,"-nodes") == 0)
331 nodes=1;
416 BIO_printf(bio_err," -nodes don't encrypt the output key\n");
748 if (nodes) cipher=NULL;
    [all...]
  /external/openssl/apps/
req.c 115 * -nodes - no des encryption
174 int nodes=0,kludge=0,newhdr=0,subject=0,pubkey=0; local
330 else if (strcmp(*argv,"-nodes") == 0)
331 nodes=1;
416 BIO_printf(bio_err," -nodes don't encrypt the output key\n");
747 if (nodes) cipher=NULL;
    [all...]
  /frameworks/base/core/java/android/view/
AccessibilityInteractionController.java 439 // focus instead fetching all provider nodes to do the search here.
    [all...]
  /art/compiler/
Android.mk 92 optimizing/nodes.cc \

Completed in 563 milliseconds

<<21222324252627282930>>