/frameworks/support/compat/gingerbread/android/support/v4/view/ |
LayoutInflaterFactory.java | 34 * @param parent The parent that the created view will be placed 43 public View onCreateView(View parent, String name, Context context, AttributeSet attrs);
|
/frameworks/support/core-ui/java/android/support/v4/widget/ |
ResourceCursorAdapter.java | 111 public View newView(Context context, Cursor cursor, ViewGroup parent) { 112 return mInflater.inflate(mLayout, parent, false); 116 public View newDropDownView(Context context, Cursor cursor, ViewGroup parent) { 117 return mInflater.inflate(mDropDownLayout, parent, false);
|
/frameworks/support/design/honeycomb/android/support/design/widget/ |
ViewGroupUtilsHoneycomb.java | 53 final ViewParent parent = view.getParent(); local 54 if (parent instanceof View && parent != target) { 55 final View vp = (View) parent;
|
/frameworks/support/design/src/android/support/design/widget/ |
ViewOffsetBehavior.java | 40 public boolean onLayoutChild(CoordinatorLayout parent, V child, int layoutDirection) { 42 layoutChild(parent, child, layoutDirection); 61 protected void layoutChild(CoordinatorLayout parent, V child, int layoutDirection) { 62 // Let the parent lay it out by default 63 parent.onLayoutChild(child, layoutDirection);
|
/frameworks/support/transition/ics/android/support/transition/ |
ViewOverlay.java | 48 View parent = view; local 49 while (parent != null) { 50 if (parent.getId() == R.id.content && parent instanceof ViewGroup) { 51 return (ViewGroup) parent; 53 if (parent.getParent() instanceof ViewGroup) { 54 parent = (ViewGroup) parent.getParent(); 133 * parent hierarchy.</p> 211 ViewGroup parent = (ViewGroup) child.getParent() local 267 ViewGroup parent = (ViewGroup) getParent(); local 298 ViewGroup parent = (ViewGroup) getParent(); local [all...] |
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
OnChildViewHolderSelectedListener.java | 30 * @param parent The RecyclerView where the selection happened. 38 public void onChildViewHolderSelected(RecyclerView parent, RecyclerView.ViewHolder child,
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/ |
viddec_mp4_visualobject.c | 24 static mp4_Status_t mp4_Parse_video_signal_type(void *parent, mp4_VideoSignalType_t *vidSignal) 38 getbits = viddec_pm_get_bits(parent, &data, 1); 43 getbits = viddec_pm_get_bits(parent, &data, 5); 51 getbits = viddec_pm_get_bits(parent, &data, 24); 94 mp4_Status_t mp4_Parse_VisualSequence(void *parent, viddec_mp4_parser_t *parser) 100 getbits = viddec_pm_get_bits(parent, &data, 8); 137 mp4_Status_t mp4_Parse_VisualObject(void *parent, viddec_mp4_parser_t *parser) 147 getbits = viddec_pm_get_bits(parent, &data, 1); 154 viddec_pm_get_bits(parent, &data, 7); 169 getbits = viddec_pm_get_bits(parent, &data, 4) [all...] |
/libcore/ojluni/src/main/java/java/util/ |
ListResourceBundle.java | 134 * this <code>ResourceBundle</code> and its parent bundles. 137 * this <code>ResourceBundle</code> and its parent bundles. 146 ResourceBundle parent = this.parent; local 148 (parent != null) ? parent.getKeys() : null);
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/ |
ScrollAdapterBase.java | 43 public abstract View getScrapView(ViewGroup parent);
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/ |
Body.java | 34 * Gets the parent of this body. 36 * @return the parent. 41 * Sets the parent of this body. 43 * @param parent the parent. 45 void setParent(Entity parent);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
XmlParseUtils.java | 40 public IllegalStartTag(final XmlPullParser parser, final String tag, final String parent) { 41 super("Illegal start tag " + tag + " in " + parent, parser); 47 public IllegalEndTag(final XmlPullParser parser, final String tag, final String parent) { 48 super("Illegal end tag " + tag + " in " + parent, parser);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/ |
ListValueCellEditor.java | 35 public ListValueCellEditor(Composite parent) { 36 super(parent, new String[0], SWT.DROP_DOWN); 40 protected Control createControl(Composite parent) { 41 mCombo = (CCombo) super.createControl(parent);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/ |
IGLProperty.java | 50 * Get the parent property that holds this property. 51 * @return null if this property is at the top level, parent otherwise 55 /** Set the parent property that holds this property. */ 56 void setParent(IGLProperty parent);
|
/system/core/libnativeloader/ |
dlext_namespaces.h | 87 android_namespace_t* parent);
|
/toolchain/binutils/binutils-2.25/gprof/ |
alpha.c | 93 alpha_find_call (Sym *parent, bfd_vma p_lowpc, bfd_vma p_highpc) 108 parent->name, (unsigned long) p_lowpc, 121 * for any indirect jump we simply add an arc from PARENT 133 arc_add (parent, &indirect_child, (unsigned long) 0); 161 arc_add (parent, child, (unsigned long) 0);
|
mips.c | 42 mips_find_call (Sym *parent, bfd_vma p_lowpc, bfd_vma p_highpc) 60 parent->name, (unsigned long) p_lowpc, 87 arc_add (parent, child, (unsigned long) 0); 100 arc_add (parent, &indirect_child, (unsigned long) 0);
|
/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...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
DefaultSoftKeyboardJAJP.java | 328 @Override protected void createKeyboards(OpenWnn parent) { 336 createKeyboardsPortrait(parent); 338 createKeyboardsLandscape(parent); 446 @Override public View initView(OpenWnn parent, int width, int height) { 448 View view = super.initView(parent, width, height); [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeIterator.cs | 114 object parent = adaptor.GetParent(tree); 116 while (parent != null && 117 adaptor.GetChildIndex(tree) + 1 >= adaptor.GetChildCount(parent)) { 119 tree = parent; 120 parent = adaptor.GetParent(tree); 124 if (parent == null) { 132 tree = adaptor.GetChild(parent, nextSiblingIndex);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
TreeIterator.cs | 135 object parent = adaptor.GetParent( tree ); 137 while ( parent != null && 138 adaptor.GetChildIndex( tree ) + 1 >= adaptor.GetChildCount( parent ) ) 141 tree = parent; 142 parent = adaptor.GetParent( tree ); 146 if ( parent == null ) 157 tree = adaptor.GetChild( parent, nextSiblingIndex );
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
TreeIterator.java | 107 Object parent = adaptor.getParent(tree); local 109 while ( parent!=null && 110 adaptor.getChildIndex(tree)+1 >= adaptor.getChildCount(parent) ) 113 tree = parent; 114 parent = adaptor.getParent(tree); 117 if ( parent==null ) { 126 tree = adaptor.getChild(parent, nextSiblingIndex);
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
list_monitored_tests_test.py | 29 bot = graph_data.Bot(id='TheBot', parent=master).put() 30 suite1 = graph_data.Test(id='Suite1', parent=bot).put() 31 suite2 = graph_data.Test(id='Suite2', parent=bot).put() 32 graph_data.Test(id='aaa', parent=suite1, has_rows=True).put() 33 graph_data.Test(id='bbb', parent=suite1, has_rows=True).put() 34 graph_data.Test(id='ccc', parent=suite2, has_rows=True).put() 35 graph_data.Test(id='ddd', parent=suite2, has_rows=True).put()
|
/external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/ |
stubout.py | 114 def Set(self, parent, child_name, new_child): 117 Replace definiion in the context of the given parent. The parent could 118 be a module when the child is a function at module scope. Or the parent 124 classmethod of parent. 126 old_child = getattr(parent, child_name) 128 old_attribute = parent.__dict__.get(child_name) 135 self.cache.append((parent, old_child, child_name)) 136 setattr(parent, child_name, new_child) 150 for (parent, old_child, child_name) in self.cache [all...] |
/external/chromium-trace/catapult/third_party/mox3/mox3/ |
stubout.py | 114 def Set(self, parent, child_name, new_child): 117 Replace definiion in the context of the given parent. The parent could 118 be a module when the child is a function at module scope. Or the parent 124 classmethod of parent. 126 old_child = getattr(parent, child_name) 128 old_attribute = parent.__dict__.get(child_name) 135 self.cache.append((parent, old_child, child_name)) 136 setattr(parent, child_name, new_child) 150 for (parent, old_child, child_name) in self.cache [all...] |
/external/protobuf/python/ |
stubout.py | 109 def Set(self, parent, child_name, new_child): 111 of the given parent. The parent could be a module when the child is a 112 function at module scope. Or the parent could be a class when a class' 117 classmethod of parent. 119 old_child = getattr(parent, child_name) 121 old_attribute = parent.__dict__.get(child_name) 125 self.cache.append((parent, old_child, child_name)) 126 setattr(parent, child_name, new_child) 138 for (parent, old_child, child_name) in self.cache [all...] |