/ndk/sources/host-tools/make-3.81/ |
commands.c | 368 fork off a child process to run the first command line in the sequence. */ 416 /* That was the child who got the signal, not us. */ 462 register struct child *c; 480 register struct child *c; 576 /* Delete all non-precious targets of CHILD unless they were already deleted. 577 Set the flag in CHILD to say they've been deleted. */ 580 delete_child_targets (struct child *child) 584 if (child->deleted) 588 delete_target (child->file, (char *) 0) [all...] |
/prebuilts/tools/common/m2/repository/org/pegdown/pegdown/1.1.0/ |
pegdown-1.1.0.jar | |
/cts/tests/tests/widget/src/android/widget/cts/ |
LayoutDirectionTest.java | 75 LinearLayout child = new LinearLayout(getActivity()); local 76 child.setLayoutDirection(LAYOUT_DIRECTION_INHERIT); 77 parent.addView(child); 83 assertEquals(LAYOUT_DIRECTION_LTR, child.getLayoutDirection()); 89 assertEquals(LAYOUT_DIRECTION_RTL, child.getLayoutDirection());
|
/external/elfutils/libelf/ |
elf_end.c | 83 the child but here we already have the child lock. We 84 solve this problem by giving free the child lock. The 95 struct Elf *child = parent->state.ar.children; local 97 while (child->next != elf) 98 child = child->next; 100 child->next = elf->next;
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/loader/ |
G3dModelLoader.java | 86 for (JsonValue mesh = meshes.child; mesh != null; mesh = mesh.next) {
98 for (JsonValue meshPart = meshParts.child; meshPart != null; meshPart = meshPart.next) {
147 for (JsonValue value = attributes.child; value != null; value = value.next) {
180 for (JsonValue material = materials.child; material != null; material = material.next) {
207 for (JsonValue texture = textures.child; texture != null; texture = texture.next) {
280 for (JsonValue node = nodes.child; node != null; node = node.next) {
318 for (JsonValue material = materials.child; material != null; material = material.next, i++) {
333 for (JsonValue bone = bones.child; bone != null; bone = bone.next, j++) {
362 for (JsonValue child = children.child; child != null; child = child.next, i++) { [all...] |
/external/owasp/sanitizer/tools/ |
cut_release.py | 78 return "".join([inner_text(child) for child in node.childNodes]) 106 for child in os.listdir(src_path): 108 if "." == child[0:1]: continue 110 os.path.join(src_path, child), dest_path)
|
/external/skia/src/animator/ |
SkDisplayEvent.cpp | 55 bool SkDisplayEvent::addChild(SkAnimateMaker& , SkDisplayable* child) { 56 *fChildren.append() = child; 70 SkDisplayable* child = fChildren[index]; local 71 if (child->contains(match)) 72 return child;
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/ |
Profiler.java | 97 * Starts a child stop watch and stops any previously started time 131 // for (Object child : childTimeInstrumentList) { 132 // if (child instanceof Profiler) 133 // ((Profiler) child).stop(); 206 * Return a copy of the child instrument list for this Profiler instance. 208 * @return a copy of this instance's child time instrument list 235 for (TimeInstrument child : childTimeInstrumentList) { 236 if (child instanceof StopWatch) { 237 buildStopWatchString(buf, du, ELAPSED_TIME, indentation, (StopWatch) child); 238 } else if (child instanceof Profiler) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
NotificationIconAreaController.java | 73 View child = mNotificationIcons.getChildAt(i); local 74 child.setLayoutParams(params); 164 View child = mNotificationIcons.getChildAt(i); local 165 if (!toShow.contains(child)) { 166 toRemove.add(child);
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/ |
SdkUtil.java | 119 Node child = childNodes.item(i); local 120 if (child.getNodeType() != Node.ELEMENT_NODE || !"method" 121 .equals(child.getNodeName())) { 124 int methodSince = getSince(child); 126 String methodDesc = child.getAttributes().getNamedItem("name")
|
/frameworks/support/design/src/android/support/design/widget/ |
CollapsingToolbarLayout.java | 59 * It is designed to be used as a direct child of a {@link AppBarLayout}. 79 * Child views can opt to be scrolled within this layout in a parallax fashion. 84 * Child views can opt to be pinned in space globally. This is useful when implementing a 277 // Consume the insets. This is done so that child views with fitSystemWindows=true do not 312 protected boolean drawChild(Canvas canvas, View child, long drawingTime) { 316 boolean invalidate = super.drawChild(canvas, child, drawingTime); 318 if (mContentScrim != null && mScrimAlpha > 0 && isToolbarChildDrawnNext(child)) { 357 final View child = getChildAt(i); local 358 if (child instanceof Toolbar) { 359 toolbar = (Toolbar) child; 420 final View child = getChildAt(i); local [all...] |
/libcore/ojluni/src/main/java/java/util/stream/ |
FindOps.java | 304 for (FindTask<P_IN, P_OUT, O> child = leftChild, p = null; child != p; 305 p = child, child = rightChild) { 306 O result = child.getLocalResult();
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapAccountLoader.java | 210 BluetoothMapAccountItem child = BluetoothMapAccountItem.create( local 220 child.mIsChecked = (c.getInt(exposeIndex) != 0); 221 child.mIsChecked = true; // TODO: Revert when this works 224 if(child.mIsChecked) 228 children.add(child);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
CategoryAdapter.java | 133 View child = null; local 136 child = lv.getChildAt(position - lv.getFirstVisiblePosition()); 139 child = ct.getChildAt(position); 141 if (child != null) { 142 child.invalidate();
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
StorageUtils.java | 216 for (File child : children) { 217 if (child.isDirectory()) { 218 dirs.add(child); 219 } else if (child.isFile()) { 221 final ConcreteFile file = new ConcreteFile(child);
|
/external/ImageMagick/MagickCore/ |
segment.c | 169 *child; 166 *child; member in struct:_IntervalTree 1300 *child; local [all...] |
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/ |
MOManager.java | 286 * Add an SP sub-tree. mo must be PPS with an immediate instance child (e.g. Cred01) and an 301 for (OMANode child : mo.getChildren()) { 302 ppsRoot.addChild(child); 303 if (!child.isLeaf()) { 304 moTree.getRoot().addChild(child); 306 else if (child.getName().equals(TAG_UpdateIdentifier)) { 309 moTree.getRoot().replaceNode(currentUD, child); 312 moTree.getRoot().addChild(child); 342 for (OMANode child : root.getChildren()) { 343 if (!child.isLeaf()) 861 OMANode child = node.getChild(key); local 869 OMANode child = node.getChild(key); local 879 OMANode child = node.getChild(key); local 904 OMANode child = node.getChild(key); local [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/ |
PasspointManagementObjectManager.java | 282 * Add an SP sub-tree. mo must be PPS with an immediate instance child (e.g. Cred01) and an 318 for (OMANode child : root.getChildren()) { 319 if (!child.isLeaf()) { 320 return (OMAConstructed) child; 348 // direct child (e.g. Credential) 626 for (OMANode child : ppsRoot.getChildren()) { 627 if (child.getName().equals(TAG_UpdateIdentifier)) { 628 updateIdentifier = getInteger(child); 629 } else if (!child.isLeaf()) { 630 instance = child; 820 OMANode child = node.getChild(key); local 828 OMANode child = node.getChild(key); local 838 OMANode child = node.getChild(key); local 863 OMANode child = node.getChild(key); local [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
Workspace.java | 439 public void onChildViewAdded(View parent, View child) { 440 if (!(child instanceof CellLayout)) { 443 CellLayout cl = ((CellLayout) child); 451 public void onChildViewRemoved(View parent, View child) { 454 protected boolean shouldDrawChild(View child) { 455 final CellLayout cl = (CellLayout) child; 456 return super.shouldDrawChild(child) && 468 View child = dragLayer.getChildAt(i); local 469 if (child instanceof Folder) { 470 Folder folder = (Folder) child; [all...] |
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
tree.py | 108 even use Token objects as trees if you add a child list to your tokens. 123 """Tree tracks parent and child index now > 3.0""" 128 """Tree tracks parent and child index now > 3.0""" 154 """This node is what child index? 0..n-1""" 159 """This node is what child index? 0..n-1""" 165 """Set the parent and child index values for all children""" 172 Add t as a child to this node. If t is null, do nothing. If t 180 """Set ith child (0..n-1) to t; t must be non-null and non-nil node""" 193 For huge child lists, inserting children can force walking rest of 343 """Is tree considered a nil node used to make lists of child nodes?"" [all...] |
/external/selinux/libsepol/src/ |
hierarchy.c | 297 uint32_t child, uint32_t parent, uint32_t src, 311 if (ebitmap_get_bit(&p->attr_type_map[src - 1], child - 1)) { 328 rc = bounds_add_bad(handle, child, i+1, class, d, bad); 332 if (ebitmap_get_bit(&p->attr_type_map[tgt - 1], child - 1)) { 338 if (avtab_key.source_type == child) { 353 rc = bounds_add_bad(handle, i+1, child, class, d, bad); 364 cond_av_list_t *rules, uint32_t child, 378 child, parent, key->source_type, 392 uint32_t child; member in struct:bounds_check_args 406 return bounds_check_rule(a->handle, a->p, NULL, a->cur_avtab, a->child, [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
BaseLayoutRule.java | 136 for (INode child : targets) { 137 child.setAttribute(uri, ATTR_LAYOUT_MARGIN, margins[0]); 138 child.setAttribute(uri, ATTR_LAYOUT_MARGIN_LEFT, margins[1]); 139 child.setAttribute(uri, ATTR_LAYOUT_MARGIN_RIGHT, margins[2]); 140 child.setAttribute(uri, ATTR_LAYOUT_MARGIN_TOP, margins[3]); 141 child.setAttribute(uri, ATTR_LAYOUT_MARGIN_BOTTOM, margins[4]); 230 for (INode child : targets) { 231 child.setAttribute(ANDROID_URI, attribute, value); 270 * The default behavior for pasting in a layout with a specific child target 271 * is to simulate a drop right above the top left of the given child target [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ChangeLayoutRefactoring.java | 187 // Don't convert a root GestureOverlayView; convert its child. This looks for 188 // gesture overlays, and if found, it generates a new child list where the gesture 339 for (Element child : DomUtilities.getChildren(layout)) { 340 if (skip != null && skip.contains(child)) { 344 if (!child.hasAttributeNS(ANDROID_URI, ATTR_LAYOUT_WIDTH)) { 345 setAttribute(rootEdit, child, ANDROID_URI, 348 if (!child.hasAttributeNS(ANDROID_URI, ATTR_LAYOUT_HEIGHT)) { 349 setAttribute(rootEdit, child, ANDROID_URI, 368 Element child = (Element) node; local 374 String oldName = child.getNodeName() 416 Element child = (Element) node; local 435 Element child = (Element) node; local 533 Element child = (Element) node; local [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
ContentPaneFocusTest.java | 66 View child = parent.getChildAt(i); local 67 if ("android:action_bar".equals(child.getTransitionName())) { 68 actionBarView = child;
|
/cts/tools/utils/ |
DescriptionGenerator.java | 329 Node child = suiteChildren.iterator().next(); local 333 + getAttribute(child, ATTRIBUTE_NAME); 334 setAttribute(child, ATTRIBUTE_NAME, newName); 339 parentNode.appendChild(child); 341 mergeEmptySuites(child); 346 * Get the unmuatable child nodes for specified node. 349 * @return A collection of copied child node. 376 for (Node child : children) { 377 String childName = child.getAttributes().getNamedItem(ATTRIBUTE_NAME) 383 appendTestCases(child, testSuite.mCases) 408 Node child = children.item(i); local [all...] |