/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreePatternParser.cs | 79 object child = ParseNode(); 80 if (child == null) { 83 adaptor.AddChild(root, child);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
TreePatternParser.cs | 93 object child = ParseNode(); 94 if ( child == null ) 98 adaptor.AddChild( root, child );
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
TreePatternParser.java | 79 Object child = parseNode(); local 80 if ( child==null ) { 83 adaptor.addChild(root, child);
|
/external/autotest/site_utils/presubmit_hooks/ |
check_control_files.py | 75 child = subprocess.Popen(cmd_args, stdout=subprocess.PIPE, 77 new_useflags = child.communicate()[0].splitlines() 78 if child.returncode == 0:
|
/external/compiler-rt/lib/asan/tests/ |
asan_mac_test.cc | 29 pthread_t child; local 30 PTHREAD_CREATE(&child, NULL, CFAllocatorDefaultDoubleFree, NULL); 31 PTHREAD_JOIN(child, NULL); // Shouldn't be reached. 159 // Call malloc in the child process to make sure we won't deadlock. 172 // TODO(glider): need to detect that none of the child processes deadlocked.
|
/external/deqp/executor/tools/ |
xeCommandLineExecutor.cpp | 308 const xe::TestNode* child = group.getChild(childNdx); local 309 const bool isGroup = child->getNodeType() == xe::TESTNODETYPE_GROUP; 310 const string fullPath = child->getFullPath(); 317 addMatchingCases(static_cast<const xe::TestGroup&>(*child), testSet, filter); 321 DE_ASSERT(child->getNodeType() == xe::TESTNODETYPE_TEST_CASE); 322 testSet.add(child); 332 const xe::TestNode* child = group.getChild(childNdx); local 333 const bool isGroup = child->getNodeType() == xe::TESTNODETYPE_GROUP; 334 const string fullPath = child->getFullPath(); 341 removeMatchingCases(static_cast<const xe::TestGroup&>(*child), testSet, filter) [all...] |
/external/e2fsprogs/lib/ss/ |
help.c | 43 int fd, child; local 105 switch (child = fork()) { 115 while (wait(NULL) != child) {
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/ |
XMLCoverageWriter.java | 33 * Creates a child element with a name attribute. 38 * name of the child tag 41 * @return child element 48 final XMLElement child = parent.element(tagname); local 49 child.attr("name", name); 50 return child;
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
NewHdfParser.java | 79 Data child = data.createChild(name); local 85 child.setAttribute(key, value); 88 return child; 532 Data child = handleNodeCreation(state.currentNode, element); local 534 state.currentNode = child; 543 Data child = handleNodeCreation(state.currentNode, element); local 544 child.setValue(value); 548 Data child = handleNodeCreation(state.currentNode, element); local 551 child.setValue(src.getValue()); 553 child.setValue("") 558 Data child = handleNodeCreation(state.currentNode, element); local [all...] |
/external/libmicrohttpd/src/testspdy/ |
test_proxies.c | 79 pid_t child = fork(); local 80 if (child == -1) 87 return child; 93 //pid_t child;
|
/external/owasp/sanitizer/tools/ |
update_tree_in_svn.py | 71 for child in children: 72 handle(os.path.join(src, child), os.path.join(dst, child))
|
/external/selinux/sepolgen/src/sepolgen/ |
output.py | 168 for child in node.children: 169 if child not in c: 170 c.append(child)
|
/external/skia/samplecode/ |
SampleAnimator.cpp | 73 const SkDOMNode* child = dom.getFirstChild(node); local 74 if (child) { 75 const SkDOMNode* found = find_nodeID(dom, child, name);
|
/external/valgrind/helgrind/tests/ |
tc11_XCHG.c | 8 /* Simple test program, no race. Parent and child both modify x and 152 pthread_t child; local 154 if (pthread_create(&child, NULL, child_fn, NULL)) { 162 if (pthread_join(child, NULL)) {
|
/frameworks/base/core/tests/coretests/src/android/view/ |
RemoteViewsTest.java | 100 RemoteViews child = new RemoteViews(mPackage, R.layout.remote_views_test); local 102 original.addView(R.id.layout, child); 105 RemoteViews clone = child.clone();
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/ |
CameraTestResultPrinter.java | 131 for (File child : files) { 133 purgeFiles(child); 135 child.delete();
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
HeadsUpTouchHelper.java | 78 ExpandableView child = mStackScroller.getChildAtRawPosition(x, y); local 80 if (child instanceof ExpandableNotificationRow) { 81 mPickedChild = (ExpandableNotificationRow) child;
|
/frameworks/base/test-runner/src/android/test/ |
ActivityUnitTestCase.java | 71 * <li>{@link android.app.Activity#finishFromChild(Activity child)}</li> 274 * <li>{@link android.app.Activity#finishFromChild(Activity child)}</li> 319 public void startActivityFromChild(Activity child, Intent intent, int requestCode) { 328 * <li>{@link android.app.Activity#finishFromChild(Activity child)}</li> 332 public void finishFromChild(Activity child) { 343 public void finishActivityFromChild(Activity child, int requestCode) {
|
/frameworks/base/tools/aapt2/xml/ |
XmlDom.h | 49 void addChild(std::unique_ptr<Node> child); 63 * A Namespace XML node. Can only have one child. 166 for (auto& child : node->children) { 167 child->accept(this);
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/ |
StatusBar.java | 94 View child = getChildAt(index); local 95 if (child instanceof ImageView) { 96 ImageView imageView = (ImageView) child;
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
GridLayoutManager.java | 424 * skip non-focusable child and adjust mFocusPosition. 468 * Force a full layout under certain situations. E.g. Rows change, jump to invisible child. 478 * override child visibility 533 * How to position child in secondary direction. 603 * True if prune child, might be disabled during transition. 834 void fireOnChildViewHolderSelected(RecyclerView parent, RecyclerView.ViewHolder child, 840 mChildViewHolderSelectedListeners.get(i).onChildViewHolderSelected(parent, child, 912 // Children may request layout when a child selection event occurs (such as a change of 914 // If in layout, a child requesting layout may have been laid out before the selection 916 // If it was not, the child will be laid out after the selection callback 2878 final View child = getChildAt(i); local 2937 View child = getChildAt(i); local 2947 View child = getChildAt(i); local 3030 View child = getChildAt(i); local 3298 final View child = getChildAt(index); local [all...] |
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/ |
ItemTouchUIUtilImpl.java | 51 final View child = recyclerView.getChildAt(i); local 52 if (child == itemView) { 55 final float elevation = ViewCompat.getElevation(child);
|
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
GridLayoutManagerCustomSizeInScrollDirectionTest.java | 115 View child = mRecyclerView.getChildAt(i); local 116 final int size = mConfig.mOrientation == HORIZONTAL ? child.getWidth() 117 : child.getHeight(); 118 assertEquals("child " + i + " should have the size specified in its layout params",
|
/packages/apps/Calendar/src/com/android/calendar/month/ |
MonthListView.java | 191 SimpleWeekView child = (SimpleWeekView) getChildAt(0); local 192 if (child == null) { 195 return child.getFirstJulianDay() + SimpleDayPickerFragment.DAYS_PER_WEEK - 1;
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
PhotoPageBottomControls.java | 71 View child = mContainer.getChildAt(i); local 72 child.setOnClickListener(this); 73 mControlsVisible.put(child, false);
|