/external/chromium_org/ui/wm/core/ |
transient_window_controller.h | 23 aura::Window* child) OVERRIDE; 25 aura::Window* child) OVERRIDE;
|
/external/valgrind/main/none/tests/ |
thread-exits.stdout.exp | 16 PASS: child OK
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
KeyguardLinearLayout.java | 41 public void setTopChild(View child) { 42 int top = indexOfChild(child);
|
/frameworks/base/sax/java/android/sax/ |
Element.java | 25 * An XML element. Provides access to child elements and hooks to listen 54 * Gets the child element with the given name. Uses an empty string as the 62 * Gets the child element with the given name. 78 * Gets the child element with the given name. Uses an empty string as the 80 * time if the specified child is missing. This helps you ensure that your 88 * Gets the child element with the given name. We will throw a 89 * {@link org.xml.sax.SAXException} at parsing time if the specified child 93 Element child = getChild(uri, localName); local 97 requiredChilden.add(child); 99 if (!requiredChilden.contains(child)) { 192 Element child = requiredChildren.get(i); local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
FileUtils.java | 30 for (final File child : files) { 31 deleteRecursively(child);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
TableLayoutRule.java | 65 public void onChildInserted(@NonNull INode child, @NonNull INode parent, 127 for (INode child : children) { 128 // Find direct child of table layout 129 while (child != null && child.getParent() != parentNode) { 130 child = child.getParent(); 132 if (child != null) { 133 // Compute index of direct child of table layout 135 if (rows[i] == child) { [all...] |
/ndk/sources/host-tools/make-3.81/ |
job.c | 199 static void free_child PARAMS ((struct child *)); 200 static void start_job_command PARAMS ((struct child *child)); 202 static int job_next_command PARAMS ((struct child *)); 203 static int start_waiting_job PARAMS ((struct child *)); 208 struct child *children = 0; 220 static struct child *waiting_jobs = 0; 408 /* Handle a dead child. This handler may or may not ever be installed. 444 state (`cs_finished') in the `file' member of the `struct child' for the 445 dead child, and removing the child from the chain. In addition, if BLOC [all...] |
vmsjobs.c | 113 /* This is called as an AST when a child process dies (it won't get 117 vmsHandleChildTerm(struct child *child) 120 register struct child *lastc, *c; 123 vms_jobsefnmask &= ~(1 << (child->efn - 32)); 125 lib$free_ef(&child->efn); 129 child_failed = !(child->cstatus & 1 || ((child->cstatus & 7) == 0)); 131 /* Search for a child matching the deceased one. */ 134 for (c = children; c != 0 && c != child; lastc = c, c = c->next [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
treeoutline.js | 70 * @param {!TreeElement} child 72 TreeOutline.prototype.appendChild = function(child) 76 insertionIndex = insertionIndexForObjectInListSortedByFunction(child, this.children, this.treeOutline.comparator); 79 this.insertChild(child, insertionIndex); 83 * @param {!TreeElement} child 86 TreeOutline.prototype.insertBeforeChild = function(child, beforeChild) 88 if (!child) 89 throw("child can't be undefined or null"); 98 this.insertChild(child, childIndex); 102 * @param {!TreeElement} child [all...] |
/frameworks/support/v4/java/android/support/v4/widget/ |
SlidingPaneLayout.java | 55 * <p>Child views may overlap if their combined width exceeds the available width 58 * If the content of the dragged child view is itself horizontally scrollable, the user may 80 * the use of the layout parameter <code>layout_weight</code> on child views to determine 143 * The child view that can slide, if any. 214 * @param panel The child view that was moved 221 * @param panel The child view that was slid to an open position, revealing other panes 228 * @param panel The child view that was slid to a closed position 374 final View child = getChildAt(i); local 376 if (child == panel) { 382 startBound), child.getLeft()) 400 final View child = getChildAt(i); local 503 final View child = getChildAt(i); local 674 final View child = getChildAt(i); local 1230 final View child = group.getChildAt(i); local 1560 final View child = getChildAt(i); local [all...] |
/frameworks/base/services/core/java/com/android/server/wm/ |
InputMonitor.java | 171 final WindowState child, int flags, int privateFlags, final int type, 174 inputWindowHandle.name = child.toString(); 177 if (modal && child.mAppToken != null) { 180 child.getStackBounds(mTmpRect); 184 child.getTouchableRegion(inputWindowHandle.touchableRegion); 189 inputWindowHandle.dispatchingTimeoutNanos = child.getInputDispatchingTimeoutNanos(); 191 inputWindowHandle.canReceiveKeys = child.canReceiveKeys(); 194 inputWindowHandle.paused = child.mAppToken != null ? child.mAppToken.paused : false; 195 inputWindowHandle.layer = child.mLayer 272 final WindowState child = windows.get(winNdx); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/imports/ |
HTMLImportsController.cpp | 97 OwnPtrWillBeRawPtr<HTMLImportChild> child = adoptPtrWillBeNoop(new HTMLImportChild(url, loader, mode)); local 98 child->setClient(client); 99 parent->appendImport(child.get()); 100 loader->addImport(child.get()); 101 return root()->add(child.release()); 112 HTMLImportChild* child = createChild(request.url(), loader, parent, client); local 113 child->didShareLoader(); 114 return child; 126 HTMLImportChild* child = createChild(request.url(), loader, parent, client); local 130 child->didStartLoading() [all...] |
/frameworks/base/core/java/android/content/ |
UriMatcher.java | 183 UriMatcher child; 186 child = children.get(j); 187 if (token.equals(child.mText)) { 188 node = child; 193 // Child not found, create it 194 child = new UriMatcher(); 196 child.mWhich = NUMBER; 198 child.mWhich = TEXT; 200 child.mWhich = EXACT; 202 child.mText = token [all...] |
/frameworks/base/core/java/android/widget/ |
AbsoluteLayout.java | 68 // Find rightmost and bottom-most child 70 View child = getChildAt(i); local 71 if (child.getVisibility() != GONE) { 76 = (AbsoluteLayout.LayoutParams) child.getLayoutParams(); 78 childRight = lp.x + child.getMeasuredWidth(); 79 childBottom = lp.y + child.getMeasuredHeight(); 115 View child = getChildAt(i); local 116 if (child.getVisibility() != GONE) { 119 (AbsoluteLayout.LayoutParams) child.getLayoutParams(); 123 child.layout(childLeft, childTop [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderGrid.cpp | 225 // The new child requires the auto-placement algorithm to run so we need to recompute the grid fully. 234 void RenderGrid::addChildToIndexesMap(RenderBox* child) 236 ASSERT(!m_gridItemsIndexesMap.contains(child)); 237 RenderBox* sibling = child->nextSiblingBox(); 241 sibling = child->previousSiblingBox(); 252 m_gridItemsIndexesMap.set(child, index); 255 void RenderGrid::removeChild(RenderObject* child) 257 RenderBlock::removeChild(child); 262 ASSERT(child->isBox()); 270 const RenderBox* childBox = toRenderBox(child); [all...] |
RenderTable.cpp | 129 void RenderTable::addChild(RenderObject* child, RenderObject* beforeChild) 131 bool wrapInAnonymousSection = !child->isOutOfFlowPositioned(); 133 if (child->isTableCaption()) 135 else if (child->isRenderTableCol()) { 138 } else if (child->isTableSection()) { 139 switch (child->style()->display()) { 143 m_head = toRenderTableSection(child); 147 m_firstBody = toRenderTableSection(child); 154 m_foot = toRenderTableSection(child); 162 m_firstBody = toRenderTableSection(child); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
CPUProfileBottomUpDataGrid.js | 27 // The root node is a representation of each individual function called, and each child of that node represents 29 // each child still represent the root node. We have to be particularly careful of recursion with this mode 59 * @param {!WebInspector.ProfileDataGridNode} child 61 _keepOnlyChild: function(child) 66 this.appendChild(child); 82 var child = this.childrenByCallUID[aCallUID]; 84 if (child) 85 this._merge(child, true); 97 * @param {!WebInspector.ProfileDataGridNode} child 100 _merge: function(child, shouldAbsorb [all...] |
/external/chromium_org/third_party/skia/src/views/ |
SkStackViewLayout.cpp | 71 /* Measure the main-dimension for all the children. If a child is marked flex in that direction 78 SkView* child; local 82 while ((child = iter.next()) != NULL) 85 if (child->getFlags() & flexMask) 88 limit += (child->*sizeProc)(); 162 SkView* child; local 167 while ((child = iter.next()) != NULL) 171 (child->*mainLocP)(pos); 172 SkScalar crossLoc = crossStartM + gAlignProcs[fAlign]((child->*crossGetSizeP)(), crossLimit); 175 (child->*crossLocP)(crossLoc) 259 SkView* child; local [all...] |
/external/skia/src/views/ |
SkStackViewLayout.cpp | 71 /* Measure the main-dimension for all the children. If a child is marked flex in that direction 78 SkView* child; local 82 while ((child = iter.next()) != NULL) 85 if (child->getFlags() & flexMask) 88 limit += (child->*sizeProc)(); 162 SkView* child; local 167 while ((child = iter.next()) != NULL) 171 (child->*mainLocP)(pos); 172 SkScalar crossLoc = crossStartM + gAlignProcs[fAlign]((child->*crossGetSizeP)(), crossLimit); 175 (child->*crossLocP)(crossLoc) 259 SkView* child; local [all...] |
/external/chromium_org/third_party/libxml/src/ |
check-xsddata-test-suite.py | 64 child = node.children 65 while child != None: 66 if child.type != 'text': 67 instance = instance + child.serialize() 68 child = child.next 117 child = node.children 118 while child != None: 119 if child.type != 'text': 120 instance = instance + child.serialize( [all...] |
/external/chromium_org/net/tools/tld_cleanup/ |
make_dafsa.py | 37 most one child with a label starting by the same character. The output 42 bits in a link (a reference to a child node) indicate if it has a size of one, 103 offset itself and the first child node. Subsequent offsets are the distance 104 between previous child node and next child node. Thus each offset links a node 105 to a child node. The distance is always counted between start addresses, i.e. 106 first byte in decoded offset or first byte in child node. 142 0: 0x81 <end_offset1> child at position 0 + (0x81 & 0x3F) -> jump to 1 145 2: 0x02 <offset1> child at position 2 + (0x02 & 0x3F) -> jump to 4 147 3: 0x81 <end_offset1> child at position 4 + (0x81 & 0x3F) -> jump to [all...] |
/external/chromium_org/net/spdy/ |
spdy_priority_forest.h | 24 // node can have at most one parent and at most one child (forming a list), but 50 // or if the parent doesn't exist, or if the parent already has a child. 70 // Get the child of the given node. If the node doesn't exist, or has no 71 // child, returns NodeId(). 82 // already has a different child than the node, or (3) if the new parent is a 115 Node() : type(ROOT_NODE), flags(0), child() { 124 NodeId child; // node ID of child (or NodeId() for no child) member in struct:net::SpdyPriorityForest::Node 187 if (parent->child != NodeId()) 217 Node* child = &all_nodes_[node.child]; local 470 Node *child = &all_nodes_[next->child]; local [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
ResolverDrawerLayout.java | 345 final View child = getChildAt(i); 346 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); 348 child.offsetTopAndBottom((int) dy); 407 final View child = parent.getChildAt(i); 408 if (isChildUnder(child, x, y)) { 409 return child; 437 private boolean isDescendantClipped(View child) { 438 mTempRect.set(0, 0, child.getWidth(), child.getHeight()); 439 offsetDescendantRectToMyCoords(child, mTempRect) [all...] |
/external/chromium_org/third_party/markdown/ |
treeprocessors.py | 214 for child in [node] + node.getchildren(): 215 if child.tail: 216 if child.tail.strip(): 217 self.__processElementText(node, child,False) 218 if child.text: 219 if child.text.strip(): 220 self.__processElementText(child, child) 272 for child in [node] + node.getchildren(): 274 if child.text: [all...] |
/external/chromium_org/ash/wm/ |
system_modal_container_layout_manager.cc | 69 aura::Window* child) { 70 DCHECK((modal_background_ && child == modal_background_->GetNativeView()) || 71 child->type() == ui::wm::WINDOW_TYPE_NORMAL || 72 child->type() == ui::wm::WINDOW_TYPE_POPUP); 77 child->AddObserver(this); 78 if (child->GetProperty(aura::client::kModalKey) != ui::MODAL_TYPE_NONE) 79 AddModalWindow(child); 83 aura::Window* child) { 84 child->RemoveObserver(this); 85 if (child->GetProperty(aura::client::kModalKey) != ui::MODAL_TYPE_NONE [all...] |