HomeSort by relevance Sort by last modified time
    Searched refs:NODE (Results 1 - 25 of 52) sorted by null

1 2 3

  /hardware/ti/omap4-aah/security/tf_daemon/
smc_properties_parser.h 58 typedef struct NODE
60 struct NODE* pLeft;
61 struct NODE* pRight;
62 struct NODE* pNext;
63 struct NODE* pPrevious;
65 } NODE;
69 NODE* pRoot;
70 NODE* pFirst;
75 NODE sNode;
82 NODE sNode
    [all...]
smc_properties_parser.c 117 static NODE* static_listFindNodeElement(NODE* pList,char* pName,bool bIsCaseSensitive)
150 static S_RESULT static_listSortedAddNode(NODE* pList,NODE* pNode)
203 static S_RESULT SMCPropListSortedAdd(LIST* pList,NODE* pNode)
211 TRACE_ERROR("Trying to insert a NULL node name !\n");
224 /* update the first node of the linked list */
234 static NODE* SMCPropListFindElement(LIST* pList,char* pName,bool bIsCaseSensitive)
387 nError=SMCPropListSortedAdd(pPublicPropertyList,(NODE*)pProperty);
439 nError=SMCPropListSortedAdd(pPrivatePropertyList,(NODE*)pProperty)
    [all...]
smc_properties.c 181 NODE* pNext = NULL;
  /hardware/ti/omap4xxx/security/tf_daemon/
smc_properties_parser.h 58 typedef struct NODE
60 struct NODE* pLeft;
61 struct NODE* pRight;
62 struct NODE* pNext;
63 struct NODE* pPrevious;
65 } NODE;
69 NODE* pRoot;
70 NODE* pFirst;
75 NODE sNode;
82 NODE sNode
    [all...]
smc_properties_parser.c 116 static NODE* static_listFindNodeElement(NODE* pList,char* pName,bool bIsCaseSensitive)
149 static S_RESULT static_listSortedAddNode(NODE* pList,NODE* pNode)
202 static S_RESULT SMCPropListSortedAdd(LIST* pList,NODE* pNode)
210 TRACE_ERROR("Trying to insert a NULL node name !\n");
223 /* update the first node of the linked list */
233 static NODE* SMCPropListFindElement(LIST* pList,char* pName,bool bIsCaseSensitive)
377 nError=SMCPropListSortedAdd(pPublicPropertyList,(NODE*)pProperty);
388 nError=SMCPropListSortedAdd(pPrivatePropertyList,(NODE*)pProperty)
    [all...]
smc_properties.c 181 NODE* pNext = NULL;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/cp/
cp-tree.h 171 The BV_DELTA of each node gives the amount by which to adjust the
177 The BV_VCALL_INDEX of each node, if non-NULL, gives the vtable
203 #define VAR_OR_FUNCTION_DECL_CHECK(NODE) \
204 TREE_CHECK2(NODE,VAR_DECL,FUNCTION_DECL)
206 #define TYPE_FUNCTION_OR_TEMPLATE_DECL_CHECK(NODE) \
207 TREE_CHECK3(NODE,TYPE_DECL,TEMPLATE_DECL,FUNCTION_DECL)
209 #define TYPE_FUNCTION_OR_TEMPLATE_DECL_P(NODE) \
210 (TREE_CODE (NODE) == TYPE_DECL || TREE_CODE (NODE) == TEMPLATE_DECL \
211 || TREE_CODE (NODE) == FUNCTION_DECL
    [all...]
name-lookup.h 60 #define LOCAL_BINDING_P(NODE) ((NODE)->is_local)
62 /* True if NODE->value is from a base class of the class which is
64 #define INHERITED_VALUE_BINDING_P(NODE) ((NODE)->value_is_inherited)
273 /* The tree node representing the global scope. */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree.h 226 /* Returns nonzero iff NODE is an expression of some kind. */
228 #define EXPR_P(NODE) IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (NODE)))
230 /* Number of argument-words in each kind of tree-node. */
325 /* In an OMP_CLAUSE node. */
400 /* A tree node can represent a data type, a variable, an expression
401 or a statement. Each node has a TREE_CODE which says what kind of
409 As for the contents of a tree node: there are some fields
411 fields as well. The fields of a node are never accessed directly,
414 /* Every kind of tree node starts with this structure
    [all...]
symtab.h 37 #define HT_LEN(NODE) ((NODE)->len)
38 #define HT_STR(NODE) ((NODE)->str)
52 /* Call back, allocate a node. */
54 /* Call back, allocate something that hangs off a node like a cpp_macro.
87 TABLE->PFILE, the node, and a PTR, and the callback sequence stops
93 a nonzero value, the node is removed from the table. */
cpplib.h 216 node;
229 struct cpp_identifier GTY ((tag ("CPP_TOKEN_FLD_NODE"))) node; member in union:cpp_token_u
598 /* The structure of a node in the hash table. The hash table has
606 diagnostic may be required for this node. Currently this only
610 /* Hash node flags. */
622 /* Different flavors of hash node. */
649 #define HT_NODE(NODE) ((ht_identifier *) (NODE))
650 #define NODE_LEN(NODE) HT_LEN (&(NODE)->ident
    [all...]
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathConstants.java 70 * <p>Maps to Java {@link org.w3c.dom.Node}.</p>
72 public static final QName NODE = new QName("http://www.w3.org/1999/XSL/Transform", "NODE");
  /frameworks/native/libs/binder/
MemoryDealer.cpp 48 template <typename NODE>
51 NODE* mFirst;
52 NODE* mLast;
57 NODE const* head() const { return mFirst; }
58 NODE* head() { return mFirst; }
59 NODE const* tail() const { return mLast; }
60 NODE* tail() { return mLast; }
62 void insertAfter(NODE* node, NODE* newNode)
277 chunk_t* node = new chunk_t(0, mHeapSize \/ kMemoryAlign); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/c-family/
c-common.h 306 (&(((struct c_common_identifier *) (id))->node))
308 ((enum rid) (((struct c_common_identifier *) (id))->node.rid_code))
310 (((struct c_common_identifier *) (id))->node.rid_code = (unsigned char) code)
316 struct cpp_hashnode node; variable in typeref:struct:cpp_hashnode
432 /* A node for `((void) 0)'. */
435 /* The node for C++ `__null'. */
833 #define STATEMENT_LIST_STMT_EXPR(NODE) \
834 TREE_LANG_FLAG_1 (STATEMENT_LIST_CHECK (NODE))
837 #define STATEMENT_LIST_HAS_LABEL(NODE) \
838 TREE_LANG_FLAG_3 (STATEMENT_LIST_CHECK (NODE))
    [all...]
  /development/build/tools/
mk_sdk_repo_xml.sh 298 local NODE LAST_NODE EXTRA_SPACE
303 NODE="${KEY%%/*}"
305 if [[ "$NODE" == "$KEY" ]]; then
306 NODE=""
309 if [[ "$NODE" != "$LAST_NODE" ]]; then
312 LAST_NODE="$NODE"
313 [[ "$NODE" ]] && echo " <sdk:$NODE>" >> "$OUT"
394 # Parse the libs for an addon and generate the <libs> node
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
h264_utils.h 387 #define PRINT_PANSCAN_DATA(NODE)
401 #define PRINT_PANSCAN_DATA(NODE) \
403 if (NODE) {\
405 (NODE)->start_ts, (NODE)->end_ts);\
406 PRINT_PANSCAN_PARAM(NODE->pan_scan_param);\
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
h264_utils.h 385 #define PRINT_PANSCAN_DATA(NODE)
399 #define PRINT_PANSCAN_DATA(NODE) \
401 if (NODE) {\
403 (NODE)->start_ts, (NODE)->end_ts);\
404 PRINT_PANSCAN_PARAM(NODE->pan_scan_param);\
  /external/lzma/C/
Ppmd7.c 53 #define NODE(ptr) (ptr)
55 #define NODE(offs) ((CPpmd7_Node *)(p->Base + (offs)))
118 static void InsertNode(CPpmd7 *p, void *node, unsigned indx)
120 *((CPpmd_Void_Ref *)node) = p->FreeList[indx];
121 p->FreeList[indx] = REF(node);
126 CPpmd_Void_Ref *node = (CPpmd_Void_Ref *)Ppmd7_GetPtr(p, p->FreeList[indx]); local
127 p->FreeList[indx] = *node;
128 return node;
165 CPpmd7_Node *node = NODE(next); local
182 CPpmd7_Node *node = NODE(n); local
200 CPpmd7_Node *node = NODE(n); local
    [all...]
  /external/chromium_org/third_party/libxml/src/
valid.c 132 * @node: the node raising the error
142 xmlNodePtr node, xmlParserErrors error,
163 __xmlRaiseError(schannel, channel, data, pctxt, node, XML_FROM_VALID, error,
175 * @node: the node raising the error
185 xmlNodePtr node, xmlParserErrors error,
206 __xmlRaiseError(schannel, channel, data, pctxt, node, XML_FROM_VALID, error,
216 * @node: the node raising the erro
268 xmlNodePtr node; \/* pointer to the current node *\/ member in struct:_xmlValidState
353 xmlNodePtr node; \/* pointer to the current node in the list *\/ member in struct:_xmlValidState
    [all...]
  /external/libxml2/
valid.c 132 * @node: the node raising the error
142 xmlNodePtr node, xmlParserErrors error,
163 __xmlRaiseError(schannel, channel, data, pctxt, node, XML_FROM_VALID, error,
175 * @node: the node raising the error
185 xmlNodePtr node, xmlParserErrors error,
206 __xmlRaiseError(schannel, channel, data, pctxt, node, XML_FROM_VALID, error,
216 * @node: the node raising the erro
268 xmlNodePtr node; \/* pointer to the current node *\/ member in struct:_xmlValidState
353 xmlNodePtr node; \/* pointer to the current node in the list *\/ member in struct:_xmlValidState
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
ValuesEditorDelegate.java 33 import org.w3c.dom.Node;
90 * Processes the new XML Model, which XML root node is given.
105 Node node = (Node) xpath.evaluate("/" + resources_desc.getXmlName(), //$NON-NLS-1$ local
107 XPathConstants.NODE);
108 // Node can be null _or_ it must be the element we searched for.
109 assert node == null || node.getNodeName().equals(resources_desc.getXmlName());
111 // Refresh the manifest UI node and all its descendant
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathExpressionImpl.java 38 import org.w3c.dom.Node;
121 Node contextNode = (Node)contextItem;
124 // dummy Document as Context Node
152 * @param item The starting context (node or node list, for example).
219 * @param item The starting context (node or node list, for example).
333 ( returnType.equals( XPathConstants.NODE ) ) ||
359 // XPathConstants.NODE
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 24 import org.w3c.dom.Node;
157 @Override void test(Node contextNode) {
174 @Override void test(Node contextNode) throws XPathExpressionException {
175 Node newContext = (Node) xpath.evaluate(
176 select, contextNode, XPathConstants.NODE);
187 @Override void test(Node contextNode) throws XPathExpressionException {
206 @Override void test(Node contextNode) throws XPathExpressionException {
228 Node getNode() {
231 return (Node) xpath.evaluate(select, inputSource, XPathConstants.NODE)
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
speech_rule.js 67 NODE: 'NODE',
81 case '[n]': return cvox.SpeechRule.Type.NODE;
97 case cvox.SpeechRule.Type.NODE: return '[n]';
153 // it can be treated like node and multi type.
156 case cvox.SpeechRule.Type.NODE:
280 * @param {string} query A node selector function or xpath expression.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/
MenuEditorDelegate.java 33 import org.w3c.dom.Node;
89 * Processes the new XML Model, which XML root node is given.
110 Node node = (Node) xpath.evaluate("/" + root_desc.getXmlName(), //$NON-NLS-1$ local
112 XPathConstants.NODE);
113 if (node == null && root_desc.getMandatory() != Mandatory.NOT_MANDATORY) {
115 node = getUiRootNode().createXmlNode();
118 // Refresh the manifest UI node and all its descendants
119 getUiRootNode().loadFromXmlNode(node);
    [all...]

Completed in 522 milliseconds

1 2 3