Searched refs:node (Results 251 - 275 of 1808) sorted by relevance

<<11121314151617181920>>

/external/clang/test/SemaCXX/
H A Dlibstdcxx_pointer_return_false_hack.cpp15 typedef hashnode<T> node; typedef in struct:std::tr1::hashtable
16 node *find_node() {
/external/e2fsprogs/lib/e2p/
H A Duuid.c22 __u8 node[6]; member in struct:uuid
60 memcpy(uu->node, ptr, 6);
72 uuid.node[0], uuid.node[1], uuid.node[2],
73 uuid.node[3], uuid.node[4], uuid.node[5]);
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/checker/
H A DRecordPublicApiRules.java87 @Override public boolean visit(AnnotationTypeDeclaration node) {
91 @Override public boolean visit(AnnotationTypeMemberDeclaration node) {
95 @Override public boolean visit(EnumConstantDeclaration node) {
96 return handleMemberDeclarationNode(node);
99 @Override public boolean visit(EnumDeclaration node) {
100 return handleTypeDeclarationNode(node);
103 @Override public boolean visit(FieldDeclaration node) {
104 return handleMemberDeclarationNode(node);
107 @Override public boolean visit(MethodDeclaration node) {
108 return handleMemberDeclarationNode(node);
122 handleTypeDeclarationNode(AbstractTypeDeclaration node) argument
128 handleMemberDeclarationNode(BodyDeclaration node) argument
134 handleDeclarationNode(BodyDeclaration node) argument
167 isMemberPublicApiEligible(AbstractTypeDeclaration type, BodyDeclaration node) argument
184 isExplicitlyHidden(BodyDeclaration node) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DACsOpenPosition.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setCsOpen(TCsOpen node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._csOpen_ = node;
H A DADataCommand.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setData(TData node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._data_ = node;
H A DADecNumberVariable.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setDecNumber(TDecNumber node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._decNumber_ = node;
H A DADecimalExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setValue(TDecNumber node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._value_ = node;
H A DAExistsExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setExpression(PExpression node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._expression_ = node;
H A DAHexExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setValue(THexNumber node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._value_ = node;
H A DAHexNumberVariable.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setHexNumber(THexNumber node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._hexNumber_ = node;
H A DANameVariable.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setWord(TWord node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._word_ = node;
H A DANegativeExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setExpression(PExpression node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._expression_ = node;
H A DANotExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setExpression(PExpression node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._expression_ = node;
H A DANumericExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setExpression(PExpression node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._expression_ = node;
H A DAStringExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setValue(TString node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._value_ = node;
H A DAVariableExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setVariable(PVariable node) argument
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._variable_ = node;
/external/ltp/testcases/kernel/numa/
H A Dtest.sh33 if [ ! -d /sys/devices/system/node ]
37 x=$(ls /sys/devices/system/node | wc -l)
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_cfg.h44 void *node; local
46 node = rzalloc_size(ctx, size);
47 assert(node != NULL);
49 return node;
73 void *node; local
75 node = rzalloc_size(ctx, size);
76 assert(node != NULL);
78 return node;
/external/sfntly/cpp/src/test/
H A Dtest_xml_utils.h27 TiXmlNodeVector* GetNodesWithName(const TiXmlNode* node,
29 const TiXmlAttribute* GetAttribute(const TiXmlNode* node,
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DYamlComposeTest.java42 MappingNode node = (MappingNode) yaml.compose(new StringReader("abc: 56"));
43 ScalarNode node1 = (ScalarNode) node.getValue().get(0).getKeyNode();
45 ScalarNode node2 = (ScalarNode) node.getValue().get(0).getValueNode();
52 for (Node node : yaml.composeAll(new StringReader("abc: 56\n---\n123\n---\n456"))) {
54 assertEquals(NodeId.mapping, node.getNodeId());
56 assertEquals(NodeId.scalar, node.getNodeId());
64 for (Node node : yaml.composeAll(new StringReader("6"))) {
65 assertEquals(NodeId.scalar, node.getNodeId());
/external/v8/src/compiler/
H A Dcheckpoint-elimination.h23 Reduction Reduce(Node* node) final;
26 Reduction ReduceCheckpoint(Node* node);
H A Djs-call-reducer.h40 Reduction Reduce(Node* node) final;
43 Reduction ReduceArrayConstructor(Node* node);
44 Reduction ReduceNumberConstructor(Node* node);
45 Reduction ReduceFunctionPrototypeApply(Node* node);
46 Reduction ReduceFunctionPrototypeCall(Node* node);
47 Reduction ReduceObjectPrototypeGetProto(Node* node);
48 Reduction ReduceJSCallConstruct(Node* node);
49 Reduction ReduceJSCallFunction(Node* node);
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DBytesTrie.java185 int node;
186 return (remainingMatchLength_<0 && (node=bytes_[pos]&0xff)>=kMinValueLead) ?
187 valueResults_[node&kValueIsFinal] : Result.NO_VALUE;
222 // Remaining part of a linear-match node.
226 int node;
227 return (length<0 && (node=bytes_[pos]&0xff)>=kMinValueLead) ?
228 valueResults_[node&kValueIsFinal] : Result.NO_VALUE;
264 // Continue a linear-match node.
270 int node;
271 return (length<0 && (node
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DBytesTrie.java200 int node;
201 return (remainingMatchLength_<0 && (node=bytes_[pos]&0xff)>=kMinValueLead) ?
202 valueResults_[node&kValueIsFinal] : Result.NO_VALUE;
239 // Remaining part of a linear-match node.
243 int node;
244 return (length<0 && (node=bytes_[pos]&0xff)>=kMinValueLead) ?
245 valueResults_[node&kValueIsFinal] : Result.NO_VALUE;
282 // Continue a linear-match node.
288 int node;
289 return (length<0 && (node
[all...]
/external/dtc/
H A Dfdtput.c33 OPER_WRITE_PROP, /* Write a property in a node */
34 OPER_CREATE_NODE, /* Create a new node */
35 OPER_REMOVE_NODE, /* Delete a node */
36 OPER_DELETE_PROP, /* Delete a property in a node */
49 * Report an error with a particular node.
52 * @param namelen Length of node name, or -1 to use entire string
144 /* FDT_BEGIN_NODE, node name in off_struct and FDT_END_NODE */
170 int node; local
173 node = fdt_path_offset(*blob, node_name);
174 if (node <
205 int node, offset = 0; local
246 int node = 0; local
285 int node = 0; local
311 int node = 0; local
333 char *node; local
[all...]

Completed in 659 milliseconds

<<11121314151617181920>>