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

<<21222324252627282930>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AAutoescapeCommand.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.");
AEscapeCommand.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.");
ANoopCommand.java 34 void removeChild(@SuppressWarnings("unused") Node child)
36 // Remove child
37 throw new RuntimeException("Not a child.");
43 // Replace child
44 throw new RuntimeException("Not a child.");
ANoopExpression.java 34 void removeChild(@SuppressWarnings("unused") Node child)
36 // Remove child
37 throw new RuntimeException("Not a child.");
43 // Replace child
44 throw new RuntimeException("Not a child.");
ASetCommand.java 132 void removeChild(@SuppressWarnings("unused") Node child)
134 // Remove child
135 if(this._position_ == child)
141 if(this._variable_ == child)
147 if(this._expression_ == child)
153 throw new RuntimeException("Not a child.");
159 // Replace child
178 throw new RuntimeException("Not a child.");
Token.java 49 void removeChild(@SuppressWarnings("unused") Node child)
51 throw new RuntimeException("Not a child.");
57 throw new RuntimeException("Not a child.");
  /external/selinux/libsepol/include/sepol/policydb/
hierarchy.h 37 extern int bounds_check_type(sepol_handle_t *handle, policydb_t *p, uint32_t child,
  /external/v8/test/mjsunit/regress/
regress-crbug-513602.js 7 function Child() {}
8 Child.prototype = new Parent();
9 var child = new Child();
12 return child.__proto__;
  /frameworks/base/core/java/android/view/
NotificationHeaderView.java 140 final View child = getChildAt(i); local
141 if (child.getVisibility() == GONE) {
145 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();
150 child.measure(childWidthSpec, childHeightSpec);
151 totalWidth += lp.leftMargin + lp.rightMargin + child.getMeasuredWidth();
181 View child = getChildAt(i); local
182 if (child.getVisibility() == GONE) {
185 int childHeight = child.getMeasuredHeight();
186 MarginLayoutParams params = (MarginLayoutParams) child.getLayoutParams();
188 int right = left + child.getMeasuredWidth()
406 final View child = getChildAt(i); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
LockGuard.java 66 /** Child locks that can be acquired while this lock is already held */
90 // Check to see if we're already holding any child locks
94 final Object child = info.children.valueAt(i); local
95 if (child == null) continue;
97 if (Thread.holdsLock(child)) {
99 + lockToString(child) + " while trying to acquire "
107 // child of all locks currently being held
144 pw.println(" Child " + lockToString(info.children.valueAt(j)));
  /frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
MainActivity.java 71 View child = adapterView.getChildAt(i); local
77 if (child == clickedView) logTranslationY(clickedView);
78 animator.setTarget(child);
80 if (child == clickedView) logTranslationY(clickedView);
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
TemplateLayout.java 41 * The container of the actual content. This will be a view in the template, which child views
79 public void addView(View child, int index, ViewGroup.LayoutParams params) {
80 mContainer.addView(child, index, params);
83 private void addViewInternal(View child) {
84 super.addView(child, -1, generateDefaultLayoutParams());
129 * template instead of for child views.
  /frameworks/support/compat/api21/android/support/v4/graphics/drawable/
DrawableCompatLollipop.java 94 Drawable child; local
96 child = state.getChild(i);
97 if (child != null) {
98 clearColorFilter(child);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
HorizontalScrollViewRule.java 44 public void onChildInserted(@NonNull INode child, @NonNull INode parent,
46 super.onChildInserted(child, parent, insertType);
48 // The child of the ScrollView should fill in both directions
50 child.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, fillParent);
51 child.setAttribute(ANDROID_URI, ATTR_LAYOUT_HEIGHT, fillParent);
73 // HorizontalScrollViews only allow a single child
ScrollViewRule.java 44 public void onChildInserted(@NonNull INode child, @NonNull INode parent,
46 super.onChildInserted(child, parent, insertType);
48 // The child of the ScrollView should fill in both directions
50 child.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, fillParent);
51 child.setAttribute(ANDROID_URI, ATTR_LAYOUT_HEIGHT, fillParent);
61 // a child of this node and the create child method above will set its
73 // ScrollViews only allow a single child
TabHostRule.java 41 // the child elements yourself, e.g. via addTab() etc.
73 INode child = frame.appendChild(FQCN_LINEAR_LAYOUT); local
74 child.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, fillParent);
75 child.setAttribute(ANDROID_URI, ATTR_LAYOUT_HEIGHT, fillParent);
76 child.setAttribute(ANDROID_URI, ATTR_ID,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
TypographyFix.java 64 Node child = childNodes.item(i); local
65 if (child.getNodeType() == Node.TEXT_NODE) {
66 IndexedRegion region = (IndexedRegion) child;
69 TypographyDetector.getEdits(mId, message, child);
  /development/tools/idegen/src/com/android/idegen/
DirectorySearch.java 145 for (File child : children) {
146 if (child.isDirectory()) {
158 ImmutableList<File> dirs = findSourceDirs(child);
167 if (SOURCE_DIRS.contains(child.getName())) {
168 builder.add(child);
193 for (File child : children) {
194 if (child.isDirectory()) {
195 Matcher matcher = EXCLUDE_PATTERN.matcher(child.getName());
201 builder.add(child);
  /external/libchrome/base/json/
json_value_converter_unittest.cc 82 SimpleMessage child; member in struct:base::__anon14266::NestedMessage
90 converter->RegisterNestedField("child", &NestedMessage::child);
130 " \"child\": {\n"
157 EXPECT_EQ(1, message.child.foo);
158 EXPECT_EQ("bar", message.child.bar);
159 EXPECT_TRUE(message.child.baz);
160 EXPECT_TRUE(message.child.bstruct);
161 ASSERT_EQ(2U, message.child.string_values.size());
162 EXPECT_EQ("value_1", *message.child.string_values[0])
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPIteratorImpl.java 224 /** the iterator for each child */
340 // create sub iterator for every child,
341 // if its the first child visited or the former child is finished
344 XMPNode child = (XMPNode) iterator.next(); local
346 subIterator = new NodeIterator(child, path, index);
567 XMPNode child = (XMPNode) childrenIterator.next();
571 if (child.getOptions().isSchemaNode())
573 setBaseNS(child.getName());
575 else if (child.getParent() != null
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableView.java 64 View child = getChildAt(i); local
65 if (child.getVisibility() == GONE) {
69 ViewGroup.LayoutParams layoutParams = child.getLayoutParams();
77 child.measure(
80 int childHeight = child.getMeasuredHeight();
83 mMatchParentViews.add(child);
89 for (View child : mMatchParentViews) {
90 child.measure(getChildMeasureSpec(
91 widthMeasureSpec, 0 /* padding */, child.getLayoutParams().width),
255 * such that the child appears to be going away to the top.
    [all...]
ViewTransformationHelper.java 225 View child = stack.pop(); local
226 if (child.getVisibility() == View.GONE) {
229 Boolean containsView = (Boolean) child.getTag(TAG_CONTAINS_TRANSFORMED_VIEW);
232 int id = child.getId();
235 addTransformedView(id, child);
239 child.setTag(TAG_CONTAINS_TRANSFORMED_VIEW, null);
240 if (child instanceof ViewGroup && !mTransformedViews.containsValue(child)){
241 ViewGroup group = (ViewGroup) child;
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
ChildHelperTest.java 120 public void addView(View child, int index) {
121 mViews.add(index, child);
159 public void attachViewToParent(View child, int index, ViewGroup.LayoutParams layoutParams) {
160 assertTrue(mDetached.remove(child));
161 addView(child, index);
170 public void onEnteredHiddenState(View child) {
171 mOnEnteredHiddenState.add(child);
175 public void onLeftHiddenState(View child) {
176 mOnExitedHiddenState.add(child);
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer_unittest.cc 71 const pid_t child = fork(); local
72 if (child == 0) {
87 context.tid = child;
88 ASSERT_TRUE(WriteMinidump(templ.c_str(), child, &context, sizeof(context)));
100 const pid_t child = fork(); local
101 if (child == 0) {
117 context.tid = child;
118 ASSERT_TRUE(WriteMinidump(fd, child, &context, sizeof(context)));
165 const pid_t child = fork(); local
166 if (child == 0)
286 const pid_t child = fork(); local
452 const pid_t child = fork(); local
510 const pid_t child = fork(); local
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
CustomContactListFilterActivity.java 494 final GroupDelta child = oppositeChildren.next(); local
495 setShouldSync(child, shouldSync, false);
500 public void setShouldSync(GroupDelta child, boolean shouldSync) {
501 setShouldSync(child, shouldSync, true);
508 public void setShouldSync(GroupDelta child, boolean shouldSync, boolean attemptRemove) {
509 child.putShouldSync(shouldSync);
512 mUnsyncedGroups.remove(child);
514 mSyncedGroups.add(child);
518 mSyncedGroups.remove(child);
520 mUnsyncedGroups.add(child);
608 final GroupDelta child = (GroupDelta)this.getChild(groupPosition, childPosition); local
707 final GroupDelta child = (GroupDelta)mAdapter.getChild(groupPosition, childPosition); local
749 final GroupDelta child = (GroupDelta)mAdapter.getChild(groupPosition, childPosition); local
    [all...]

Completed in 1644 milliseconds

<<21222324252627282930>>