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

<<31323334353637383940>>

  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
CustomVCardEntryConstructor.java 35 * The method called when one vCard entry is created. Children come before their parent in
120 CustomVCardEntry parent = mEntryStack.get(size - 2); local
121 parent.addChild(mCurrentEntry);
122 mCurrentEntry = parent;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
DefaultSuggestionViewFactory.java 65 View convertView, ViewGroup parent) {
68 return factory.getView(suggestion, userQuery, convertView, parent);
71 return mDefaultFactory.getView(suggestion, userQuery, convertView, parent);
  /packages/apps/Settings/src/com/android/settings/applications/
LayoutPreference.java 75 ViewGroup parent = (ViewGroup) mRootView.getParent(); local
76 if (parent != null) {
77 parent.removeView(mRootView);
  /packages/apps/TV/src/com/android/tv/guide/
TimeListAdapter.java 88 public TimeViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
89 View itemView = LayoutInflater.from(parent.getContext()).inflate(viewType, parent, false);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ViewUtils.java 83 final ViewParent parent = view.getParent(); local
84 if (accessibilityManager.isEnabled() && parent != null) {
90 parent.requestSendAccessibilityEvent(view, event);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
SimpleNode.java 6 protected Node parent; field in class:SimpleNode
26 public void jjtSetParent(Node n) { parent = n; }
27 public Node jjtGetParent() { return parent; }
  /packages/services/Telephony/src/org/apache/james/mime4j/field/address/parser/
SimpleNode.java 6 protected Node parent; field in class:SimpleNode
26 public void jjtSetParent(Node n) { parent = n; }
27 public Node jjtGetParent() { return parent; }
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_has_key.py 75 if (node.parent.type == syms.not_test and
76 self.pattern.match(node.parent)):
78 # pattern when its parent matches the second alternative
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_has_key.py 75 if (node.parent.type == syms.not_test and
76 self.pattern.match(node.parent)):
78 # pattern when its parent matches the second alternative
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_has_key.py 75 if (node.parent.type == syms.not_test and
76 self.pattern.match(node.parent)):
78 # pattern when its parent matches the second alternative
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_has_key.py 75 if (node.parent.type == syms.not_test and
76 self.pattern.match(node.parent)):
78 # pattern when its parent matches the second alternative
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SubmenuAction.java 38 public Menu getMenu(Control parent) {
43 public Menu getMenu(Menu parent) {
44 mMenu = new Menu(parent);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
BuildPreferencePage.java 216 public ReadOnlyFieldEditor(String name, String labelText, Composite parent) {
217 super(name, labelText, parent);
221 protected void createControl(Composite parent) {
222 super.createControl(parent);
235 public LabelField(String labelText, String value, Composite parent) {
236 super("", labelText, parent);
241 protected void createControl(Composite parent) {
242 super.createControl(parent);
274 public KeystoreFieldEditor(String name, String label, Composite parent) {
275 super(name, label, parent);
    [all...]
  /system/media/camera/docs/
metadata_model.py 47 parent: An edge to a parent Node.
57 def parent(self): member in class:Node
126 parent = self.parent
128 while parent is not None:
129 if pred(parent):
130 yield parent
131 parent = parent.paren
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
CharacterPickerDialogTest.java 64 final Gallery parent = new Gallery(mActivity); local
77 replacePickerDialog.onItemClick(parent, view, 0, 0);
86 replacePickerDialog.onItemClick(parent, view, 2, 0);
99 insertPickerDialog.onItemClick(parent, view, 2, 0);
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskBackService.java 87 // Grab the parent of the view that fired the event.
93 // Using this parent, get references to both child nodes, the label and the checkbox.
146 AccessibilityNodeInfo parent = current.getParent(); local
147 if (parent == null) {
150 if (TASK_LIST_VIEW_CLASS_NAME.equals(parent.getClassName())) {
155 current = parent;
  /development/samples/Home/src/com/example/android/home/
Wallpaper.java 79 public void onItemSelected(AdapterView parent, View v, int position, long id) {
83 public void onItemClick(AdapterView parent, View v, int position, long id) {
107 public void onNothingSelected(AdapterView parent) {
136 public View getView(final int position, View convertView, ViewGroup parent) {
  /development/testrunner/
make_tree.py 27 def __init__(self, name, parent):
31 self._parent = parent
33 if parent:
34 self._path = os.path.join(parent._GetPath(), name)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeNodeStream.cs 119 * Replace from start to stop child index of parent with t, which might
128 * If parent is null, don't do anything; must be at root of overall tree.
129 * Can't replace whatever points to the parent externally. Do nothing.
132 void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeNodeStream.cs 126 * Replace from start to stop child index of parent with t, which might
135 * If parent is null, don't do anything; must be at root of overall tree.
136 * Can't replace whatever points to the parent externally. Do nothing.
139 void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeNodeStream`1.cs 125 * Replace from start to stop child index of parent with t, which might
134 * If parent is null, don't do anything; must be at root of overall tree.
135 * Can't replace whatever points to the parent externally. Do nothing.
138 void ReplaceChildren(T parent, int startChildIndex, int stopChildIndex, T t);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeNodeStream.java 95 /** Replace from start to stop child index of parent with t, which might
102 * If parent is null, don't do anything; must be at root of overall tree.
103 * Can't replace whatever points to the parent externally. Do nothing.
105 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t);
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
SecuritySupport12.java 75 ClassLoader parent = null;
77 parent = cl.getParent();
81 // ClassLoader returning itself as a parent
82 return (parent == cl) ? null : parent;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
SecuritySupport12.java 75 ClassLoader parent = null;
77 parent = cl.getParent();
81 // ClassLoader returning itself as a parent
82 return (parent == cl) ? null : parent;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
SecuritySupport12.java 75 ClassLoader parent = null;
77 parent = cl.getParent();
81 // ClassLoader returning itself as a parent
82 return (parent == cl) ? null : parent;

Completed in 1036 milliseconds

<<31323334353637383940>>