HomeSort by relevance Sort by last modified time
    Searched defs:parent (Results 176 - 200 of 1569) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AHexExpression.java 46 this._value_.parent(null);
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
AHexNumberVariable.java 46 this._hexNumber_.parent(null);
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
ANameVariable.java 46 this._word_.parent(null);
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
ANegativeExpression.java 46 this._expression_.parent(null);
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
ANotExpression.java 46 this._expression_.parent(null);
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
ANumericExpression.java 46 this._expression_.parent(null);
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
AStringExpression.java 46 this._value_.parent(null);
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
AVariableExpression.java 46 this._variable_.parent(null);
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
ADefCommand.java 62 this._position_.parent(null);
67 if(node.parent() != null)
69 node.parent().removeChild(node);
72 node.parent(this);
89 if(e.parent() != null)
91 e.parent().removeChild(e);
94 e.parent(this);
109 if(e.parent() != null)
111 e.parent().removeChild(e);
114 e.parent(this)
    [all...]
  /external/libmtp/examples/
pathutils.c 32 lookup_folder_id (LIBMTP_folder_t * folder, char * path, char * parent)
44 current = malloc (strlen(parent) + strlen(folder->name) + 2);
45 sprintf(current,"%s/%s",parent,folder->name);
57 ret = lookup_folder_id (folder->sibling, path, parent);
91 char * parent = dirname(dirc); local
93 uint32_t parent_id = lookup_folder_id(folders,parent,"");
  /external/linux-tools-perf/util/
thread.c 67 struct rb_node *parent = NULL; local
79 parent = *p;
80 th = rb_entry(parent, struct thread, rb_node);
95 rb_link_node(&th->rb_node, parent, p);
109 int thread__fork(struct thread *self, struct thread *parent)
113 if (parent->comm_set) {
116 self->comm = strdup(parent->comm);
123 if (map_groups__clone(&self->mg, &parent->mg, i) < 0)
  /external/skia/src/svg/
SkSVGElements.cpp 35 SkSVGElement* parent = fParent; local
36 while (parent) {
37 if (parent->getType() != SkSVGType_G)
39 parent = parent->fParent;
  /frameworks/av/services/camera/libcameraservice/api1/client2/
JpegCompressor.h 79 JpegCompressor *parent; member in struct:android::camera2::JpegCompressor::JpegError
84 JpegCompressor *parent; member in struct:android::camera2::JpegCompressor::JpegDestination
  /frameworks/base/core/java/android/util/
DebugUtils.java 79 Class<?> parent = klass; local
81 declaredMethod = parent.getDeclaredMethod("get" +
85 } while ((parent = klass.getSuperclass()) != null &&
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
BaselineAlignmentCenterGravityTest.java 57 final View parent = (View) mButton1.getParent(); local
58 ViewAsserts.assertTopAligned(mButton1, parent);
59 ViewAsserts.assertTopAligned(mButton2, parent);
60 ViewAsserts.assertTopAligned(mButton3, parent);
61 ViewAsserts.assertBottomAligned(mButton1, parent);
62 ViewAsserts.assertBottomAligned(mButton2, parent);
63 ViewAsserts.assertBottomAligned(mButton3, parent);
  /packages/apps/Email/src/com/android/email/activity/
UiUtilities.java 71 public static <T extends View> T getViewOrNull(Activity parent, int viewId) {
72 return (T) parent.findViewById(viewId);
77 public static <T extends View> T getViewOrNull(View parent, int viewId) {
78 return (T) parent.findViewById(viewId);
85 public static <T extends View> T getView(Activity parent, int viewId) {
86 return (T) checkView(parent.findViewById(viewId));
93 public static <T extends View> T getView(View parent, int viewId) {
94 return (T) checkView(parent.findViewById(viewId));
116 public static void setVisibilitySafe(Activity parent, int viewId, int visibility) {
117 setVisibilitySafe(parent.findViewById(viewId), visibility)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DrawableStateProxyView.java 58 View parent = (View) getParent(); local
59 mView = parent.findViewById(mViewId);
  /packages/apps/Launcher3/src/com/android/launcher3/
DrawableStateProxyView.java 58 View parent = (View) getParent(); local
59 mView = parent.findViewById(mViewId);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
MemoryBinaryBody.java 46 private Entity parent = null; field in class:MemoryBinaryBody
69 return parent;
75 public void setParent(Entity parent) {
76 this.parent = parent;
TempFileBinaryBody.java 45 private Entity parent = null; field in class:TempFileBinaryBody
68 return parent;
74 public void setParent(Entity parent) {
75 this.parent = parent;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LinearLayoutWeightFix.java 55 Element parent = (Element) node.getParentNode(); local
57 if (VALUE_VERTICAL.equals(parent.getAttributeNS(ANDROID_URI,
SetScrollViewSizeFix.java 54 Element parent = (Element) node.getParentNode(); local
56 boolean isHorizontal = HORIZONTAL_SCROLL_VIEW.equals(parent.getTagName());
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
StateLabelProvider.java 59 IGLProperty parent = element.getParent(); local
60 if (parent instanceof GLListProperty) {
63 int index = ((GLListProperty) parent).indexOf(element);
71 } else if (parent instanceof GLSparseArrayProperty) {
74 int index = ((GLSparseArrayProperty) parent).keyFor(element);
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/
IngestActivity.java 514 public ItemListHandler(IngestActivity parent) {
516 mParentReference = new WeakReference<IngestActivity>(parent);
520 IngestActivity parent = mParentReference.get(); local
521 if (parent == null || !parent.mActive)
525 parent.cleanupProgressDialog();
528 parent.updateProgressDialog();
531 parent.UiThreadNotifyIndexChanged();
534 parent.mPositionMappingCheckBroker.onBulkCheckedChange();
537 parent.makeProgressDialogIndeterminate()
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
Feature.java 266 * @return world transform matrix of the feature's parent or identity matrix
267 * if the feature has no parent
277 Bone parent = bone.getParent(); local
278 if (parent != null) {
279 result.setTransform(parent.getWorldBindPosition(), parent.getWorldBindScale(), parent.getWorldBindRotation().toRotationMatrix());

Completed in 272 milliseconds

1 2 3 4 5 6 78 91011>>