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

1 2 3

  /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 31 #define ABSTRACT_TYPE(CLASS, PARENT)
32 #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); \
CommentVisitor.h 36 #define COMMENT(CLASS, PARENT) \
47 #define COMMENT(CLASS, PARENT) \
48 RetTy visit ## CLASS(PTR(CLASS) C) { DISPATCH(PARENT, PARENT); }
StmtVisitor.h 102 #define STMT(CLASS, PARENT) \
110 #define STMT(CLASS, PARENT) \
111 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); }
  /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 29 #define ABSTRACT_TYPELOC(CLASS, PARENT)
30 #define TYPELOC(CLASS, PARENT) \
46 #define ABSTRACT_TYPELOC(CLASS, PARENT)
47 #define TYPELOC(CLASS, PARENT) \
64 #define ABSTRACT_TYPELOC(CLASS, PARENT)
65 #define TYPELOC(CLASS, PARENT) \
86 #define ABSTRACT_TYPELOC(CLASS, PARENT)
87 #define TYPELOC(CLASS, PARENT) \
184 #define ABSTRACT_TYPELOC(CLASS, PARENT)
185 #define TYPELOC(CLASS, PARENT) \
    [all...]
Comment.cpp 25 #define COMMENT(CLASS, PARENT) \
54 #define COMMENT(CLASS, PARENT) \
70 #define COMMENT(CLASS, PARENT) \
84 #define COMMENT(CLASS, PARENT) \
  /packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
PartnerBookmarksContract.java 35 * top-level folder with ?parent? set to {@link #BOOKMARK_PARENT_ROOT_ID}
36 * shall be provided; more than one bookmark with ?parent? set to
108 * Used in {@link #PARENT} column and indicates the row doesn't have a parent.
158 * The ID of the parent folder. BOOKMARK_PARENT_ROOT_ID is the root folder.
161 public static final String PARENT = "parent";
PartnerBookmarksProvider.java 118 map.put(PartnerBookmarksContract.Bookmarks.PARENT,
119 PartnerBookmarksContract.Bookmarks.PARENT);
175 PartnerBookmarksContract.Bookmarks.PARENT +
245 values.put(PartnerBookmarksContract.Bookmarks.PARENT,
270 PartnerBookmarksContract.Bookmarks.PARENT);
381 PartnerBookmarksContract.Bookmarks.PARENT + "=?");
403 String where = PartnerBookmarksContract.Bookmarks.PARENT + "=?";
  /packages/apps/Browser/src/com/android/browser/
BookmarksLoader.java 47 Bookmarks.PARENT, // 8
  /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/providers/PartnerBookmarksProvider/tests/src/com/android/providers/partnerbookmarks/
PartnerBookmarksProviderTest.java 49 long parent = cursor.getLong( local
50 cursor.getColumnIndexOrThrow(PartnerBookmarksContract.Bookmarks.PARENT));
61 if (folderFilter == NO_FOLDER_FILTER || folderFilter == parent) {
  /external/clang/tools/libclang/
CursorVisitor.h 37 CXCursor parent; member in class:clang::cxcursor::VisitorJob
41 : parent(C), K(k) {
48 const CXCursor &getParent() const { return parent; }
68 /// \brief The parent cursor whose children we are traversing.
69 CXCursor Parent;
71 /// \brief The declaration that serves at the parent of any statement or
122 CXCursor &Parent;
127 SetParentRAII(CXCursor &Parent, const Decl *&StmtParent,
129 : Parent(Parent), StmtParent(StmtParent), OldParent(Parent
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 260 map.put(Bookmarks.PARENT, Bookmarks.PARENT);
278 "A." + Bookmarks._ID + "=" + TABLE_BOOKMARKS + "." + Bookmarks.PARENT +
407 Bookmarks.PARENT + " INTEGER," +
538 values.put(Bookmarks.PARENT, FIXED_ID_ROOT);
647 values.putNull(Bookmarks.PARENT);
663 String parent = Long.toString(parentId); local
672 Bookmarks.PARENT + "," +
679 parent + "," +
1519 String[] parent = getAccountNameAndType(parentId); local
1530 String[] parent = getAccountNameAndType(parentId); local
1844 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...]
  /development/build/tools/
mk_sdk_repo_xml.sh 160 local PARENT="$1"
169 if [[ "$E" == "$ELEMENT" ]] && [[ "$P" == "@" || "$P" == "$PARENT" ]]; then
  /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 97 Files.FileColumns.PARENT, // 3
107 private static final String PARENT_WHERE = Files.FileColumns.PARENT + "=?";
111 + Files.FileColumns.PARENT + "=?";
113 + Files.FileColumns.PARENT + "=?";
115 + Files.FileColumns.PARENT + "=?";
260 private int beginSendObject(String path, int format, int parent,
288 values.put(Files.FileColumns.PARENT, parent);
342 private Cursor createObjectQuery(int storageID, int format, int parent) throws RemoteException {
350 if (parent == 0)
    [all...]
MtpPropertyGroup.java 66 private static final String PARENT_WHERE = Files.FileColumns.PARENT + "=?";
134 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...]
  /prebuilts/gcc/linux-x86/host/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)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
libc-lock.h 463 #define __libc_atfork(PREPARE, PARENT, CHILD) \
464 __register_atfork (PREPARE, PARENT, CHILD, NULL)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
libc-lock.h 463 #define __libc_atfork(PREPARE, PARENT, CHILD) \
464 __register_atfork (PREPARE, PARENT, CHILD, NULL)
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_FilesTest.java 103 // insert file and check its parent
109 cursor = mResolver.query(fileUri, new String[] { MediaStore.Files.FileColumns.PARENT },
114 assertTrue("got 0 parent for non root file", parentid != 0);
  /frameworks/base/core/java/android/provider/
BrowserContract.java 354 * The ID of the parent folder. ID 0 is the root folder.
357 public static final String PARENT = "parent";
360 * The source ID for an item's parent. Read-only.
361 * @see #PARENT
368 * {@link #PARENT}. May be negative.

Completed in 407 milliseconds

1 2 3