HomeSort by relevance Sort by last modified time
    Searched refs:parent (Results 426 - 450 of 6350) sorted by null

<<11121314151617181920>>

  /external/eigen/Eigen/src/SparseCore/
SparseColEtree.h 42 Index p = pp(i); // Parent
43 Index gp = pp(p); // Grand parent
46 pp(i) = gp; // Parent pointer on find path is changed to former grand parent
56 * \param parent The elimination tree
61 int coletree(const MatrixType& mat, IndexVector& parent, IndexVector& firstRowElt, typename MatrixType::Index *perm=0)
71 parent.resize(mat.cols());
99 parent(col) = nc;
116 parent(rroot) = col;
131 void nr_etdfs (Index n, IndexVector& parent, IndexVector& first_kid, IndexVector& next_kid, IndexVector& post, Index postnum
    [all...]
  /frameworks/support/core-ui/java/android/support/v4/view/
AsyncLayoutInflater.java 49 * <p>For a layout to be inflated asynchronously it needs to have a parent
57 * <p>NOTE that the inflated View hierarchy is NOT added to the parent. It is
81 public void inflate(@LayoutRes int resid, @Nullable ViewGroup parent,
89 request.parent = parent;
100 request.resid, request.parent, false);
103 request.view, request.resid, request.parent);
110 void onInflateFinished(View view, int resid, ViewGroup parent);
115 ViewGroup parent; field in class:AsyncLayoutInflater.InflateRequest
183 request.resid, request.parent, false)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NamespaceSupport2.java 109 * the declarations of its parent context, but it will also keep
120 // JJK: Context has a parent pointer.
469 private Context2 parent = null; field in class:Context2
475 Context2 (Context2 parent)
477 if(parent==null)
485 setParent(parent);
499 * @returns The parent Namespace context object, or null if this
504 return parent;
508 * (Re)set the parent of this Namespace context.
512 * @param context The parent Namespace context object
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
b2DynamicTree.cpp 70 // Build a linked list for the free list. The parent
85 m_nodes[nodeId].parent = b2_nullNode;
186 m_nodes[m_root].parent = b2_nullNode;
204 // Cost of creating a new parent for this node and the new leaf
263 // Create a new parent.
264 int32 oldParent = m_nodes[sibling].parent;
266 m_nodes[newParent].parent = oldParent;
285 m_nodes[sibling].parent = newParent;
286 m_nodes[leaf].parent = newParent;
293 m_nodes[sibling].parent = newParent
327 int32 parent = m_nodes[leaf].parent; local
752 b2TreeNode* parent = m_nodes + parentIndex; local
    [all...]
  /frameworks/support/design/src/android/support/design/widget/
HeaderBehavior.java 55 public boolean onInterceptTouchEvent(CoordinatorLayout parent, V child, MotionEvent ev) {
57 mTouchSlop = ViewConfiguration.get(parent.getContext()).getScaledTouchSlop();
72 if (canDragView(child) && parent.isPointInChildBounds(child, x, y)) {
120 public boolean onTouchEvent(CoordinatorLayout parent, V child, MotionEvent ev) {
122 mTouchSlop = ViewConfiguration.get(parent.getContext()).getScaledTouchSlop();
130 if (parent.isPointInChildBounds(child, x, y) && canDragView(child)) {
161 scroll(parent, child, dy, getMaxDragOffset(child), 0);
172 fling(parent, child, -getScrollRangeForDragFling(child), 0, yvel);
193 int setHeaderTopBottomOffset(CoordinatorLayout parent, V header, int newOffset) {
194 return setHeaderTopBottomOffset(parent, header, newOffset
    [all...]
  /hardware/intel/common/libwsbm/src/
wsbm_mm.c 109 wsbmMMSplitAtStart(struct _WsbmMMNode *parent, unsigned long size)
121 child->start = parent->start;
122 child->mm = parent->mm;
124 WSBMLISTADDTAIL(&child->ml_entry, &parent->ml_entry);
127 parent->size -= size;
128 parent->start += size;
133 wsbmMMGetBlock(struct _WsbmMMNode *parent,
142 tmp = parent->start % alignment;
145 align_splitoff = wsbmMMSplitAtStart(parent, alignment - tmp);
150 if (parent->size == size)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
configHelpSourceEdit.py 11 def __init__(self, parent, title, menuItem='', filePath=''):
19 Toplevel.__init__(self, parent)
23 self.transient(parent)
26 self.parent = parent
34 #centre dialog over parent:
36 ((parent.winfo_rootx() + ((parent.winfo_width()/2)
38 parent.winfo_rooty() + ((parent.winfo_height()/2
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
configHelpSourceEdit.py 11 def __init__(self, parent, title, menuItem='', filePath=''):
19 Toplevel.__init__(self, parent)
23 self.transient(parent)
26 self.parent = parent
34 #centre dialog over parent:
36 ((parent.winfo_rootx() + ((parent.winfo_width()/2)
38 parent.winfo_rooty() + ((parent.winfo_height()/2
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
configHelpSourceEdit.py 11 def __init__(self, parent, title, menuItem='', filePath=''):
19 Toplevel.__init__(self, parent)
23 self.transient(parent)
26 self.parent = parent
34 #centre dialog over parent:
36 ((parent.winfo_rootx() + ((parent.winfo_width()/2)
38 parent.winfo_rooty() + ((parent.winfo_height()/2
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
configHelpSourceEdit.py 11 def __init__(self, parent, title, menuItem='', filePath=''):
19 Toplevel.__init__(self, parent)
23 self.transient(parent)
26 self.parent = parent
34 #centre dialog over parent:
36 ((parent.winfo_rootx() + ((parent.winfo_width()/2)
38 parent.winfo_rooty() + ((parent.winfo_height()/2
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionOverlay.java 100 NodeProxy parent = mCanvas.getNodeFactory().create(root); local
102 parent, Collections.<INode>emptyList(), root.getViewObject());
115 NodeProxy parent = mCanvas.getNodeFactory().create(root); local
117 parent, Collections.<INode>emptyList(), root.getViewObject());
124 INode parent = node.getParent(); local
125 if (parent instanceof NodeProxy) {
126 NodeProxy parentNode = (NodeProxy) parent;
161 // Group nodes into parent/child groups
164 INode parent = node.getParent(); local
165 if (/*parent == null || */parent instanceof NodeProxy)
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
SubcomponentWriter.java 52 private AbstractComponentWriter parent; field in class:SubcomponentWriter
56 AbstractComponentWriter parent,
60 parent.types,
61 parent.elements,
62 parent.keyFactory,
63 parent.nullableValidationType,
64 parent.name.nestedClassNamed(subcomponentSimpleName(subgraph)),
66 this.parent = parent;
78 ? parent.getInitializationState(bindingKey
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
ClassFileNameHandler.java 131 private File addUniqueChild(@Nonnull DirectoryEntry parent, @Nonnull String[] packageElements,
134 FileEntry fileEntry = new FileEntry(parent, packageElements[packageElementIndex] + fileExtension);
135 parent.addChild(fileEntry);
139 // the physical name should be set when adding it as a child to the parent
142 return new File(parent.file, physicalName);
144 DirectoryEntry directoryEntry = new DirectoryEntry(parent, packageElements[packageElementIndex]);
145 directoryEntry = (DirectoryEntry)parent.addChild(directoryEntry);
243 @Nullable public final DirectoryEntry parent; field in class:ClassFileNameHandler.FileSystemEntry
247 private FileSystemEntry(@Nullable DirectoryEntry parent, @Nonnull String logicalName) {
248 this.parent = parent
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/ui/
MtpImageView.java 248 MtpImageView parent = ((WeakReference<MtpImageView>) msg.obj).get(); local
249 if (parent == null) {
254 synchronized (parent.mFetchLock) {
255 parent.mFetchPending = false;
256 device = parent.mFetchDevice;
257 objectInfo = parent.mFetchObjectInfo;
262 Object result = parent.fetchMtpImageDataFromDevice(device, objectInfo);
266 synchronized (parent.mFetchLock) {
267 if (parent.mFetchObjectInfo != objectInfo) {
270 parent.mFetchResult = result
283 MtpImageView parent = ((WeakReference<MtpImageView>) msg.obj).get(); local
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaBasicBlock.java 75 private SsaMethod parent; field in class:SsaBasicBlock
77 /** our index into parent.getBlock() */
118 * @param parent method of this block
121 final SsaMethod parent) {
122 this.parent = parent;
127 this.predecessors = new BitSet(parent.getBlocks().size());
128 this.successors = new BitSet(parent.getBlocks().size());
139 * @param parent method of this block predecessor set will be
144 int basicBlockIndex, final SsaMethod parent) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaBasicBlock.java 76 private SsaMethod parent; field in class:SsaBasicBlock
78 /** our index into parent.getBlock() */
119 * @param parent method of this block
122 final SsaMethod parent) {
123 this.parent = parent;
128 this.predecessors = new BitSet(parent.getBlocks().size());
129 this.successors = new BitSet(parent.getBlocks().size());
140 * @param parent method of this block predecessor set will be
145 int basicBlockIndex, final SsaMethod parent) {
    [all...]
  /bionic/libc/bionic/
pthread_atfork.cpp 41 void (*parent)(void); member in struct:atfork_t
117 // We lock the atfork list here, unlock it in the parent, and reset it in the child.
119 // to the prepare and parent/child handlers.
123 // handlers should be called in the reverse order of the parent/child
144 if (it->parent != nullptr) {
145 it->parent();
153 extern "C" int __register_atfork(void (*prepare)(void), void (*parent)(void),
161 entry->parent = parent;
  /external/autotest/server/hosts/
teststation_host.py 68 # Do parent class initializations.
97 def get_tmp_dir(self, parent='/tmp'):
100 If parent folder is supplied and the teststation is a moblab. Then
101 the parent will have the moblab tmp directory prepended to it.
103 @param parent: The parent dir to create the temporary dir.
108 parent = (moblab_host.MOBLAB_TMP_DIR if parent == '/tmp'
110 parent.lstrip('/')))
111 return super(TestStationHost, self).get_tmp_dir(parent=parent
    [all...]
  /external/llvm/utils/llvm-build/llvmbuild/
componentinfo.py 28 kwargs['parent'] = items.get_optional_string('parent')
33 def __init__(self, subpath, name, dependencies, parent):
40 # The name of the parent component to logically group this component
42 self.parent = parent
44 # The parent instance, once loaded.
55 def set_parent_instance(self, parent):
56 assert parent.name == self.parent, "Unexpected parent!
    [all...]
  /external/markdown/markdown/extensions/
tables.py 24 def test(self, parent, block):
30 def run(self, parent, blocks):
51 table = etree.SubElement(parent, 'table')
58 def _build_row(self, row, parent, align, border):
60 tr = etree.SubElement(parent, 'tr')
62 if parent.tag == 'thead':
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowViewStub.java 71 ViewGroup parent = (ViewGroup) viewParent; local
73 View view = factory.inflate(mLayoutResource, parent, false);
79 int index = parent.indexOfChild(viewStub);
80 parent.removeViewAt(index);
81 // parent.removeViewInLayout(viewStub);
85 parent.addView(view, index, layoutParams);
87 parent.addView(view, index);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliCompositeElement.java 90 PsiElement parent = getParent(); local
91 while (parent != null) {
92 if (aClass.isInstance(parent)) {
93 return (T)parent;
95 parent = parent.getParent();
  /external/v8/src/compiler/
loop-analysis.h 38 Loop* parent() const { return parent_; } function in class:v8::internal::compiler::LoopTree::Loop
128 void SetParent(Loop* parent, Loop* child) {
129 if (parent != nullptr) {
130 parent->children_.push_back(child);
131 child->parent_ = parent;
132 child->depth_ = parent->depth_ + 1;
  /external/webrtc/webrtc/libjingle/xmpp/
xmpptask.h 32 // useful there. It has a way of finding its XmppClient parent so you
73 // XmppTaskParentInterface is the interface require for any parent of
82 explicit XmppTaskParentInterface(rtc::TaskParent* parent)
83 : Task(parent) {
94 explicit XmppTaskBase(XmppTaskParentInterface* parent)
95 : XmppTaskParentInterface(parent),
96 parent_(parent) {
115 XmppTask(XmppTaskParentInterface* parent,
  /frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
OMAScalar.java 12 public OMAScalar(OMAConstructed parent, String name, String context, String value,
14 this(parent, name, context, value, buildAttributes(avps));
17 public OMAScalar(OMAConstructed parent, String name, String context, String value,
19 super(parent, name, context, avps);
24 public OMAScalar reparent(OMAConstructed parent) {
25 return new OMAScalar(parent, getName(), getContext(), mValue, getAttributes());

Completed in 603 milliseconds

<<11121314151617181920>>