HomeSort by relevance Sort by last modified time
    Searched defs:node (Results 1 - 25 of 1474) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/www/analyzer/scripts/
menu.js 5 node = navRoot.childNodes[i];
6 if (node.nodeName=="LI") {
7 node.onmouseover=function() {
10 node.onmouseout=function() {
  /external/antlr/runtime/ObjC/Framework/
MapElement.h 38 id node; variable
41 @property (retain, getter=getNode, setter=setNode:) id node; variable
45 + (id) newMapElementWithNode:(NSInteger)aTType Node:(id)aNode;
46 + (id) newMapElementWithName:(NSString *)aName Node:(id)aNode;
50 - (id) initWithNode:(NSInteger)aTType Node:(id)aNode;
51 - (id) initWithName:(NSString *)aName Node:(id)aNode;
NodeMapElement.h 37 id<BaseTree> node; variable
40 @property (retain, getter=getNode, setter=setNode:) id<BaseTree> node; variable
45 + (id) newNodeMapElementWithIndex:(id)anIndex Node:(id<BaseTree>)aNode;
47 - (id) initWithAnIndex:(id)anIndex Node:(id)aNode;
  /external/libdrm/amdgpu/
util_hash.h 56 struct util_node *node; member in struct:util_hash_iter
  /external/toolchain-utils/binary_search_tool/full_bisect_test/
build.c 7 tree_ptr node = (tree_ptr) malloc (sizeof (tree_ptr)); local
8 node->data = value;
9 node->left = NULL;
10 node->right = NULL;
11 return node;
  /external/virglrenderer/src/gallium/auxiliary/cso_cache/
cso_hash.h 60 struct cso_node *node; member in struct:cso_hash_iter
  /external/clang/test/CodeGen/
tbaa-thread-sanitizer.cpp 5 struct iterator { void *node; }; member in struct:iterator
  /external/libxml2/python/tests/
reader5.py 23 node = reader.Expand() # expand the subtree variable
24 if node.xpathEval("@id = 'Aho'"): # use XPath on it
25 res = res + node.serialize()
xpathret.py 17 # test returning a node set works as expected
21 node = mydoc.newDocText(str)
22 parent.addChild(node)
35 node = res[0] variable
36 if node.name != 'p':
39 node = node.children variable
40 if node.type != 'text':
43 if node.content != 'hello':
  /external/tensorflow/tensorflow/core/graph/
default_device.h 31 auto node = graph_def->mutable_node(i); local
32 if (node->device().empty()) {
33 node->set_device(device);
gradients.h 25 // Represents the output of 'node' at 'index'.
27 Node* node; member in struct:tensorflow::NodeOut
30 // Returns the string name that represents the output of this node.
32 // Returns the data type of the output of this node.
38 // Given initial gradient-node outputs 'y_grad_node_outputs' (which compute the
39 // symbolic partial derivatives of some loss function 'L' w.r.t the node outputs
41 // partial derivatives of 'L' w.r.t the node outputs 'x_node_outputs'.
43 // REQUIRES: Each node in 'x_node_outputs' to be unique, and so to have a single
  /external/tensorflow/tensorflow/core/kernels/
bincount_op_test.cc 38 Node* node; local
44 .Finalize(g, &node));
  /external/u-boot/arch/x86/cpu/ivybridge/
fsp_configs.c 18 int node; local
20 node = fdtdec_next_compatible(blob, 0, COMPAT_INTEL_IVYBRIDGE_FSP);
21 if (node < 0) {
22 debug("%s: Cannot find FSP node\n", __func__);
27 fdtdec_get_bool(blob, node, "fsp,enable-ht");
29 fdtdec_get_bool(blob, node, "fsp,enable-turbo");
31 fdtdec_get_bool(blob, node, "fsp,enable-memory-down");
33 fdtdec_get_bool(blob, node, "fsp,enable-fast-boot");
  /external/u-boot/drivers/qe/
fdt.c 18 * If a QE firmware has been uploaded, then add the 'firmware' node under
19 * the 'qe' node.
24 int node, ret; local
30 node = fdt_path_offset(blob, "/qe");
31 if (node < 0)
34 /* We assume the node doesn't exist yet */
35 node = fdt_add_subnode(blob, node, "firmware");
36 if (node < 0)
39 ret = fdt_setprop(blob, node, "extended-modes"
    [all...]
  /cts/tests/tests/tools/processors/view_inspector/src/android/processor/view/inspector/cts/
PlatformInspectableProcessorTest.java 100 IntPropertyTest node = new IntPropertyTest(mRandom); local
101 mapAndRead(node);
102 assertEquals(node.getValue(), mPropertyReader.get("value"));
113 IntPropertyTest node = new IntPropertyTest(mRandom); local
114 loadCompanion(IntPropertyTest.class).readProperties(node, mPropertyReader);
132 NamedPropertyTest node = new NamedPropertyTest(mRandom); local
133 mapAndRead(node);
135 assertEquals(node.getValue(), mPropertyReader.get("myNamedValue"));
193 InferredPropertyNameTest node = new InferredPropertyNameTest(mRandom); local
194 mapAndRead(node);
229 InferredBooleanNameTest node = new InferredBooleanNameTest(mRandom); local
268 ColorTest node = new ColorTest(mRandom); local
308 ValueTypeTest node = new ValueTypeTest(mRandom); local
382 PrimitivePropertiesTest node = new PrimitivePropertiesTest(mRandom); local
421 ObjectPropertiesTest node = new ObjectPropertiesTest(mRandom); local
445 IntEnumTest node = new IntEnumTest(); local
481 IntFlagTest node = new IntFlagTest(); local
521 PublicFieldTest node = new PublicFieldTest(mRandom); local
709 ResourceIdTest node = new ResourceIdTest(mRandom); local
    [all...]
  /external/clang/test/SemaCXX/
libstdcxx_pointer_return_false_hack.cpp 15 typedef hashnode<T> node; typedef in struct:std::tr1::hashtable
16 node *find_node() {
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
MethodCoverageImplTest.java 27 MethodCoverageImpl node = new MethodCoverageImpl("emptySet", local
30 assertEquals(ICoverageNode.ElementType.METHOD, node.getElementType());
31 assertEquals("emptySet", node.getName());
32 assertEquals("()Ljava/util/Set;", node.getDesc());
34 node.getSignature());
39 ICoverageNode node = new MethodCoverageImpl("sample", "()V", null); local
41 assertEquals(CounterImpl.COUNTER_0_0, node.getInstructionCounter());
42 assertEquals(CounterImpl.COUNTER_0_0, node.getBranchCounter());
43 assertEquals(CounterImpl.COUNTER_0_0, node.getLineCounter());
44 assertEquals(CounterImpl.COUNTER_0_0, node.getComplexityCounter())
51 MethodCoverageImpl node = new MethodCoverageImpl("sample", "()V", null); local
61 MethodCoverageImpl node = new MethodCoverageImpl("sample", "()V", null); local
71 MethodCoverageImpl node = new MethodCoverageImpl("sample", "()V", null); local
78 MethodCoverageImpl node = new MethodCoverageImpl("sample", "()V", null); local
86 MethodCoverageImpl node = new MethodCoverageImpl("sample", "()V", null); local
94 MethodCoverageImpl node = new MethodCoverageImpl("sample", "()V", null); local
102 MethodCoverageImpl node = new MethodCoverageImpl("sample", "()V", null); local
110 MethodCoverageImpl node = new MethodCoverageImpl("sample", "()V", null); local
118 MethodCoverageImpl node = new MethodCoverageImpl("sample", "()V", null); local
126 MethodCoverageImpl node = new MethodCoverageImpl("sample", "()V", null); local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
PCommand.java 3 package com.google.clearsilver.jsilver.syntax.node;
5 public abstract class PCommand extends Node
PExpression.java 3 package com.google.clearsilver.jsilver.syntax.node;
5 public abstract class PExpression extends Node
PPosition.java 3 package com.google.clearsilver.jsilver.syntax.node;
5 public abstract class PPosition extends Node
PVariable.java 3 package com.google.clearsilver.jsilver.syntax.node;
5 public abstract class PVariable extends Node
Switch.java 3 package com.google.clearsilver.jsilver.syntax.node;
  /external/tensorflow/tensorflow/compiler/jit/
encapsulate_util.h 31 // stored in node attribute `kXlaInferredShapesAttrName`.
38 // Attribute indicating that some ops in this node's XLA computation has control
39 // dependency on this node. Attribute value will always be "true".
42 // Attribute indicating that this node has control dependency on some ops in
43 // this node's XLA computation. Attribute value will always be "true".
46 // Attribute indicating that this is an Placeholder node added to act as a
47 // temporary input node for an outside compilation node. Attribute value will be
48 // string (original input node name).
51 // Attribute indicating that this is an Placeholder node added to act as
87 Node* node; member in struct:tensorflow::XlaClusterInfo
    [all...]
  /external/tensorflow/tensorflow/core/grappler/optimizers/data/vectorization/
wrapped_tensor.h 26 Node* const node; member in struct:tensorflow::grappler::WrappedTensor
37 WrappedTensor(Node* node, int output_index, bool stacked)
38 : node(node), output_index(output_index), stacked(stacked) {}
  /external/u-boot/arch/x86/cpu/baytrail/
fsp_configs.c 36 int node; local
43 node = fdtdec_next_compatible(blob, 0, COMPAT_INTEL_BAYTRAIL_FSP);
44 if (node < 0) {
45 debug("%s: Cannot find FSP node\n", __func__);
49 fsp_upd->mrc_init_tseg_size = fdtdec_get_int(blob, node,
52 fsp_upd->mrc_init_mmio_size = fdtdec_get_int(blob, node,
55 fsp_upd->mrc_init_spd_addr1 = fdtdec_get_int(blob, node,
58 fsp_upd->mrc_init_spd_addr2 = fdtdec_get_int(blob, node,
61 fsp_upd->emmc_boot_mode = fdtdec_get_int(blob, node,
64 fsp_upd->enable_sdio = fdtdec_get_bool(blob, node, "fsp,enable-sdio")
    [all...]

Completed in 960 milliseconds

1 2 3 4 5 6 7 8 91011>>