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

1 2 3 4 5

  /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...]
  /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. */
  /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");
  /external/toybox/tests/
losetup.test 17 NODE="$(stat -t blah.img | awk '{print $8}')"
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
Compress.c 29 typedef INT16 NODE;
115 STATIC NODE mPos;
116 STATIC NODE mMatchPos;
117 STATIC NODE mAvail;
118 STATIC NODE *mPosition;
119 STATIC NODE *mParent;
120 STATIC NODE *mPrev;
121 STATIC NODE *mNext = NULL;
242 NODE LoopVar1;
245 SetMem (mPosition + WNDSIZ, (UINT8_MAX + 1) * sizeof (NODE), 0);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
TianoCompress.c 24 typedef INT32 NODE;
84 NODE
86 IN NODE NodeQ,
93 IN NODE NodeQ,
95 IN NODE NodeR
101 IN NODE Old
260 STATIC NODE mPos, mMatchPos, mAvail, *mPosition, *mParent, *mPrev, *mNext = NULL;
522 NODE Index;
535 mNext[Index] = (NODE) (Index + 1);
545 NODE
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
TianoCompress.c 34 typedef INT32 NODE;
103 NODE
105 IN NODE NodeQ,
112 IN NODE NodeQ,
114 IN NODE NodeR
120 IN NODE Old
279 STATIC NODE mPos, mMatchPos, mAvail, *mPosition, *mParent, *mPrev, *mNext = NULL;
535 NODE Index;
548 mNext[Index] = (NODE) (Index + 1);
558 NODE
    [all...]
  /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)
285 chunk_t* node = new chunk_t(0, mHeapSize \/ kMemoryAlign); local
    [all...]
  /external/selinux/libsepol/cil/src/
cil_symtab.h 46 #define NODE(n) ((struct cil_tree_node *)(DATUM(n)->nodes->head->data))
47 #define FLAVOR(f) (NODE(f)->flavor)
76 void cil_symtab_datum_remove_node(struct cil_symtab_datum *datum, struct cil_tree_node *node);
77 int cil_symtab_insert(symtab_t *symtab, hashtab_key_t key, struct cil_symtab_datum *datum, struct cil_tree_node *node);
  /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"
392 # Parse the libs for an addon and generate the <libs> node
  /external/llvm/include/llvm/IR/
SymbolTableListTraits.h 54 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
55 template <> struct SymbolTableListParentType<NODE> { typedef PARENT type; };
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
SymbolTableListTraits.h 46 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
47 template <> struct SymbolTableListParentType<NODE> { typedef PARENT type; };
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
SymbolTableListTraits.h 50 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
51 template <> struct SymbolTableListParentType<NODE> { typedef PARENT type; };
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
SymbolTableListTraits.h 50 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
51 template <> struct SymbolTableListParentType<NODE> { using type = PARENT; };
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
SymbolTableListTraits.h 50 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
51 template <> struct SymbolTableListParentType<NODE> { using type = PARENT; };
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
SymbolTableListTraits.h 50 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
51 template <> struct SymbolTableListParentType<NODE> { using type = PARENT; };
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/IR/
SymbolTableListTraits.h 50 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
51 template <> struct SymbolTableListParentType<NODE> { using type = PARENT; };
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/IR/
SymbolTableListTraits.h 50 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
51 template <> struct SymbolTableListParentType<NODE> { using type = PARENT; };
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/IR/
SymbolTableListTraits.h 50 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
51 template <> struct SymbolTableListParentType<NODE> { using type = PARENT; };
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
SymbolTableListTraits.h 50 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
51 template <> struct SymbolTableListParentType<NODE> { typedef PARENT type; };
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/IR/
SymbolTableListTraits.h 50 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
51 template <> struct SymbolTableListParentType<NODE> { using type = PARENT; };
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/IR/
SymbolTableListTraits.h 50 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
51 template <> struct SymbolTableListParentType<NODE> { using type = PARENT; };
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/IR/
SymbolTableListTraits.h 50 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \
51 template <> struct SymbolTableListParentType<NODE> { using type = PARENT; };

Completed in 988 milliseconds

1 2 3 4 5