HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 601 - 625 of 3822) sorted by null

<<21222324252627282930>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
Start.java 90 void removeChild(Node child)
92 if(this._pCommand_ == child)
98 if(this._eof_ == child)
104 throw new RuntimeException("Not a child.");
122 throw new RuntimeException("Not a child.");
AAltCommand.java 132 void removeChild(@SuppressWarnings("unused") Node child)
134 // Remove child
135 if(this._position_ == child)
141 if(this._expression_ == child)
147 if(this._command_ == child)
153 throw new RuntimeException("Not a child.");
159 // Replace child
178 throw new RuntimeException("Not a child.");
  /external/junit/src/junit/framework/
JUnit4TestAdapter.java 62 Description child= removeIgnored(each); local
63 if (! child.isEmpty())
64 result.addChild(child);
  /external/skia/src/gpu/
GrFragmentProcessor.cpp 84 int GrFragmentProcessor::registerChildProcessor(const GrFragmentProcessor* child) {
85 // Append the child's transforms to our transforms array and the child's textures array to our
87 if (!child->fCoordTransforms.empty()) {
88 fCoordTransforms.push_back_n(child->fCoordTransforms.count(),
89 child->fCoordTransforms.begin());
91 if (!child->fTextureAccesses.empty()) {
92 fTextureAccesses.push_back_n(child->fTextureAccesses.count(),
93 child->fTextureAccesses.begin());
97 fChildProcessors.push_back(SkRef(child));
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Schema.java 90 @param name Name of the child element
95 ElementType child = getElementType(name); local
97 if (child == null) {
98 throw new Error("No child " + name + " for parent " + parentName);
101 throw new Error("No parent " + parentName + " for child " + name);
103 child.setParent(parent);
  /external/valgrind/helgrind/tests/
tc24_nonzero_sem.c 30 pthread_t child[N_THREADS]; local
35 r= pthread_create( &child[i], NULL, child_fn, sem );
40 r= pthread_join( child[i], NULL );
  /external/valgrind/none/tests/linux/
pthread-stack.c 70 pthread_t child; local
85 /* Create a file-based stack for the child */
99 /* Create child run */
100 r = pthread_create(&child, &attr, child_func, NULL);
102 r = pthread_join(child, NULL);
  /external/valgrind/none/tests/solaris/
pthread-stack.c 79 /* Create a file-based stack for the child. */
93 /* Create child run. */
94 pthread_t child; local
95 r = pthread_create(&child, &attr, child_func, NULL);
97 r = pthread_join(child, NULL);
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java 52 * is a {@link FrameLayout}, meaning you should place one child in it
53 * containing the entire contents to scroll; this child may itself be a layout
54 * manager with a complex hierarchy of objects. A child that is often used
94 * The child to give focus to in the event that a child has requested focus while the
95 * layout is dirty. This prevents the scroll from being wrong if the child has not been
113 * When set to true, the scroll view measure its child to make it fill the currently
223 public void addView(View child) {
225 throw new IllegalStateException("HorizontalScrollView can host only one direct child");
228 super.addView(child);
262 View child = getChildAt(0); local
327 final View child = getChildAt(0); local
409 final View child = getChildAt(0); local
852 View child = getChildAt(0); local
1616 View child = getChildAt(0); local
    [all...]
  /frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
BottomScrollViewTest.java 68 final View child = new TestChildView(getContext(), childHeight); local
70 child.measure(0, 0); // TestChildView's measured dimensions doesn't depend on the arguments
71 bottomScrollView.addView(child);
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
GridLayoutManagerCachedBordersTest.java 60 View child = recyclerView.getChildAt(i * mConfig.mSpanCount + j); local
61 childrenSizeSum += vertical ? child.getWidth() : child.getHeight();
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodelisttraverselist.java 31 * The range of valid child node indices is 0 thru length -1
67 Node child; local
101 child = (Node) employeeList.item(indexN100A4);
102 childName = child.getNodeName();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getElementsByTagNameNS03.java 77 Node child; local
100 child = (Node) elementList.item(indexN10076);
101 childName = child.getNodeName();
getElementsByTagNameNS10.java 79 Node child; local
103 child = (Node) elementList.item(indexN1007E);
104 childName = child.getNodeName();
importNode01.java 41 * Create a child Text node with value "importedText" for the attribute node above.
44 * Method should return a node whose name matches "elem:attr1" and a child node
86 Node child; local
113 child = aNode.getFirstChild();
114 childValue = child.getNodeValue();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetElementsByTagNameNS.java 98 Node child; local
121 child = (Node) elementList.item(indexN10076);
122 childName = child.getNodeName();
130 Node child; local
144 child = (Node) elementList.item(indexN10059);
145 childName = child.getNodeName();
205 Node child; local
230 child = (Node) elementList.item(indexN1007E);
231 childName = child.getNodeName();
240 Node child; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ResizeHandler.java 94 for (INode child : layout.getChildren()) {
95 if (child != resized) {
96 String id = child.getStringAttr(ANDROID_URI, ATTR_ID);
97 addBounds(child, id,
98 !mHorizontalDeps.contains(child),
99 !mVerticalDeps.contains(child));
177 * @param child the node being resized
181 public void updateResize(DropFeedback feedback, INode child, Rect newBounds,
190 String childId = child.getStringAttr(ANDROID_URI, ATTR_ID);
196 hEdge = new Segment(b.y, b.x, b.x2(), child, childId, mHorizontalEdgeType, NO_MARGIN)
    [all...]
  /cts/suite/audio_quality/lib/src/task/
TaskSequential.cpp 59 TaskGeneric* child = *i; local
60 TaskGeneric::ExecutionResult result = child->run();
110 TaskAsync* child = *i; local
111 TaskGeneric::ExecutionResult result = child->complete();
  /cts/tools/vm-tests-tf/src/util/build/
BuildStep.java 85 for (BuildStep child : children) {
86 if (!child.build()) {
104 public void addChild(BuildStep child) {
108 children.add(child);
  /developers/build/prebuilts/gradle/ElevationDrag/Application/src/main/java/com/example/android/elevationdrag/
DragFrameLayout.java 30 * A {@link FrameLayout} that allows the user to drag and reposition child views.
67 public boolean tryCaptureView(View child, int pointerId) {
68 return mDragViews.contains(child);
77 public int clampViewPositionHorizontal(View child, int left, int dx) {
82 public int clampViewPositionVertical(View child, int top, int dy) {
  /developers/samples/android/ui/views/Elevation/ElevationDrag/Application/src/main/java/com/example/android/elevationdrag/
DragFrameLayout.java 30 * A {@link FrameLayout} that allows the user to drag and reposition child views.
67 public boolean tryCaptureView(View child, int pointerId) {
68 return mDragViews.contains(child);
77 public int clampViewPositionHorizontal(View child, int left, int dx) {
82 public int clampViewPositionVertical(View child, int top, int dy) {
  /development/samples/browseable/ElevationDrag/src/com.example.android.elevationdrag/
DragFrameLayout.java 30 * A {@link FrameLayout} that allows the user to drag and reposition child views.
67 public boolean tryCaptureView(View child, int pointerId) {
68 return mDragViews.contains(child);
77 public int clampViewPositionHorizontal(View child, int left, int dx) {
82 public int clampViewPositionVertical(View child, int top, int dy) {
  /external/chromium-trace/catapult/third_party/polymer/components/paper-dialog-behavior/
paper-dialog-common.css 32 :host > ::content > *:first-child {
36 :host > ::content > *:last-child {
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer_unittest.cc 60 const pid_t child = fork(); local
61 if (child == 0) {
74 context.tid = child;
101 ASSERT_TRUE(WriteMicrodump(child, &context, sizeof(context), mappings));
  /external/google-breakpad/src/processor/
contained_range_map-inl.h 81 // The new range is entirely within an existing child range.
83 // If the new range's geometry is exactly equal to an existing child
86 // containing child's high address.
94 // Pass the new range on to the child to attempt to store.
105 // If the new range encompasses any existing child ranges, it must do so
125 // Optimization: if the iterators are equal, no child ranges would be
126 // moved. Create the new child range with a NULL map to conserve space
132 // be transferred over to the new range. Create the new child range map
136 // Remove the copied child pointers from this range's map of children.
141 // the new child range contains were formerly children of this range bu
    [all...]

Completed in 5784 milliseconds

<<21222324252627282930>>