/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
insert_fn_imps.hpp | 106 parent(node_pointer p_nd) function in class:PB_DS_CLASS_C_DEC 129 _GLIBCXX_DEBUG_ASSERT(parent(p_nd) == p_parent); 173 _GLIBCXX_DEBUG_ASSERT(parent(p_parent) == p_nd);
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
insert_fn_imps.hpp | 106 parent(node_pointer p_nd) function in class:PB_DS_CLASS_C_DEC 129 _GLIBCXX_DEBUG_ASSERT(parent(p_nd) == p_parent); 173 _GLIBCXX_DEBUG_ASSERT(parent(p_parent) == p_nd);
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
insert_fn_imps.hpp | 106 parent(node_pointer p_nd) function in class:PB_DS_CLASS_C_DEC 129 _GLIBCXX_DEBUG_ASSERT(parent(p_nd) == p_parent); 173 _GLIBCXX_DEBUG_ASSERT(parent(p_parent) == p_nd);
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
insert_fn_imps.hpp | 106 parent(node_pointer p_nd) function in class:PB_DS_CLASS_C_DEC 129 _GLIBCXX_DEBUG_ASSERT(parent(p_nd) == p_parent); 173 _GLIBCXX_DEBUG_ASSERT(parent(p_parent) == p_nd);
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
insert_fn_imps.hpp | 106 parent(node_pointer p_nd) function in class:PB_DS_CLASS_C_DEC 129 _GLIBCXX_DEBUG_ASSERT(parent(p_nd) == p_parent); 173 _GLIBCXX_DEBUG_ASSERT(parent(p_parent) == p_nd);
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
insert_fn_imps.hpp | 106 parent(node_pointer p_nd) function in class:PB_DS_CLASS_C_DEC 129 _GLIBCXX_DEBUG_ASSERT(parent(p_nd) == p_parent); 173 _GLIBCXX_DEBUG_ASSERT(parent(p_parent) == p_nd);
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
insert_fn_imps.hpp | 106 parent(node_pointer p_nd) function in class:PB_DS_CLASS_C_DEC 129 _GLIBCXX_DEBUG_ASSERT(parent(p_nd) == p_parent); 173 _GLIBCXX_DEBUG_ASSERT(parent(p_parent) == p_nd);
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
AOptimizedMultipleCommand.java | 25 commands[i].parent(this); // set parent. method 48 newChild.parent(this); 49 oldChild.parent(null);
|
ACallCommand.java | 57 this._position_.parent(null); 62 if(node.parent() != null) 64 node.parent().removeChild(node); 67 node.parent(this); 84 if(e.parent() != null) 86 e.parent().removeChild(e); 89 e.parent(this); 104 if(e.parent() != null) 106 e.parent().removeChild(e); 109 e.parent(this) [all...] |
AFunctionExpression.java | 52 this._name_.parent(null); 57 if(node.parent() != null) 59 node.parent().removeChild(node); 62 node.parent(this); 79 if(e.parent() != null) 81 e.parent().removeChild(e); 84 e.parent(this); 131 newChild.parent(this); 132 oldChild.parent(null); 137 oldChild.parent(null) [all...] |
AMultipleCommand.java | 49 if(e.parent() != null) 51 e.parent().removeChild(e); 54 e.parent(this); 88 newChild.parent(this); 89 oldChild.parent(null); 94 oldChild.parent(null);
|
ASequenceExpression.java | 49 if(e.parent() != null) 51 e.parent().removeChild(e); 54 e.parent(this); 88 newChild.parent(this); 89 oldChild.parent(null); 94 oldChild.parent(null);
|
Node.java | 10 private Node parent; field in class:Node 15 public Node parent() method in class:Node 17 return this.parent; 20 void parent(@SuppressWarnings("hiding") Node parent) method in class:Node 22 this.parent = parent; 30 this.parent.replaceChild(this, node);
|
/packages/experimental/Bummer/src/com/android/dreams/bummer/ |
BummerView.java | 43 final View parent = (View) BummerView.this.getParent(); 44 if (parent == null) 47 final float framew = parent.getMeasuredWidth(); 48 final float frameh = parent.getMeasuredHeight(); 92 final View parent = (View) this.getParent(); local 93 parent.addOnLayoutChangeListener(new OnLayoutChangeListener() { 96 if (v == parent && right != oldRight) {
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
BummerView.java | 43 final View parent = (View) BummerView.this.getParent(); 44 if (parent == null) 47 final float framew = parent.getMeasuredWidth(); 48 final float frameh = parent.getMeasuredHeight(); 92 final View parent = (View) this.getParent(); local 93 parent.addOnLayoutChangeListener(new OnLayoutChangeListener() { 96 if (v == parent && right != oldRight) {
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
XMLFilterImpl.java | 64 * Construct an empty XML filter, with no parent. 66 * <p>This filter will have no parent: you must assign a parent 81 * Construct an XML filter with the specified parent. 83 * @param parent the XML reader from which this filter receives its events. 88 public XMLFilterImpl (XMLReader parent) 90 setParent(parent); 102 * Set the parent reader. 106 * configuration requests. The parent may itself be another filter.</p> 108 * <p>If there is no parent reader set, any attempt to pars 703 private XMLReader parent = null; field in class:XMLFilterImpl [all...] |
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
XMLFilterImplTest.java | 53 private XMLFilterImpl parent = new MockFilter(logger); field in class:XMLFilterImplTest 55 private XMLFilterImpl child = new XMLFilterImpl(parent); 68 parent.setContentHandler(handler); 69 parent.setDTDHandler(handler); 70 parent.setErrorHandler(handler); 78 assertEquals(null, parent.getParent()); 83 assertEquals(null, parent.getParent()); 94 child.setParent(parent); 95 assertEquals(parent, child.getParent()); 112 // No parent cas [all...] |
/frameworks/base/core/java/android/view/ |
ViewStub.java | 34 * is inflated. The ViewStub then replaces itself in its parent with the inflated View or Views. 38 * The inflated View is added to the ViewStub's parent with the ViewStub's layout 51 * the layout resource "mySubTree," the ViewStub is removed from its parent. The 154 * in its parent by another view. 170 * used to replace this StubbedView in its parent. 214 * {@link #inflate()} is invoked and this StubbedView is replaced in its parent 242 * and replaces this StubbedView in its parent by the inflated layout resource. 252 final ViewGroup parent = (ViewGroup) viewParent; local 259 final View view = factory.inflate(mLayoutResource, parent, 266 final int index = parent.indexOfChild(this) [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
CompositeGrammarTree.java | 38 /** Who is the parent node of this node; if null, implies node is root */ 39 public CompositeGrammarTree parent; field in class:CompositeGrammarTree 54 t.parent = this; 79 if ( parent!=null ) { 80 return parent.getOption(key); 148 if ( p.grammar.type == Grammar.LEXER && p.parent!=null && 149 p.parent.grammar.type == Grammar.COMBINED ) 151 //System.out.println("wacking "+p.grammar.name+" from "+p.parent.grammar.name); 152 p.parent.children.remove(this);
|
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
SingleFieldBuilder.java | 65 // Parent to send changes to. 66 private GeneratedMessage.BuilderParent parent; field in class:SingleFieldBuilder 85 GeneratedMessage.BuilderParent parent, 91 this.parent = parent; 96 // Null out parent so we stop sending it invalidations. 97 parent = null; 221 * and any parent should be notified of its invalidation. 229 if (isClean && parent != null) { 230 parent.markDirty() [all...] |
/external/doclava/src/com/google/doclava/ |
JarUtils.java | 63 File parent = dest.getParentFile(); local 64 if (parent != null) { 65 parent.mkdirs();
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
TextImpl.java | 89 Node parent = getParentNode(); local 104 parent.removeChild(toRemove); 158 parent.removeChild(this); 169 parent.removeChild(this);
|
/bionic/libc/bionic/ |
pthread-atfork.c | 41 void (*parent)(void); member in struct:atfork_t 50 /* We will lock this here, and unlock it in the parent and child functions. 52 * to the prepare and parent/child handlers. 62 * handlers should be called in the reverse order of the parent/child 97 /* Call pthread_atfork() parent handlers */ 101 if (cursor->parent != NULL) { 102 cursor->parent(); 109 int pthread_atfork(void (*prepare)(void), void (*parent)(void), void(*child)(void)) 118 entry->parent = parent; [all...] |
/cts/tests/src/android/webkit/cts/ |
WebViewStubActivity.java | 43 ViewParent parent = mWebView.getParent(); local 44 if (parent instanceof ViewGroup) { 45 ((ViewGroup) parent).removeView(mWebView);
|
/dalvik/vm/alloc/ |
Verify.cpp | 94 Object **parent = (Object **)arg; local 95 if (*parent != NULL) { 96 ALOGE("Verify of object %p failed", *parent); 97 dvmDumpObject(*parent); 98 *parent = NULL;
|