HomeSort by relevance Sort by last modified time
    Searched refs:parent (Results 126 - 150 of 6350) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/squashfs-tools/kernel/fs/squashfs/
squashfs_fs_i.h 40 int parent; member in struct:squashfs_inode_info::__anon24215::__anon24217
  /external/squashfs-tools/kernel/include/linux/
squashfs_fs_i.h 40 int parent; member in struct:squashfs_inode_info::__anon24218::__anon24220
  /external/testng/src/main/java/org/testng/xml/dom/
ITagSetter.java 6 void setProperty(String name, T parent, Node node);
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
signalbar.h 20 SignalBar(QObject *parent = 0);
  /frameworks/base/core/java/android/widget/
SpinnerAdapter.java 39 * @param parent the parent that this view will eventually be attached to
43 public View getDropDownView(int position, View convertView, ViewGroup parent);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ZOrderingActivity.java 15 ViewGroup grandParent = (ViewGroup) findViewById(R.id.parent);
22 ViewGroup parent = (ViewGroup) grandParent.getChildAt(i); local
23 for (int j = 0; j < parent.getChildCount(); j++) {
24 parent.getChildAt(j).setOnClickListener(l);
  /frameworks/base/tools/aapt2/flatten/
ResourceTypeExtensions.h 30 android::ResTable_ref parent; member in struct:aapt::ResTable_entry_ext
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
OnChildLaidOutListener.java 28 * @param parent The ViewGroup where the layout happened.
33 void onChildLaidOut(ViewGroup parent, View view, int position, long id);
OnChildSelectedListener.java 30 * @param parent The ViewGroup where the selection happened.
38 void onChildSelected(ViewGroup parent, View view, int position, long id);
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/
viddec_mp4_videoobjectlayer.h 13 mp4_Status_t mp4_Parse_VideoObjectLayer(void *parent, viddec_mp4_parser_t *cxt);
  /libcore/ojluni/src/main/java/java/util/
PropertyResourceBundle.java 162 * this <code>ResourceBundle</code> and its parent bundles.
165 * this <code>ResourceBundle</code> and its parent bundles.
169 ResourceBundle parent = this.parent; local
171 (parent != null) ? parent.getKeys() : null);
  /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);
  /external/guice/core/src/com/google/inject/spi/
ModuleSource.java 28 * Associated to a {@link Module module}, provides the module class name, the parent module {@link
40 * The parent {@link ModuleSource module source}.
42 private final ModuleSource parent; field in class:ModuleSource
45 * The chunk of call stack that starts from the parent module {@link Module#configure(Binder)
47 * configure(Binder)} method invocation. For a module without a parent module the chunk starts
53 * Creates a new {@link ModuleSource} with a {@literal null} parent.
55 * @param partialCallStack the chunk of call stack that starts from the parent module {@link
65 * @param parent the parent module {@link ModuleSource source}
67 * @param partialCallStack the chunk of call stack that starts from the parent module {@lin
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp2/include/
viddec_mpeg2.h 218 void viddec_mpeg2_translate_attr (void *parent, void *ctxt);
219 void viddec_mpeg2_emit_workload (void *parent, void *ctxt);
220 void viddec_mpeg2_parse_seq_hdr (void *parent, void *ctxt);
221 void viddec_mpeg2_parse_gop_hdr (void *parent, void *ctxt);
222 void viddec_mpeg2_parse_pic_hdr (void *parent, void *ctxt);
223 void viddec_mpeg2_parse_and_append_user_data(void *parent, void *ctxt);
224 void viddec_mpeg2_parse_and_append_slice_data(void *parent, void *ctxt);
225 void viddec_mpeg2_parse_ext (void *parent, void *ctxt);
228 void viddec_mpeg2_append_workitem (void *parent, viddec_workload_item_t *wi, uint8_t flag);
229 void viddec_mpeg2_append_pixeldata (void *parent, uint8_t flag)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
XMLFilterImplTest.java 53 private XMLFilterImpl parent = new MockFilter(logger); field in class:XMLFilterImplTest
55 private XMLFilterImpl child = new XMLFilterImpl(parent);
68 parent.setContentHandler(handler);
69 parent.setDTDHandler(handler);
70 parent.setErrorHandler(handler);
78 assertEquals(null, parent.getParent());
83 assertEquals(null, parent.getParent());
94 child.setParent(parent);
95 assertEquals(parent, child.getParent());
112 // No parent cas
    [all...]
  /external/guice/core/src/com/google/inject/internal/util/
SourceProvider.java 35 private final SourceProvider parent; field in class:SourceProvider
45 private SourceProvider(SourceProvider parent, Iterable<String> classesToSkip) {
46 this.parent = parent;
50 if (parent == null || !parent.shouldBeSkipped(classToSkip)) {
64 return (parent != null && parent.shouldBeSkipped(className))
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/
ReportOutputFolder.java 29 private final ReportOutputFolder parent; field in class:ReportOutputFolder
55 final ReportOutputFolder parent, final String path) {
57 this.parent = parent;
109 if (base.parent == null) {
112 return "../" + this.getLink(base.parent, name);
119 return folder.parent == null ? false : isAncestorOf(folder.parent);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AAddExpression.java 51 this._left_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._right_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
AAndExpression.java 51 this._left_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._right_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
ACommaExpression.java 51 this._left_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._right_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
ACommentCommand.java 51 this._position_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._comment_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
AContentTypeCommand.java 51 this._position_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._string_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
ADescendVariable.java 51 this._parent_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._child_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
ADivideExpression.java 51 this._left_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._right_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
AEqExpression.java 51 this._left_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._right_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);

Completed in 494 milliseconds

1 2 3 4 56 7 8 91011>>