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

12 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/xml/
XSLImportRule.cpp 81 StyleBase* root = this; local
83 while ((parent = root->parent()))
84 root = parent;
85 if (root->isXSLStyleSheet())
86 docLoader = static_cast<XSLStyleSheet*>(root)->docLoader();
  /frameworks/base/tools/preload/
Compile.java 39 Root root = new Root(); local
62 root.indexProcess(record);
66 root.indexClassOperation(record);
71 root.toFile(args[1]);
PrintHtmlDiff.java 36 Root root = Root.fromFile(args[0]); local
43 for (Proc proc : root.processes.values()) {
55 for (LoadedClass loadedClass : root.loadedClasses.values()) {
64 LoadedClass clazz = root.loadedClasses.get(line);
81 printTable(out, root.baseline, added);
83 printTable(out, root.baseline, removed);
WritePreloadedClassFile.java 49 Root root = Root.fromFile(rootFile); local
52 for (LoadedClass loadedClass : root.loadedClasses.values()) {
80 for (LoadedClass loadedClass : root.loadedClasses.values()) {
98 for (Proc proc : root.processes.values()) {
118 addAllClassesFrom("zygote", root, toPreload);
130 root.toFile(rootFile);
133 private static void addAllClassesFrom(String processName, Root root,
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentgetrootnode.java 32 * to the child node that is the root element of the document.
64 Element root; local
67 root = doc.getDocumentElement();
68 rootName = root.getNodeName();
elementgettagname.java 35 * root node. The value returned should be "staff".
64 Element root; local
67 root = doc.getDocumentElement();
68 tagname = root.getTagName();
hc_documentgetrootnode.java 60 Element root; local
63 root = doc.getDocumentElement();
64 rootName = root.getNodeName();
hc_elementgettagname.java 32 * root node. The value returned should be "html" or "svg".
60 Element root; local
63 root = doc.getDocumentElement();
64 tagname = root.getTagName();
  /libcore/luni/src/main/java/org/apache/xalan/templates/
WhiteSpaceInfo.java 82 public void recompose(StylesheetRoot root)
84 root.recomposeWhiteSpaceInfo(this);
  /packages/apps/Camera/src/com/android/camera/ui/
RawTexture.java 51 public void drawBack(GLRootView root, int x, int y, int w, int h) {
52 root.drawTexture(this, x, y, w, h, 1f);
NinePatchTexture.java 60 public void draw(GLRootView root, int x, int y, int w, int h) {
61 root.drawNinePatch(this, x, y, w, h);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
ViewsTreeModel.java 26 private final ViewNode root; field in class:ViewsTreeModel
28 public ViewsTreeModel(ViewNode root) {
29 this.root = root;
33 return root;
  /cts/tests/tests/sax/src/android/sax/cts/
ElementTest.java 125 RootElement root = new RootElement(ATOM_NAMESPACE, FEED); local
126 assertNotNull(root);
127 Element name = root.getChild(ATOM_NAMESPACE, NAME);
135 Element entry1 = root.getChild(ATOM_NAMESPACE, ENTRY1);
147 Element entry2 = root.requireChild(ATOM_NAMESPACE, ENTRY2);
175 xmlReader.setContentHandler(root.getContentHandler());
  /bootable/recovery/updater/
updater.c 97 Expr* root; local
100 int error = yyparse(&root, &error_count);
118 char* result = Evaluate(&state, root);
  /external/chromium/base/json/
json_reader_unittest.cc 15 scoped_ptr<Value> root; local
16 root.reset(JSONReader().JsonToValue(" null ", false, false));
17 ASSERT_TRUE(root.get());
18 ASSERT_TRUE(root->IsType(Value::TYPE_NULL));
21 root.reset(JSONReader().JsonToValue("nu", false, false));
22 ASSERT_FALSE(root.get());
25 root.reset(JSONReader().JsonToValue("true ", false, false));
26 ASSERT_TRUE(root.get());
27 ASSERT_TRUE(root->IsType(Value::TYPE_BOOLEAN));
30 root.reset(JSONReader().JsonToValue("/* comment */null", false, false))
471 scoped_ptr<Value> root; local
    [all...]
  /external/webkit/WebCore/bindings/js/
JSNodeCustom.cpp 152 // Find the the root, and the highest ancestor with a wrapper.
153 Node* root = node; local
156 root = current;
162 // case, the root of the detached subtree has a wrapper, so the tree will only
171 for (Node* nodeToMark = root; nodeToMark; nodeToMark = nodeToMark->traverseNextNode())
  /external/webkit/WebCore/editing/
EditCommand.cpp 165 Element* root = s.rootEditableElement(); local
168 cmd->m_startingRootEditableElement = root;
176 Element* root = s.rootEditableElement(); local
179 cmd->m_endingRootEditableElement = root;
FormatBlockCommand.cpp 113 Node* root = endingSelection().start().node()->rootEditableElement(); local
116 refNode != root && !root->isDescendantOf(refNode))
  /external/webkit/WebCore/platform/
Widget.cpp 56 ScrollView* Widget::root() const function in class:WebCore::Widget
  /external/webkit/WebKit/android/plugins/
ANPTypefaceInterface.cpp 73 const char* root = getenv("ANDROID_ROOT"); local
74 size_t len = strlen(root);
79 memcpy(storage, root, len);
  /external/webkit/WebKit/chromium/src/
WebAccessibilityCacheImpl.cpp 98 WebAccessibilityObject root = view->accessibilityObject(); local
99 if (root.isNull())
102 RefPtr<AccessibilityObject> rootObject = toAccessibilityObject(root);
104 // Insert root in hashmaps.
  /frameworks/base/tools/localize/
XMLHandler_test.cpp 70 XMLNode* root = NodeHandler::ParseFile("testdata/xml.xml", XMLNode::EXACT); local
71 if (root == NULL) {
74 string result = root->ToString(NO_NAMESPACES);
75 delete root;
83 XMLNode* root = NodeHandler::ParseFile("testdata/xml.xml", XMLNode::PRETTY); local
84 if (root == NULL) {
87 string result = root->ToString(NO_NAMESPACES);
88 delete root;
97 XMLNode* root = NodeHandler::ParseString("testdata/xml.xml", text, XMLNode::EXACT); local
98 if (root == NULL)
111 XMLNode* root = NodeHandler::ParseString("testdata\/xml.xml", text, XMLNode::PRETTY); local
    [all...]
  /sdk/emulator/qtools/
parse_options.cpp 10 const char *root = ""; variable
41 " -r <root> use <root> as the path for finding ELF executables\n"
107 root = optarg;
  /frameworks/base/core/java/android/view/
WindowManagerImpl.java 111 ViewRoot root; local
128 root = mRoots[index];
129 root.mAddNesting++;
132 root.setLayoutParams(wparams, true);
148 root = new ViewRoot(view.getContext());
149 root.mAddNesting = 1;
173 mRoots[index] = root;
177 root.setView(view, wparams, panelParentView);
192 ViewRoot root = mRoots[index]; local
194 root.setLayoutParams(wparams, false)
214 ViewRoot root = mRoots[index]; local
230 ViewRoot root = mRoots[index]; local
281 ViewRoot root = mRoots[i]; local
    [all...]
  /sdk/files/
android.el 9 (defvar android-jdb-project-root-history '()
26 (defcustom android-project-root nil
27 "This is where your Android project root is stored."
41 (defun android-read-project-root ()
44 (read-file-name "Android project root: "
45 android-project-root
51 (read-file-name "Android project root: "
52 android-project-root
56 (do ((entered-root (read-directory) (read-directory)))
57 ((and entered-root
    [all...]

Completed in 312 milliseconds

12 3 4 5 6 7 8 91011>>