HomeSort by relevance Sort by last modified time
    Searched refs:nodes (Results 451 - 475 of 1616) sorted by null

<<11121314151617181920>>

  /cts/hostsidetests/devicepolicy/app/DeviceOwner/assets/
generate-client-cert-chain.sh 62 -nodes \
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/
Utils.java 172 * Get a list of all wearable nodes that are connected synchronously.
178 NodeApi.GetConnectedNodesResult nodes = local
180 for (Node node : nodes.getNodes()) {
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/
Utils.java 172 * Get a list of all wearable nodes that are connected synchronously.
178 NodeApi.GetConnectedNodesResult nodes = local
180 for (Node node : nodes.getNodes()) {
  /development/samples/browseable/XYZTouristAttractions/Shared/src/com.example.android.xyztouristattractions.common/
Utils.java 172 * Get a list of all wearable nodes that are connected synchronously.
178 NodeApi.GetConnectedNodesResult nodes = local
180 for (Node node : nodes.getNodes()) {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.js 26 // since this is for making root nodes).
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 88 # extract nodes matching a pattern
94 # iterate through the tree and extract nodes with pattern labels
278 to validate tree structures as well as to extract nodes that match the pattern.
360 nodes = []
361 visit( tree, type ) { | t, | nodes << t }
362 return nodes
474 nodes = context.split( /\s+/ )
476 while tree = @adaptor.parent( tree ) and node = nodes.pop
478 node = nodes.pop or return( true )
486 return( false ) if tree.nil? and not nodes.empty
    [all...]
  /external/deqp/scripts/log/
log_to_xml.py 101 def findFirstElementByName (nodes, name):
102 for node in nodes:
  /external/doclava/src/com/google/doclava/
PageMetadata.java 54 * to parent/child elements in the tree metadata nodes for all pages.
89 * Given a list of metadata nodes organized by type, sort the
90 * root nodes by type name and render the types and their child
91 * metadata nodes to a json file in the out dir.
93 * @param rootTypeNodesList A list of root metadata nodes, each
112 * Given a list of metadata nodes organized by lang, sort the
113 * root nodes by type name and render the types and their child
114 * metadata nodes to separate lang-specific json files in the out dir.
116 * @param rootNodesList A list of root metadata nodes, each
230 org.w3c.dom.NodeList nodes = (org.w3c.dom.NodeList) ItempropDescExpr.evaluate(htmlNode local
    [all...]
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
AbstractInjectorGrapher.java 133 /** Performs any post processing required after all nodes and edges have been added. */
136 private void createNodes(Iterable<Node> nodes, Map<NodeId, NodeId> aliases) throws IOException {
137 for (Node node : nodes) {
142 // Only render nodes that aren't aliased to some other node.
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
SoftMeshTest.java 76 MeshPart meshPart = model.nodes.get(0).parts.get(0).meshPart;
122 MeshPart meshPart = model.nodes.get(0).parts.get(0).meshPart;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
JavaBeanWithNullValuesTest.java 23 import org.yaml.snakeyaml.nodes.Node;
24 import org.yaml.snakeyaml.nodes.Tag;
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.6/
printers.py 246 nodes = self.head.type.fields ()
247 if len (nodes) != 1:
251 self.head = self.head.cast (nodes[0].type)
258 nodes = self.head.type.fields ()
260 if len (nodes) == 0:
263 if len (nodes) != 2:
264 raise ValueError, "Cannot parse more than 2 nodes in a tuple tree."
270 impl = self.head.cast (nodes[1].type)
273 self.head = self.head.cast (nodes[0].type)
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.6/
printers.py 246 nodes = self.head.type.fields ()
247 if len (nodes) != 1:
251 self.head = self.head.cast (nodes[0].type)
258 nodes = self.head.type.fields ()
260 if len (nodes) == 0:
263 if len (nodes) != 2:
264 raise ValueError, "Cannot parse more than 2 nodes in a tuple tree."
270 impl = self.head.cast (nodes[1].type)
273 self.head = self.head.cast (nodes[0].type)
  /prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-dependency-tree/2.1/
maven-dependency-tree-2.1.jar 
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitBaseTest.java 366 // Walk resulting tree; create tree nodes stream first
367 CommonTreeNodeStream nodes; local
369 nodes = new CommonTreeNodeStream(customTreeAdaptor, tree);
372 nodes = new CommonTreeNodeStream(tree);
374 // AST nodes have payload that point into token stream
375 nodes.setTokenStream(tokens);
376 // Create a tree walker attached to the nodes stream
380 Object[] treeParArgs = new Object[]{nodes}; // assign value to tree parser's args
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 13 * expensive: we have to create a hashtable with all tree nodes in it.
25 * If you specify your own kind of tree nodes, you will likely have to
105 * constructing these nodes so we should have this control for
213 /** Tell me how to create a token for use with imaginary token nodes.
225 /** Tell me how to create a token for use with imaginary token nodes.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 659 List<Element> nodes = new ArrayList<Element>(); local
681 nodes.add(element);
698 // Figure out the range of selected nodes from the document offsets
706 // Adjust offsets to get rid of surrounding text nodes (if you happened
718 nodes.add(first);
724 nodes.add((Element) node);
742 //for (Element element : nodes) {
747 return nodes;
803 List<UiViewElementNode> nodes = new ArrayList<UiViewElementNode>(infos local
808 nodes.add(node)
    [all...]
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_script_imp.cpp 186 FXJSE_HVALUE pValue = GetJSValueFromMap(resolveRs.nodes[0]);
191 (resolveRs.nodes[0]->*(lpAttributeInfo->lpfnCallback))(
753 resolveNodeRS.nodes.Append(findNodes);
767 return resolveNodeRS.nodes.GetSize();
808 void CXFA_ScriptContext::AddNodesOfRunScript(const CXFA_NodeArray& nodes) {
812 if (nodes.GetSize() > 0) {
813 m_pScriptNodeArray->Copy(nodes);
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
Constructor.java 39 import org.yaml.snakeyaml.nodes.MappingNode;
40 import org.yaml.snakeyaml.nodes.Node;
41 import org.yaml.snakeyaml.nodes.NodeId;
42 import org.yaml.snakeyaml.nodes.NodeTuple;
43 import org.yaml.snakeyaml.nodes.ScalarNode;
44 import org.yaml.snakeyaml.nodes.SequenceNode;
45 import org.yaml.snakeyaml.nodes.Tag;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/gcc-4.8.3/python/libstdcxx/v6/
printers.py 274 nodes = self.head.type.fields ()
275 if len (nodes) == 1:
277 self.head = self.head.cast (nodes[0].type)
278 elif len (nodes) != 0:
286 nodes = self.head.type.fields ()
288 if len (nodes) == 0:
291 if len (nodes) != 2:
292 raise ValueError, "Cannot parse more than 2 nodes in a tuple tree."
298 impl = self.head.cast (nodes[1].type)
301 self.head = self.head.cast (nodes[0].type
    [all...]
  /prebuilts/gdb/darwin-x86/share/pretty-printers/libstdcxx/gcc-4.8.3/
printers.py 274 nodes = self.head.type.fields ()
275 if len (nodes) == 1:
277 self.head = self.head.cast (nodes[0].type)
278 elif len (nodes) != 0:
286 nodes = self.head.type.fields ()
288 if len (nodes) == 0:
291 if len (nodes) != 2:
292 raise ValueError, "Cannot parse more than 2 nodes in a tuple tree."
298 impl = self.head.cast (nodes[1].type)
301 self.head = self.head.cast (nodes[0].type
    [all...]
  /prebuilts/gdb/darwin-x86/share/pretty-printers/libstdcxx/gcc-4.9/
printers.py 318 nodes = self.head.type.fields ()
319 if len (nodes) == 1:
321 self.head = self.head.cast (nodes[0].type)
322 elif len (nodes) != 0:
330 nodes = self.head.type.fields ()
332 if len (nodes) == 0:
335 if len (nodes) != 2:
336 raise ValueError("Cannot parse more than 2 nodes in a tuple tree.")
342 impl = self.head.cast (nodes[1].type)
345 self.head = self.head.cast (nodes[0].type
    [all...]
  /prebuilts/gdb/linux-x86/share/pretty-printers/libstdcxx/gcc-4.8.3/
printers.py 274 nodes = self.head.type.fields ()
275 if len (nodes) == 1:
277 self.head = self.head.cast (nodes[0].type)
278 elif len (nodes) != 0:
286 nodes = self.head.type.fields ()
288 if len (nodes) == 0:
291 if len (nodes) != 2:
292 raise ValueError, "Cannot parse more than 2 nodes in a tuple tree."
298 impl = self.head.cast (nodes[1].type)
301 self.head = self.head.cast (nodes[0].type
    [all...]
  /prebuilts/gdb/linux-x86/share/pretty-printers/libstdcxx/gcc-4.9/
printers.py 318 nodes = self.head.type.fields ()
319 if len (nodes) == 1:
321 self.head = self.head.cast (nodes[0].type)
322 elif len (nodes) != 0:
330 nodes = self.head.type.fields ()
332 if len (nodes) == 0:
335 if len (nodes) != 2:
336 raise ValueError("Cannot parse more than 2 nodes in a tuple tree.")
342 impl = self.head.cast (nodes[1].type)
345 self.head = self.head.cast (nodes[0].type
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.8/
printers.py 274 nodes = self.head.type.fields ()
275 if len (nodes) == 1:
277 self.head = self.head.cast (nodes[0].type)
278 elif len (nodes) != 0:
286 nodes = self.head.type.fields ()
288 if len (nodes) == 0:
291 if len (nodes) != 2:
292 raise ValueError, "Cannot parse more than 2 nodes in a tuple tree."
298 impl = self.head.cast (nodes[1].type)
301 self.head = self.head.cast (nodes[0].type
    [all...]

Completed in 824 milliseconds

<<11121314151617181920>>