/external/antlr/src/org/antlr/runtime/tree/ |
TreeVisitor.java | 45 * If a child visit yields a new child, it can update its 46 * parent's child list or just return the new child. The 47 * child update code works even if the child visit alters its parent 59 Object child = adaptor.getChild(t, i); local 60 Object visitResult = visit(child, action); 62 if ( visitResult != childAfterVisit ) { // result & child differ?
|
/external/bluetooth/glib/gio/inotify/ |
inotify-helper.c | 149 GFile* child; local 158 child = g_file_new_for_path (fullpath); 162 child, NULL, eflags); 164 g_object_unref (child); 175 GFile* child; local 197 child = g_file_new_for_path (fullpath); 201 child, NULL, eflags); 203 g_object_unref (child);
|
/external/chromium/chrome/browser/extensions/ |
extension_bookmark_helpers.cc | 52 const BookmarkNode* child = node->GetChild(i); local 53 if (!only_folders || child->is_folder()) { 54 DictionaryValue* dict = GetNodeDictionary(child, true, only_folders);
|
/external/chromium/chrome/browser/ui/views/infobars/ |
infobar_container_view.cc | 34 InfoBarView* child = static_cast<InfoBarView*>(GetChildViewAt(i)); local 35 top -= child->arrow_height(); 36 int child_height = child->total_height(); 37 child->SetBounds(0, top, width(), child_height);
|
/external/elfutils/libelf/ |
common.h | 88 Elf *child = elf->state.ar.children; local 90 while (child != NULL) 92 if (child->ref_count != 0) 93 libelf_acquire_all (child); 94 child = child->next; 105 Elf *child = elf->state.ar.children; local 107 while (child != NULL) 109 if (child->ref_count != 0) 110 libelf_release_all (child); [all...] |
/external/llvm/include/llvm/Object/ |
Archive.h | 26 class Child { 31 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {} 33 bool operator ==(const Child &other) const { 37 Child getNext() const; 51 Child child; member in class:llvm::object::Archive::child_iterator 53 child_iterator(const Child &c) : child(c) {} 54 const Child* operator->() const { 55 return &child; [all...] |
/external/skia/src/core/ |
SkDrawing.cpp | 41 SkDrawing* child; local 42 while ((child = iter.next()) != NULL) { 43 child->draw(canvas); 74 SkDrawing* SkDrawing::attachChildToBack(SkDrawing* child) { 75 SkASSERT(child != this); 77 if (child == NULL || fFirstChild == child) { 78 return child; 81 child->ref(); 82 child->detachFromParent() [all...] |
/external/valgrind/main/helgrind/tests/ |
tc07_hbl1.c | 6 /* Simple test program, no race. Parent and child both modify x and 83 pthread_t child; local 85 if (pthread_create(&child, NULL, child_fn, NULL)) { 92 if (pthread_join(child, NULL)) {
|
tc11_XCHG.c | 8 /* Simple test program, no race. Parent and child both modify x and 102 pthread_t child; local 104 if (pthread_create(&child, NULL, child_fn, NULL)) { 112 if (pthread_join(child, NULL)) {
|
tc21_pthonce.c | 69 void* child ( void* argV ) { function 73 printf("child: Hi, I'm thread %d\n", *(int*)argV); 86 r= pthread_create(&threads[i], NULL, child, &id_arg[i]);
|
/external/valgrind/main/none/tests/ |
pth_atfork1.c | 65 child (void) function 80 pthread_atfork (prepare, parent, child); 104 /* We check whether the `prepare' and `child' function ran. */ 111 error (EXIT_FAILURE, errno, "wrong child"); 114 error (EXIT_FAILURE, 0, "Child terminated incorrectly");
|
/external/webkit/Source/JavaScriptCore/wtf/ |
NonCopyingSort.h | 40 ptrdiff_t child = root * 2 + 1; local 41 if (child < end && compareLess(array[child], array[child + 1])) 42 child++; 44 if (compareLess(array[root], array[child])) { 45 swap(array[root], array[child]); 46 root = child;
|
/external/webkit/Source/WebCore/accessibility/ |
AccessibilityMenuListPopup.cpp | 111 AccessibilityObject* child = m_children[i - 1].get(); local 112 if (child->actionElement() && !child->actionElement()->attached()) { 113 m_menuList->renderer()->document()->axObjectCache()->remove(child->axObjectID());
|
/external/webkit/Source/WebCore/bindings/v8/ |
ScriptProfile.cpp | 79 const v8::CpuProfileNode* child = node->GetChild(i); local 80 children->pushObject(buildInspectorObjectFor(child));
|
/libcore/luni/src/main/java/java/util/prefs/ |
NodeChangeEvent.java | 27 * This is the event class to indicate that one child of the preference node has 44 private final Preferences child; field in class:NodeChangeEvent 53 * the child {@code Preferences} instance that was added or deleted. 58 child = c; 71 * Gets the child {@code Preferences} node that was added or removed. 73 * @return the added or removed child {@code Preferences} node. 76 return child;
|
/packages/apps/Browser/src/com/android/browser/view/ |
EventRedirectingFrameLayout.java | 52 View child = getChildAt(mTargetChild); local 53 if (child != null) 54 return child.dispatchTouchEvent(ev); 60 View child = getChildAt(mTargetChild); local 61 if (child != null) 62 return child.dispatchKeyEvent(event); 68 View child = getChildAt(mTargetChild); local 69 if (child != null) 70 return child.dispatchKeyEventPreIme(event);
|
/packages/apps/Camera/src/com/android/camera/ui/ |
StackLayout.java | 24 // A layout designed to make the children same size as the first child. 36 // Measure only the first child. 37 final View child = getChildAt(0); local 38 measureChild(child, widthMeasureSpec, heightMeasureSpec); 41 int width = child.getMeasuredWidth(); 42 int height = child.getMeasuredHeight(); 53 final View child = getChildAt(i); local 54 if (child.getVisibility() != View.GONE) { 55 child.layout(0, 0, r - l, b - t);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
CellLayoutChildren.java | 59 View child = getChildAt(i); local 60 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); 64 return child; 74 View child = getChildAt(i); local 75 measureChild(child); 86 public void measureChild(View child) { 89 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); 95 child.measure(childWidthMeasureSpec, childheightMeasureSpec); 102 final View child = getChildAt(i); local 103 if (child.getVisibility() != GONE) 146 final View child = getChildAt(i); local [all...] |
PagedViewCellLayoutChildren.java | 50 final View child = getChildAt(i); local 51 child.cancelLongPress(); 68 public void requestChildFocus(View child, View focused) { 69 super.requestChildFocus(child, focused); 70 if (child != null) { 72 child.getDrawingRect(r); 91 View child = getChildAt(i); local 93 (PagedViewCellLayout.LayoutParams) child.getLayoutParams(); 103 child.measure(childWidthMeasureSpec, childheightMeasureSpec); 119 View child = getChildAt(i) local 132 View child = getChildAt(i); local [all...] |
/packages/apps/Mms/src/com/android/mms/dom/smil/ |
ElementSequentialTimeContainerImpl.java | 63 ElementTime child = (ElementTime) children.item(i); local 64 if (child.getDur() < 0) { 65 // Return "indefinite" since containing a child whose duration is indefinite. 68 dur += child.getDur();
|
/system/core/logwrapper/ |
logwrapper.c | 90 if (wait(&status) != -1) { // Wait for child 107 void child(int argc, char* argv[]) { function 159 fatal("Problem with child ptty\n"); 168 child(argc - 1, &argv[1]);
|
/system/vold/ |
logwrapper.c | 73 if (wait(&status) != -1) { // Wait for child 92 void child(int argc, const char**argv) { function 135 * Child 140 LOG(LOG_ERROR, "logwrapper", "Problem with child ptty"); 166 child(argc, argv);
|
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/ |
FitCenterFrameLayout.java | 25 * A simple layout that fits and centers each child view, maintaining aspect ratio. 38 // We purposely disregard child measurements. 68 final View child = getChildAt(i); local 69 if (child.getVisibility() == GONE) { 73 // Fit and center the child within the parent. Make sure not to consider padding 74 // as part of the child's aspect ratio. 76 childPaddingLeft = child.getPaddingLeft(); 77 childPaddingTop = child.getPaddingTop(); 78 childPaddingRight = child.getPaddingRight(); 79 childPaddingBottom = child.getPaddingBottom() [all...] |
/frameworks/base/core/java/android/widget/ |
AbsoluteLayout.java | 65 // Find rightmost and bottom-most child 67 View child = getChildAt(i); local 68 if (child.getVisibility() != GONE) { 73 = (AbsoluteLayout.LayoutParams) child.getLayoutParams(); 75 childRight = lp.x + child.getMeasuredWidth(); 76 childBottom = lp.y + child.getMeasuredHeight(); 112 View child = getChildAt(i); local 113 if (child.getVisibility() != GONE) { 116 (AbsoluteLayout.LayoutParams) child.getLayoutParams(); 120 child.layout(childLeft, childTop [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
EvenlySpacedLayout.java | 54 View child = getChildAt(i); local 55 if (child.getVisibility() == GONE) continue; 56 measureChild(child, widthMeasureSpec, heightMeasureSpec); 58 width += child.getMeasuredWidth(); 59 height = Math.max(height, child.getMeasuredHeight()); 61 height += child.getMeasuredHeight(); 62 width = Math.max(width, child.getMeasuredWidth()); 75 View child = getChildAt(i); local 76 if (child.getVisibility() == GONE) continue; 77 usedWidth += child.getMeasuredWidth() 86 View child = getChildAt(i); local 102 View child = getChildAt(i); local 113 View child = getChildAt(i); local [all...] |