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

<<31323334353637383940>>

  /packages/apps/Launcher3/src/com/android/launcher3/
AppsCustomizeTabHost.java 225 // Take the visible pages and re-parent them temporarily to mAnimatorBuffer
240 // their parent was mAppsCustomizePane -- so set the scroll on mAnimationBuffer
436 ViewGroup parent = (ViewGroup) getParent(); local
437 if (parent == null) return;
440 final int count = parent.getChildCount();
443 final View child = parent.getChildAt(i);
BubbleTextView.java 273 ShortcutAndWidgetContainer parent = (ShortcutAndWidgetContainer) getParent(); local
274 if (parent != null) {
275 CellLayout layout = (CellLayout) parent.getParent();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileUtils.java 54 * <li>make a directory including parent directories
148 * creating the parent directory if it does not exist.
153 * The parent directory will be created if it does not exist.
157 * An exception is thrown if the parent directory cannot be created.
163 * @throws IOException if a parent directory needs creating but that fails
175 File parent = file.getParentFile(); local
176 if (parent != null && parent.exists() == false) {
177 if (parent.mkdirs() == false) {
216 * creates parent directories if they do not exist.
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java 240 * Returns a map of all enum and flag constants sorted by parent attribute name.
294 Node parentNode = node.getAttributes().getNamedItem("parent"); //$NON-NLS-1$
324 // If we have any unknown parent, re-create synthetic styleable for them.
327 String parent = entry.getValue(); local
330 if (parent != null) {
331 style.setParents(new String[] { parent });
341 // parent. Simplify the children name.
358 * parent[.parent]* [[space|,] parent[.parent]*
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ProjectCallback.java 551 * Looks at the parent-chain of the view and if it finds a custom view, or a
566 Object parent = result.getData(); local
567 if (parent != null) {
568 return isWithinIllegalParent(parent, depth -1);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 70 * Finds the nearest common parent of the two given nodes (which could be one of the
75 * @return the nearest common parent of the two given nodes
246 * Returns the editing context at the given offset, as a pair of parent node and child
248 * its parent node, because special care has to be taken to return content element
252 * element, between the opening and closing tags, then the foo element is the parent,
256 * bracket) then the child node will be the element and whatever parent (element or
257 * document) will be its parent.
259 * If the node is in a text node, then the text node will be the child and its parent
260 * element or document node its parent.
269 * @return a pair of parent and child elements, where either the parent or the chil
583 Node parent = elements.get(0).getParentNode(); local
    [all...]
DynamicContextMenu.java 224 INode parent = selection.get(0).getNode().getParent(); local
225 while (parent != null) {
226 String id = parent.getStringAttr(ANDROID_URI, ATTR_ID);
232 label = parent.getFqcn();
236 mMenuManager.insertBefore(endId, new NestedParentMenu(label, parent));
237 parent = parent.getParent();
486 * available on one of the selected node's parent nodes. This will be
487 * similar to the menu content for the selected node, except the parent
493 NestedParentMenu(String title, INode parent) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RulesEngine.java 242 * @param parentNode The parent of the node selected. Never null.
399 * @return the parent node the paste was applied into
405 // and attempt to paste, this will reselect the parent of the button as the paste
406 // target. (This is a loop rather than just checking the direct parent since
409 // and delegate to its parent in turn.
410 INode parent = targetNode; local
411 while (parent instanceof NodeProxy) {
412 NodeProxy np = (NodeProxy) parent;
420 parent = parent.getParent()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoring.java 318 IContainer parent = sourceFile.getParent(); local
323 parent = mProject.getFolder(FD_RES).getFolder(FD_RES_LAYOUT);
325 IPath parentPath = parent.getProjectRelativePath();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 123 LibraryProperties(Composite parent) {
129 mTop = new Composite(parent, SWT.NONE);
132 mTop.setFont(parent.getFont());
161 mProjectChooser = new ProjectChooserHelper(parent.getShell(), mFilter);
355 * Adds a listener to adjust the columns width when the parent is resized.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
WelcomeWizardPage.java 61 * @param parent parent widget to add page to
65 public void createControl(Composite parent) {
66 Composite container = new Composite(parent, SWT.NULL);
239 File parent = file.getParentFile(); local
240 if (parent == null || !parent.exists()) {
241 error = "The parent directory does not exist";
242 } else if (!parent.canWrite()) {
243 error = "No write permission in parent directory"
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
ProjectContentsPage.java 82 public void createControl(Composite parent) {
83 Composite container = new Composite(parent, SWT.NULL);
360 // if the folder doesn't exist, then make sure that the parent
362 File parent = f.getParentFile(); local
363 if (!parent.exists()) {
365 String.format("Folder '%s' does not exist.", parent.getName()));
368 if (!parent.isDirectory()) {
370 String.format("'%s' is not a folder.", parent.getName()));
373 if (!parent.canWrite()) {
375 String.format("'%s' is not writeable.", parent.getName()))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLTraceOptionsDialog.java 107 Composite parent = (Composite) super.createDialogArea(shell); local
108 Composite c = new Composite(parent, SWT.BORDER);
148 protected void createButtonsForButtonBar(Composite parent) {
149 super.createButtonsForButtonBar(parent);
165 private void createSaveToField(Composite parent) {
166 Composite c = new Composite(parent, SWT.NONE);
215 private void createCaptureImageOptions(Composite parent) {
216 Composite c = new Composite(parent, SWT.NONE);
246 private Text createAppToTraceText(Composite parent, String defaultMessage) {
247 mAppPackageToTraceText = new Text(parent, SWT.BORDER)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringTestBase.java 266 File parent = to.getParentFile(); local
267 if (!parent.exists()) {
268 boolean mkdirs = parent.mkdirs();
457 " <style name=\"AppBaseTheme\" parent=\"android:Theme.Light\">\n" +
466 " <style name=\"AppTheme\" parent=\"AppBaseTheme\">\n" +
  /system/core/init/
devices.c 371 const char *parent; local
388 parent = strchr(uevent->path + pdev->path_len, '/');
389 if (!*parent)
392 if (!strncmp(parent, "/usb", 4)) {
394 while (*++parent && *parent != '/');
395 if (*parent)
396 while (*++parent && *parent != '/');
397 if (!*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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 
  /prebuilts/tools/common/m2/internal/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 64 Thread parent; field in class:ThreadTest.ResSupThread
82 // Give parent a chance to sleep
86 parent.interrupt();
104 parent = t;
460 Thread parent; field in class:ThreadTest.ChildThread1
475 parent.interrupt();
480 parent = p;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProvider.java 112 /** The parameter used to specify a bookmark parent ID in ContentValues. */
638 if (node.parent() != null) populateNodeImages(node.parent(), getFavicons, getThumbnails);
828 public BookmarkNode parent() { method in class:ChromeBrowserProvider.BookmarkNode
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 1443 final File parent = file.getParentFile (); local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Spatial.java 58 * maintains a link to a parent, it's local transforms and the world's
77 * Do whatever our parent does. If no parent, default to {@link #Dynamic}.
93 * Note that we will still get culled if our parent is culled.
104 * Do whatever our parent does. If no parent, default to {@link #Always}.
153 * Spatial's parent, or null if it has none.
155 protected transient Node parent; field in class:Spatial
217 Spatial p = parent;
224 p = p.parent;
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 1048 Element parent = new Element(parentType, defaultAttributes); local
    [all...]
  /frameworks/base/core/java/android/transition/
Transition.java 121 // Whether removing views from their parent is possible. This is only for views
155 * objects passed down from its parent (if it is in a TransitionSet).
272 * <p>This method is called by the transition's parent (all the way up to the
382 ListView parent = (ListView) view.getParent(); local
383 if (parent.getAdapter().hasStableIds()) {
384 int position = parent.getPositionForView(view);
385 long itemId = parent.getItemIdAtPosition(position);
1145 ViewGroup parent = (ViewGroup) view; local
    [all...]

Completed in 1755 milliseconds

<<31323334353637383940>>