HomeSort by relevance Sort by last modified time
    Searched defs:parent (Results 151 - 175 of 4057) sorted by null

1 2 3 4 5 67 8 91011>>

  /hardware/intel/common/libmix/mix_video/src/
mixdrmparams.h 69 MixParams parent; member in struct:_MixDrmParams
mixvideoformat_h264.h 32 MixVideoFormat parent; member in struct:_MixVideoFormat_H264
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
LeafNodeImpl.java 31 * This class represents a Node that has a parent Node, but no children.
36 InnerNodeImpl parent; field in class:LeafNodeImpl
46 if (parent == null || index + 1 >= parent.children.size()) {
50 return parent.children.get(index + 1);
54 return parent;
58 if (parent == null || index == 0) {
62 return parent.children.get(index - 1);
  /libcore/ojluni/src/main/java/java/util/
ListResourceBundle.java 140 * this <code>ResourceBundle</code> and its parent bundles.
143 * this <code>ResourceBundle</code> and its parent bundles.
152 ResourceBundle parent = this.parent; local
154 (parent != null) ? parent.getKeys() : null);
  /packages/apps/Dialer/java/com/android/dialer/common/
FragmentUtils.java 37 * Returns an instance of the {@code callbackInterface} that is defined in the parent of the
45 T parent = (T) parentForTesting; local
46 return parent;
52 T parent = (T) parentFragment; local
53 return parent;
56 T parent = (T) fragment.getActivity(); local
57 return parent;
60 T parent = ((FragmentUtilListener) fragment.getActivity()).getImpl(callbackInterface); local
61 return parent;
67 * Returns an instance of the {@code callbackInterface} that is defined in the parent of th
76 T parent = (T) parentForTesting; local
83 T parent = (T) parentFragment; local
87 T parent = (T) fragment.getActivity(); local
91 T parent = ((FragmentUtilListener) fragment.getActivity()).getImpl(callbackInterface); local
132 String parent = local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
UiUtilities.java 34 public static <T extends View> T getView(View parent, int viewId) {
35 return (T) checkView(parent.findViewById(viewId));
57 public static void setVisibilitySafe(View parent, int viewId, int visibility) {
58 setVisibilitySafe(parent.findViewById(viewId), visibility);
  /packages/apps/Launcher3/src/com/android/launcher3/views/
WorkFooterContainer.java 54 View parent = (View) getParent(); local
55 int availableBot = parent.getHeight() - parent.getPaddingBottom();
BottomUserEducationView.java 140 View parent = (View) mCloseButton.getParent(); local
141 parent.setTouchDelegate(new TouchDelegate(hitRect, mCloseButton));
  /packages/apps/Settings/tests/robotests/src/com/android/settings/
ZonePickerTest.java 55 ViewGroup parent = new FrameLayout(RuntimeEnvironment.application); local
64 adapter.getView(0, convertView, parent);
  /prebuilts/go/darwin-x86/src/syscall/
exec_unix_test.go 62 func parent() (pid, pgrp int) { func
67 ppid, ppgrp := parent()
77 t.Fatalf("Parent and child have the same process ID")
81 t.Fatalf("Child is not in parent's process group")
86 ppid, ppgrp := parent()
97 t.Fatalf("Parent and child have the same process ID")
101 t.Fatalf("Parent and child are in the same process group")
110 ppid, ppgrp := parent()
121 t.Fatalf("Parent and child 1 have the same process ID")
125 t.Fatalf("Parent and child 1 are in the same process group"
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
exec_unix_test.go 62 func parent() (pid, pgrp int) { func
67 ppid, ppgrp := parent()
77 t.Fatalf("Parent and child have the same process ID")
81 t.Fatalf("Child is not in parent's process group")
86 ppid, ppgrp := parent()
97 t.Fatalf("Parent and child have the same process ID")
101 t.Fatalf("Parent and child are in the same process group")
110 ppid, ppgrp := parent()
121 t.Fatalf("Parent and child 1 have the same process ID")
125 t.Fatalf("Parent and child 1 are in the same process group"
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
PropertyView.java 32 public void createPartControl(Composite parent) {
33 parent.setLayout(new FillLayout());
35 mPropertyViewer = new PropertyViewer(parent);
TreeOverviewView.java 32 public void createPartControl(Composite parent) {
33 parent.setLayout(new FillLayout());
35 mTreeViewOverview = new TreeViewOverview(parent);
  /toolchain/binutils/binutils-2.27/gprof/
cg_arcs.h 27 * With pointers to the symbols of the parent and the child, a count
29 * parent of this child and the next child of this parent.
33 Sym *parent; /* source vertice of arc */
35 unsigned long count; /* # of calls from parent to child */
38 struct arc *next_parent; /* next parent of CHILD */
39 struct arc *next_child; /* next child of PARENT */
47 extern void arc_add (Sym * parent, Sym * child, unsigned long count);
48 extern Arc *arc_lookup (Sym * parent, Sym * child);
32 Sym *parent; \/* source vertice of arc *\/ member in struct:arc
  /tools/appbundle/bundletool/java/com/android/tools/appbundle/bundletool/
BundleModule.java 27 private AppBundle parent; field in class:BundleModule
31 private BundleModule(String name, AppBundle parent, List<ZipEntry> entries) {
32 this.parent = parent;
42 return parent;
53 private AppBundle parent; field in class:BundleModule.Builder
55 public Builder(String name, AppBundle parent) {
57 this.parent = parent;
67 return new BundleModule(name, parent, entries)
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatLfnDirectoryEntry.java 45 private FatLfnDirectory parent; field in class:FatLfnDirectoryEntry
49 FatLfnDirectory parent, boolean directory) {
53 this.parent = parent;
63 FatLfnDirectoryEntry(FatLfnDirectory parent,
66 super(parent.isReadOnly());
68 this.parent = parent;
247 if (!this.parent.isFreeName(newName)) {
252 this.parent.unlinkEntry(this)
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
ThreadGroup.java 37 * has a parent.
41 * parent thread group or any other thread groups.
64 private final ThreadGroup parent; field in class:ThreadGroup
85 this.parent = null;
89 * Constructs a new thread group. The parent of this new group is
92 * The <code>checkAccess</code> method of the parent thread group is
106 * Creates a new thread group. The parent of this new group is the
109 * The <code>checkAccess</code> method of the parent thread group is
112 * @param parent the parent thread group
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
Stats.java 172 File parent = f.getParentFile(); local
173 parent.mkdirs(); // ensure parent dir exists
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TrAXFilter.java 48 * Construct an empty XML filter, with no parent.
50 * <p>This filter will have no parent: you must assign a parent
72 /** Set the parent reader.
76 * configuration requests. The parent may itself be another filter.</p>
78 * <p>If there is no parent reader set, any attempt to parse
81 * @param parent The parent XML reader.
82 * @throws java.lang.NullPointerException If the parent is null.
84 public void setParent (XMLReader parent)
140 XMLReader parent; local
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
SourceHighlighterTest.java 42 private HTMLElement parent; field in class:SourceHighlighterTest
55 parent = html.body();
62 sourceHighlighter.render(parent, source, new StringReader(src));
72 sourceHighlighter.render(parent, source, new StringReader(""));
82 sourceHighlighter.render(parent, source, new StringReader(""));
96 sourceHighlighter.render(parent, source, new StringReader(src));
111 sourceHighlighter.highlight(parent, source.getLine(1), 1);
121 sourceHighlighter.highlight(parent.pre(null), source.getLine(1), 1);
133 sourceHighlighter.highlight(parent.pre(null), source.getLine(1), 1);
145 sourceHighlighter.highlight(parent.pre(null), source.getLine(1), 1)
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowViewStub.java 71 ViewGroup parent = (ViewGroup) viewParent; local
73 View view = factory.inflate(mLayoutResource, parent, false);
79 int index = parent.indexOfChild(viewStub);
80 parent.removeViewAt(index);
81 // parent.removeViewInLayout(viewStub);
85 parent.addView(view, index, layoutParams);
87 parent.addView(view, index);
  /frameworks/base/core/java/android/app/backup/
FileBackupHelperBase.java 88 File parent = f.getParentFile(); local
89 parent.mkdirs();
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/graphics/
CompositeDrawableTest.java 71 // inherit from parent
102 // inherit from parent 2
127 // inherit from parent
141 // inherit from parent with offset
196 CompositeDrawable parent = new CompositeDrawable(); local
198 parent.addChildDrawable(child);
199 parent.getChildAt(0).getBoundsRule().bottom =
203 parent.getChildAt(0),
204 parent,
213 CompositeDrawable parent = new CompositeDrawable() local
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
DividerItemDecoration.java 103 public void onDraw(Canvas c, RecyclerView parent, RecyclerView.State state) {
104 if (parent.getLayoutManager() == null || mDivider == null) {
108 drawVertical(c, parent);
110 drawHorizontal(c, parent);
114 private void drawVertical(Canvas canvas, RecyclerView parent) {
119 if (parent.getClipToPadding()) {
120 left = parent.getPaddingLeft();
121 right = parent.getWidth() - parent.getPaddingRight();
122 canvas.clipRect(left, parent.getPaddingTop(), right
    [all...]
  /packages/apps/Settings/src/com/android/settings/notification/
NotificationAccessSettings.java 118 private static void disable(final NotificationAccessSettings parent, final ComponentName cn) {
119 parent.mNm.setNotificationListenerAccessGranted(cn, false);
121 if (!parent.mNm.isNotificationPolicyAccessGrantedForPackage(
123 parent.mNm.removeAutomaticZenRules(cn.getPackageName());
153 NotificationAccessSettings parent = (NotificationAccessSettings) getTargetFragment(); local
161 (dialog, id) -> disable(parent, cn))

Completed in 1234 milliseconds

1 2 3 4 5 67 8 91011>>