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

1 2 3 4 5 67 8 91011>>

  /external/webkit/WebCore/editing/
VisibleSelection.cpp 475 // If the start is outside the base's editable root, cap it at the start of that root.
476 // If the start is in non-editable content that is inside the base's editable root, put it
477 // at the first editable position after start inside the base's editable root.
486 // If the end is outside the base's editable root, cap it at the end of that root.
487 // If the end is in non-editable content that is inside the base's root, put it
488 // at the last editable position before the end inside the base's root.
512 Node* root = editableRootForPosition(p); local
513 shadowAncestor = root ? root->shadowAncestorNode() : 0
541 Node* root = editableRootForPosition(p); local
    [all...]
  /external/webkit/WebCore/rendering/
RenderListItem.cpp 267 RootInlineBox* root = m_marker->inlineBoxWrapper()->root(); local
279 if (box == root)
290 if (box == root)
RenderTreeAsText.cpp 441 RenderView* root = view->frame()->contentRenderer(); local
442 if (root) {
444 RenderLayer* l = root->layer();
SVGRenderTreeAsText.cpp 325 static TextStream& operator<<(TextStream& ts, const RenderSVGRoot& root)
327 return writePositionAndStyle(ts, root);
475 void write(TextStream& ts, const RenderSVGRoot& root, int indent)
477 writeStandardPrefix(ts, root, indent);
478 ts << root << "\n"; local
479 writeChildren(ts, root, indent);
  /frameworks/base/libs/ui/
KeyCharacterMap.cpp 165 const char* root = getenv("ANDROID_ROOT"); local
174 snprintf(path, sizeof(path), "%s/usr/keychars/%s.kcm.bin", root, tmpfn);
185 snprintf(path, sizeof(path), "%s/usr/keychars/qwerty.kcm.bin", root);
  /frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
TransformTestActivity.java 52 LinearLayout root = new LinearLayout(this); local
53 root.setOrientation(LinearLayout.VERTICAL);
60 root.addView(view);
61 setContentView(root);
  /frameworks/base/tools/aapt/
XMLNode.cpp 516 sp<XMLNode> root = XMLNode::parse(file); local
517 if (root == NULL) {
520 root->removeWhitespace(stripAll, cDataTags);
523 NOISY(root->print());
525 status_t err = root->flatten(rsc, !keepComments, false);
579 if (state.root == NULL) {
583 return state.root;
    [all...]
  /frameworks/base/tools/preload/
MemoryUsage.java 289 Root root = Root.fromFile(args[0]); local
290 root.baseline = baseline();
291 for (LoadedClass loadedClass : root.loadedClasses.values()) {
296 root.toFile(args[0]);
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemTemplate.java 144 * Get the root stylesheet.
146 * @return The root stylesheet for this element
406 * @param root The root stylesheet for this transformation.
408 public void recompose(StylesheetRoot root)
410 root.recomposeTemplates(this);
ElemVariable.java 346 // it was already added by stylesheet root.
450 * @param root The root stylesheet for this transformation.
452 public void recompose(StylesheetRoot root)
454 root.recomposeVariables(this);
OutputProperties.java 538 * @param root non-null reference to the stylesheet root object.
540 public void recompose(StylesheetRoot root)
543 root.recomposeOutput(this);
StylesheetComposed.java 187 StylesheetRoot root = getStylesheetRoot(); local
188 int globalImportCount = root.getGlobalImportCount();
228 StylesheetRoot root = getStylesheetRoot(); local
234 return root.getGlobalImport(1 + m_importNumber + i);
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseTraversers.java 178 case Axis.ROOT :
339 * @param axisRoot The root identity of the axis.
364 // If the parent occured before the subtree root, then
369 // Otherwise, it could be a descendant below the subtree root
370 // children, or it could be after the subtree root. So we have
371 // to climb up until the parent is less than the subtree root, in
373 // root, in which case we continue to look.
422 * of origin for the traversal -- its "root node" or starting point.
517 * node that occurs after the axis root.
519 * @param axisRoot The root identity of the axis
1566 int root=getDocumentRoot(context); local
1667 int root = first(context); local
1738 int root = getDocumentRoot(context); local
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/axes/
OneStepIterator.java 206 int root = getRoot(); local
207 xctxt.pushCurrentNode(root);
208 clone.setRoot(root, xctxt);
268 int root = getRoot(); local
269 xctxt.pushCurrentNode(root);
270 clone.setRoot(root, xctxt);
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
DocumentBuilderTest.java 625 Element root = (Element)d.getElementsByTagName("a").item(0); local
626 assertEquals("foo", ((EntityReference)root.getFirstChild()).getNodeName());
710 Element root = (Element)d.getElementsByTagName("a").item(0); local
711 assertEquals("bar", ((Text)root.getFirstChild()).getData());
724 root = (Element)d.getElementsByTagName("a").item(0);
725 assertEquals("foo", ((EntityReference)root.getFirstChild()).getNodeName());
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppReceiveFileInfo.java 114 String root = Environment.getExternalStorageDirectory().getPath(); local
115 base = new File(root + Constants.DEFAULT_STORE_SUBDIR);
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertFile.java 104 File root = Environment.getExternalStorageDirectory(); local
106 File download = new File(root, DOWNLOAD_DIR);
112 File[] files = root.listFiles(this);
  /packages/apps/Phone/src/com/android/phone/sip/
SipProfileDb.java 109 File root = new File(mProfilesDirectory); local
110 String[] dirs = root.list();
113 File f = new File(new File(root, dir), PROFILE_OBJ_FILE);
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
MagicSmokeSelector.java 191 final View root = view.getRootView(); local
194 true, root.getWidth(), root.getHeight());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ResourceManagerBuilder.java 175 IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot(); local
177 IResource member = root.findMember(path);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlinePage2.java 75 * RootWrapper is a workaround: we can't set the input of the treeview to its root
138 * Invoked by {@link LayoutCanvas} to set the model (aka the root view info).
140 * @param rootViewInfo The root of the view info hierarchy. Can be null.
204 * In theory, the root of the model should be the input of the {@link TreeViewer},
205 * which would be the root {@link CanvasViewInfo}.
207 * its own input as the single root node.
213 * The solution is to wrap the tree viewer input in a dummy root node that acts
219 public void setRoot(CanvasViewInfo root) {
220 mRoot = root;
236 CanvasViewInfo root = ((RootWrapper)element).getRoot() local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectClassLoader.java 57 IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot(); local
59 IResource outRes = root.findMember(outputLocation);
104 * Returns the File matching the a certain path from a root {@link File}.
107 * @param parent the root of the file.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileWizard.java 153 String root = mMainPage.getRootElement(); local
154 if (root == null) {
156 AdtPlugin.log(IStatus.ERROR, "Failed to create %1$s: missing root element", //$NON-NLS-1$
163 sb.append('<').append(root);
175 sb.append("</").append(root).append(">\n"); //$NON-NLS-1$ //$NON-NLS-2$
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyLoader.java 136 private static void updateIndices(ViewNode root) {
137 if (root == null) return;
139 root.computeIndex();
141 for (ViewNode node : root.children) {
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
LayoutRenderer.java 78 ViewNode root = scene.getRoot(); local
79 if (root == null) {
83 int x = (getWidth() - insets.left - insets.right - root.width) / 2;
84 int y = (getHeight() - insets.top - insets.bottom - root.height) / 2;
88 g.drawRect(root.left, root.top, root.width - 1, root.height - 1);
89 g.clipRect(root.left - 1, root.top - 1, root.width + 1, root.height + 1)
139 ViewNode root = scene.getRoot(); local
    [all...]

Completed in 245 milliseconds

1 2 3 4 5 67 8 91011>>