/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_graph.h | 118 inline Node *parent() const; // returns NULL if count(incident edges) != 1 186 Graph::Node *Graph::Node::parent() const function in class:nv50_ir::Graph::Node
|
/external/mesa3d/src/glsl/ |
ralloc.c | 59 struct ralloc_header *parent; member in struct:ralloc_header 88 add_child(ralloc_header *parent, ralloc_header *info) 90 if (parent != NULL) { 91 info->parent = parent; 92 info->next = parent->child; 93 parent->child = info; 112 ralloc_header *parent = ctx != NULL ? get_header(ctx) : NULL; local 114 add_child(parent, info); 142 /* Update parent and sibling's links to the reallocated node. * 251 ralloc_header *info, *parent; local [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/ |
MediaDataBox.java | 54 ContainerBox parent; field in class:MediaDataBox 74 return parent; 77 public void setParent(ContainerBox parent) { 78 this.parent = parent;
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/ |
AbstractBox.java | 54 private ContainerBox parent; field in class:AbstractBox 195 return parent; 199 public void setParent(ContainerBox parent) { 200 this.parent = parent; 205 return parent.getIsoFile();
|
/external/openfst/src/include/fst/ |
shortest-path.h | 95 vector<StateId> parent; local 128 parent.push_back(kNoStateId); 132 parent.push_back(kNoStateId); 162 parent.push_back(kNoStateId); 174 parent[arc.nextstate] = s; 189 d = s, s = parent[s]) {
|
/external/qemu/memcheck/ |
memcheck_proc_management.c | 93 * parent_pid - Process ID of the parent process. 115 /* If new process has been forked, it inherits a copy of parent's 116 * process heap, as well as parent's mmaping of loaded modules. So, on 117 * fork we're required to copy parent's allocation descriptors map, as 118 * well as parent's mmapping map to the new process. */ 120 ProcDesc* parent = get_process_from_pid(parent_pid); local 121 if (parent == NULL) { 122 ME("memcheck: Unable to get parent process pid=%u for new process pid=%u", 128 /* Copy parent's allocation map, setting "inherited" flag, and clearing 129 * parent's "transition" flag in the copied entries. * [all...] |
/external/skia/src/svg/ |
SkSVGParser.cpp | 205 SkSVGElement* parent = fParents.count() > 0 ? fParents.top() : NULL; local 206 SkSVGElement* element = CreateElement(type, parent); 208 if (parent) { 209 element->fParent = parent; 358 SkSVGElement* SkSVGParser::CreateElement(SkSVGTypes type, SkSVGElement* parent) { 388 created->fParent = parent; 392 SkSVGElement* up = parent; 399 SkSVGElement* up = parent;
|
/external/smack/src/org/xbill/DNS/ |
Master.java | 324 String parent = file.getParent(); local 325 newfile = new File(parent, filename);
|
/external/smali/util/src/main/java/ds/tree/ |
RadixTreeImpl.java | 61 public void visit(String key, RadixTreeNode<T> parent, 75 public void visit(String key, RadixTreeNode<T> parent, RadixTreeNode<T> node) { 92 public void visit(String key, RadixTreeNode<T> parent, 99 // delete it from the its parent children list 101 Iterator<RadixTreeNode<T>> it = parent.getChildern() 110 // if parent is not real node and has only one child 112 if (parent.getChildern().size() == 1 113 && parent.isReal() == false) { 114 mergeNodes(parent, parent.getChildern().get(0)) [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
shortest-path.h | 77 vector<StateId> parent; local 98 parent.push_back(kNoStateId); 102 parent.push_back(kNoStateId); 119 parent.push_back(kNoStateId); 127 parent[arc.nextstate] = s; 146 parent[source] = kNoStateId; 151 d = s, s = parent[s]) {
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPNode.java | 44 /** link to the parent node */ 45 private XMPNode parent; field in class:XMPNode 107 * @return Returns the parent node. 111 return parent; 700 * @param index the index within the parent node (important for arrays) 711 if (parent != null) 856 * Sets the parent node, this is solely done by <code>addChild(...)</code> 859 * @param parent 860 * Sets the parent node. 862 protected void setParent(XMPNode parent) [all...] |
/frameworks/base/core/java/android/view/ |
ViewOverlay.java | 111 * parent hierarchy.</p> 160 ViewGroup parent = (ViewGroup) child.getParent(); local 161 if (parent != mHostView && parent.getParent() != null && 162 parent.mAttachInfo != null) { 167 parent.getLocationOnScreen(parentLocation); 172 parent.removeView(child); 173 if (parent.getLayoutTransition() != null) { 175 parent.getLayoutTransition().cancel(LayoutTransition.DISAPPEARING); 226 parent), so the invalidation cannot proceed through the normal parent hierarchy [all...] |
/frameworks/base/core/java/android/view/accessibility/ |
AccessibilityNodeInfoCache.java | 185 // Also be careful if the parent has changed since the new 186 // parent may be a predecessor of the old parent which will 264 AccessibilityNodeInfo parent = root; local 265 while (parent != null) { 266 root = parent; 267 parent = mCacheImpl.get(parent.getParentNodeId());
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
BaseMenuPresenter.java | 82 final ViewGroup parent = (ViewGroup) mMenuView; local 83 if (parent == null) return; 93 final View convertView = parent.getChildAt(childIndex); 96 final View itemView = getItemView(item, convertView, parent); 111 while (childIndex < parent.getChildCount()) { 112 if (!filterLeftoverView(parent, childIndex)) { 122 * @param childIndex Index within the parent to insert at 134 * @param parent Parent to filter from 138 protected boolean filterLeftoverView(ViewGroup parent, int childIndex) [all...] |
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
ExternalStorageProvider.java | 219 final File parent = getFileForDocId(docId); local 223 file = new File(parent, displayName); 229 file = new File(parent, addExtension(mimeType, displayName)); 234 file = new File(parent, addExtension(mimeType, displayName + " (" + n + ")")); 269 final File parent = getFileForDocId(parentDocumentId); local 270 for (File file : parent.listFiles()) { 280 final File parent = mIdToPath.get(rootId); local 283 pending.add(parent);
|
/frameworks/compile/mclinker/lib/LD/ |
GNUArchiveReader.cpp | 375 Archive::ArchiveMember* parent = local 378 assert(NULL != parent); 379 pArchive.inputs().insert(parent->lastPos, *(parent->move), *member); 383 parent->move->move(parent->lastPos); 384 parent->move = &InputTree::Afterward; 388 pArchive.addObjectMember(pFileOffset, parent->lastPos); 399 parent->lastPos,
|
/frameworks/native/cmds/installd/ |
installd.h | 102 struct cache_dir_struct* parent; member in struct:cache_dir_struct
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/ |
BaseMenuPresenter.java | 84 final ViewGroup parent = (ViewGroup) mMenuView; local 85 if (parent == null) { 97 final View convertView = parent.getChildAt(childIndex); 100 final View itemView = getItemView(item, convertView, parent); 116 while (childIndex < parent.getChildCount()) { 117 if (!filterLeftoverView(parent, childIndex)) { 127 * @param childIndex Index within the parent to insert at 140 * @param parent Parent to filter from 144 protected boolean filterLeftoverView(ViewGroup parent, int childIndex) [all...] |
/hardware/ti/omap4xxx/security/tf_sdk/include/ |
tee_client_api.h | 88 TEEC_SharedMemory * parent;
member in struct:__anon34836
|
/hardware/ti/wlan/mac80211/ti-utils/ |
calibrator.h | 54 const struct cmd *parent; member in struct:cmd 71 .parent = _section, \
|
/libcore/libart/src/main/java/java/lang/ |
ClassLoader.java | 53 * parent class loaders. Only if the parent class loader cannot satisfy the 85 * The parent ClassLoader. 87 private ClassLoader parent; field in class:ClassLoader 108 * loader (which is managed by the VM). We use a null value for the parent 109 * to indicate that the bootstrap loader is our parent. 132 * Returns the system class loader. This is the parent for new 187 * its parent. 195 * as its parent. 199 * parent [all...] |
/libcore/libdvm/src/main/java/java/lang/ |
ClassLoader.java | 53 * parent class loaders. Only if the parent class loader cannot satisfy the 85 * The parent ClassLoader. 87 private ClassLoader parent; field in class:ClassLoader 96 * loader (which is managed by the VM). We use a null value for the parent 97 * to indicate that the bootstrap loader is our parent. 120 * Returns the system class loader. This is the parent for new 175 * its parent. 183 * as its parent. 187 * parent [all...] |
/libcore/luni/src/main/java/java/util/ |
PriorityQueue.java | 365 E parent = elements[parentIndex]; local 366 if (compare(parent, target) <= 0) { 369 elements[childIndex] = parent;
|
/libcore/luni/src/main/java/java/util/prefs/ |
Preferences.java | 37 * nodes' absolute paths are constructed in the standard way: <parent's 524 * Returns the parent preference node of this node or {@code null} if this 527 * @return the parent preference node of this node. 531 public abstract Preferences parent(); method in class:Preferences [all...] |
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
NamespaceSupport.java | 166 * the declarations of its parent context, but it will also keep 220 // Set the parent, if any. 383 * This includes declarations from parent contexts that have 428 * This includes declarations from parent contexts that have 560 * (Re)set the parent of this Namespace context. 564 * @param context The parent Namespace context object. 566 void setParent (Context parent) 568 this.parent = parent; 570 prefixTable = parent.prefixTable 828 private Context parent = null; field in class:NamespaceSupport.Context [all...] |