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

1 2

  /external/clang/include/clang/AST/
TypeLocVisitor.h 31 #define ABSTRACT_TYPELOC(CLASS, PARENT)
32 #define TYPELOC(CLASS, PARENT) \
41 #define ABSTRACT_TYPELOC(CLASS, PARENT)
42 #define TYPELOC(CLASS, PARENT) \
49 #define TYPELOC(CLASS, PARENT) \
51 DISPATCH(PARENT); \
TypeVisitor.h 32 #define ABSTRACT_TYPE(CLASS, PARENT)
33 #define TYPE(CLASS, PARENT) case Type::CLASS: DISPATCH(CLASS##Type);
40 #define TYPE(CLASS, PARENT) RetTy Visit##CLASS##Type(const CLASS##Type *T) { \
41 DISPATCH(PARENT); \
StmtVisitor.h 104 #define STMT(CLASS, PARENT) \
112 #define STMT(CLASS, PARENT) \
113 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); }
RecursiveASTVisitor.h 98 /// where Bar is the direct parent class of Foo (unless Foo has
99 /// no parent), and then calls VisitFoo(x) (see the next list item).
230 #define STMT(CLASS, PARENT) \
238 #define STMT(CLASS, PARENT) \
240 TRY_TO(WalkUpFrom##PARENT(S)); \
435 #define STMT(CLASS, PARENT) \
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
Axis.java 35 * the ancestors of the context node consist of the parent of context
36 * node and the parent's parent and so on; thus, the ancestor axis will
97 * The parent axis contains the parent of the context node,
100 public static final int PARENT = 10;
176 false, // parent (one node, has no order)
195 "parent", // 10
  /external/clang/lib/AST/
TypeLoc.cpp 27 #define ABSTRACT_TYPELOC(CLASS, PARENT)
28 #define TYPELOC(CLASS, PARENT) \
44 #define ABSTRACT_TYPELOC(CLASS, PARENT)
45 #define TYPELOC(CLASS, PARENT) \
62 #define ABSTRACT_TYPELOC(CLASS, PARENT)
63 #define TYPELOC(CLASS, PARENT) \
84 #define ABSTRACT_TYPELOC(CLASS, PARENT)
85 #define TYPELOC(CLASS, PARENT) \
161 #define ABSTRACT_TYPELOC(CLASS, PARENT)
162 #define TYPELOC(CLASS, PARENT) \
    [all...]
MicrosoftMangle.cpp 60 #define ABSTRACT_TYPE(CLASS, PARENT)
61 #define NON_CANONICAL_TYPE(CLASS, PARENT)
62 #define TYPE(CLASS, PARENT) void mangleType(const CLASS##Type *T);
650 #define ABSTRACT_TYPE(CLASS, PARENT)
651 #define NON_CANONICAL_TYPE(CLASS, PARENT) \
655 #define TYPE(CLASS, PARENT) \
    [all...]
TypePrinter.cpp 54 #define ABSTRACT_TYPE(CLASS, PARENT)
55 #define TYPE(CLASS, PARENT) \
179 #define ABSTRACT_TYPE(CLASS, PARENT)
180 #define TYPE(CLASS, PARENT) case Type::CLASS: \
    [all...]
ItaniumMangle.cpp 292 #define ABSTRACT_TYPE(CLASS, PARENT)
293 #define NON_CANONICAL_TYPE(CLASS, PARENT)
294 #define TYPE(CLASS, PARENT) void mangleType(const CLASS##Type *T);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BookmarksLoader.java 48 Bookmarks.PARENT, // 8
BookmarkDragHandler.java 52 public long parent; field in class:BookmarkDragHandler.BookmarkDragState
81 state.parent = item.getLong(BookmarksLoader.COLUMN_INDEX_PARENT);
109 long parent = c.getLong(BookmarksLoader.COLUMN_INDEX_PARENT);
111 parent = c.getLong(BookmarksLoader.COLUMN_INDEX_ID);
113 if (parent != state.parent) {
116 values.put(BrowserContract.Bookmarks.PARENT, parent);
Bookmarks.java 67 * @param parent ID of the parent folder.
70 String name, Bitmap thumbnail, long parent) {
80 values.put(BrowserContract.Bookmarks.PARENT, parent);
AddBookmarkPage.java 351 values.put(BrowserContract.Bookmarks.PARENT, currentFolder);
407 // folder at all to prevent any chance of the user adding a parent
534 public void onItemClick(AdapterView<?> parent, View view, int position,
575 public View newView(Context context, Cursor cursor, ViewGroup parent) {
629 mCurrentFolder = mMap.getLong(BrowserContract.Bookmarks.PARENT, DEFAULT_FOLDER_ID);
1125 long parent = c.getLong(0); local
    [all...]
BrowserBookmarksPage.java 415 public boolean onChildClick(ExpandableListView parent, View v,
478 BookmarksLoader.PROJECTION, BrowserContract.Bookmarks.PARENT + "=?",
511 item.putLong(BrowserContract.Bookmarks.PARENT,
656 null, BrowserContract.Bookmarks.PARENT + "=?",
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BP2ProviderTests.java 37 BrowserContract.Bookmarks.PARENT,
78 // Insert a bookmark with the same ACCOUNT_* info as parent
82 values.put(BrowserContract.Bookmarks.PARENT, folderId);
97 // Insert a bookmark with no ACCOUNT_* set, BUT with a valid parent
98 // The inserted should end up with the ACCOUNT_* of the parent
115 // Insert a bookmark with a different ACCOUNT_* than it's parent
116 // ACCOUNT_* should override parent
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 263 map.put(Bookmarks.PARENT, Bookmarks.PARENT);
281 "A." + Bookmarks._ID + "=" + TABLE_BOOKMARKS + "." + Bookmarks.PARENT +
398 Bookmarks.PARENT + " INTEGER," +
526 values.put(Bookmarks.PARENT, FIXED_ID_ROOT);
633 values.putNull(Bookmarks.PARENT);
649 String parent = Long.toString(parentId); local
658 Bookmarks.PARENT + "," +
665 parent + "," +
1503 String[] parent = getAccountNameAndType(parentId); local
1514 String[] parent = getAccountNameAndType(parentId); local
1828 long parent = values.getAsLong(Bookmarks.PARENT); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 202 * @param operation non-null reference to parent operation.
203 * @param opPos The op map position of the parent operation.
224 * @param unary The parent unary operation.
225 * @param opPos The position in the op map of the parent operation.
851 pattern = new FunctionPattern(compileFunction(opPos), Axis.PARENT, Axis.CHILD);
861 Axis.PARENT, Axis.CHILD);
871 Axis.PARENT, Axis.ATTRIBUTE);
895 Axis.PARENT, Axis.CHILD);
914 // self::foo/parent::node[child::foo[3]]", or close enough.
918 Axis.PARENT, Axis.CHILD)
    [all...]
  /external/iproute2/examples/
cbq.init-v0.7.3 75 # now use qdisc's default class 1:0 as their parent
113 # - added options PARENT, LEAF, ISOLATED and BOUNDED. This allows
244 # PARENT=<clsid> optional, default not set
245 # PARENT=1280
247 # Specifies ID of the parent class to which you want this class be
248 # attached. You might want to use LEAF=none for the parent class as
251 # structures of CBQ classes. The ordering is important so that parent
259 # from borrowing bandwidth from its parent even if you have BOUNDED set
270 # its parent class in overlimit situation. If set to "no", the class
271 # will be allowed to borrow bandwidth from its parent
    [all...]
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 88 Files.FileColumns.PARENT, // 3
97 private static final String FORMAT_WHERE = Files.FileColumns.PARENT + "=?";
102 + Files.FileColumns.PARENT + "=?";
104 + Files.FileColumns.PARENT + "=?";
106 + Files.FileColumns.PARENT + "=?";
178 private int beginSendObject(String path, int format, int parent,
203 values.put(Files.FileColumns.PARENT, parent);
256 private Cursor createObjectQuery(int storageID, int format, int parent) throws RemoteException {
261 if (parent == 0)
    [all...]
MtpPropertyGroup.java 65 private static final String PARENT_WHERE = Files.FileColumns.PARENT + "=?";
132 column = Files.FileColumns.PARENT;
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
WalkerFactory.java 318 return Axis.PARENT;
376 case Axis.PARENT :
803 * "self::daz/parent::foo[child::daz[position()=2 and isPrevStepNode()]
872 // axes are not invertable (an element is a parent of an attribute, but
875 // inverted for match to "self::*/descendant-or-self::@*/parent::node()",
878 // "self::*/descendant-or-self::*/attribute::*/parent::node()"
880 // select: "@*/parent::*"
881 // inverted match: "self::*/child::@*/parent::node()"
882 // rewrite: "self::*/attribute::*/parent::node()"
887 // inverted match: "self::*/parent::@*/parent::node()
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
libc-lock.h 463 #define __libc_atfork(PREPARE, PARENT, CHILD) \
464 __register_atfork (PREPARE, PARENT, CHILD, NULL)
  /frameworks/base/core/java/android/provider/
BrowserContract.java 269 * The ID of the parent folder. ID 0 is the root folder.
272 public static final String PARENT = "parent";
275 * The source ID for an item's parent. Read-only.
276 * @see #PARENT
282 * {@link #PARENT}. May be negative.
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetService.java 66 BrowserContract.Bookmarks.PARENT};
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseIterators.java 126 case Axis.PARENT :
193 case Axis.PARENT :
338 * Iterator that returns the parent of a given node. Note that
373 * Set the node type of the parent that we're looking for.
375 * this type", but "yield the parent if it is of this type".
392 * only the immediate parent, _if_ it matches the requested nodeType.
1310 int parent, index; local
2008 int parent = _parent(node); local
    [all...]

Completed in 1016 milliseconds

1 2