/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();
|
/external/grub/util/ |
grub-set-default | 36 --root-directory=DIR Use the directory DIR instead of the root directory 53 --root-directory=*) 54 rootdir=`echo "$option" | sed 's/--root-directory=//'` ;;
|
grub-set-default.in | 36 --root-directory=DIR Use the directory DIR instead of the root directory 53 --root-directory=*) 54 rootdir=`echo "$option" | sed 's/--root-directory=//'` ;;
|
/external/qemu/android/ |
config.c | 34 _aconfig_find(AConfig *root, const char *name, int create) 38 for(node = root->first_child; node; node = node->next) { 47 if(root->last_child) { 48 root->last_child->next = node; 50 root->first_child = node; 52 root->last_child = node; 59 aconfig_find(AConfig *root, const char *name) 61 return _aconfig_find(root, name, 0); 65 aconfig_bool(AConfig *root, const char *name, int _default) 67 AConfig *n = _aconfig_find(root, name, 0) [all...] |
/development/tools/line_endings/ |
line_endings.c | 62 Node* root = malloc(sizeof(Node)); local 63 Node* node = root; 93 while (root) { 94 ssize_t amt2 = strlen(root->buf); 96 ssize_t amt = write(fd, root->buf, amt2); 102 node = root; 103 root = root->next;
|
/external/webkit/WebCore/editing/ |
RemoveFormatCommand.cpp | 56 // Get the default style for this editable root, it's the style that we'll give the 58 Node* root = frame->selection()->rootEditableElement(); local 59 RefPtr<CSSMutableStyleDeclaration> defaultStyle = editingStyleAtPosition(Position(root, 0));
|
/frameworks/base/tools/preload/ |
PrintPsTree.java | 38 Root root = (Root) oin.readObject(); local 40 for (Proc proc : root.processes.values()) {
|
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...] |
Compile.java | 39 Root root = new Root(); local 62 root.indexProcess(record); 66 root.indexClassOperation(record); 71 root.toFile(args[1]);
|
/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...] |
/external/e2fsprogs/lib/ext2fs/ |
namei.c | 23 static errcode_t open_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t base, 27 static errcode_t follow_link(ext2_filsys fs, ext2_ino_t root, ext2_ino_t dir, 37 printf("follow_link: root=%lu, dir=%lu, inode=%lu, lc=%d\n", 38 root, dir, inode, link_count); 62 retval = open_namei(fs, root, dir, pathname, ei.i_size, 1, 71 * directory and the root directory, and returns the inode of the 75 static errcode_t dir_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t dir, 88 dir = root; 103 retval = follow_link (fs, root, dir, inode, 113 static errcode_t open_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t base [all...] |
/external/zlib/examples/ |
enough.c | 12 As inflate does, decrease root for short codes 13 Refuse cases where inflate would increase root 14 1.3 17 Feb 2008 Add argument for initial root table size 15 Fix bug for initial root table size == max - 1 41 speed. There is a single first-level table to decode codes up to root bits 42 in length (root == 9 in the current inflate implementation). The table 43 has 1 << root entries and is indexed by the next root bits of input. Codes 44 shorter than root bits have replicated table entries, so that the correct 46 the code is longer than root bits, then the table entry points to a second 168 local int root; \/* size of base code table in bits *\/ variable [all...] |
/external/chromium/third_party/icu/source/test/cintltst/ |
eurocreg.c | 12 void addTestEuroRegression(TestNode** root); 15 void addTestEuroRegression(TestNode** root) 17 addTest(root, &TestEuroRegression, "tsconv/eurocreg/TestEuroRegression"); 184 void addTestEuroRegression(TestNode** root)
|
/external/icu4c/test/cintltst/ |
eurocreg.c | 12 void addTestEuroRegression(TestNode** root); 15 void addTestEuroRegression(TestNode** root) 17 addTest(root, &TestEuroRegression, "tsconv/eurocreg/TestEuroRegression"); 184 void addTestEuroRegression(TestNode** root)
|
/external/iproute2/testsuite/tests/ |
dsmark.t | 12 ts_tc "dsmark" "dsmark root qdisc creation" \ 13 qdisc add dev $DEV root handle 10:0 \ 31 qdisc del dev $DEV root
|
/external/qemu/proxy/ |
proxy_http_int.h | 20 ProxyService root[1]; member in struct:HttpService
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
normalize01.java | 71 Element root; local 78 root = doc.getDocumentElement(); 79 root.normalize(); 80 elementList = root.getElementsByTagName("name");
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
Normalize.java | 88 Element root; local 95 root = doc.getDocumentElement(); 96 root.normalize(); 97 elementList = root.getElementsByTagName("name");
|
/sdk/emulator/qtools/ |
parse_options.h | 9 extern const char *root;
|
/external/webkit/WebKit/android/nav/ |
WebView.cpp | 203 CachedRoot* root = getFrameCache(AllowNewer); local 204 if (!root) 208 root->clearCursor(); 215 CachedRoot* root = getFrameCache(AllowNewer); local 216 if (!root) 220 root->hideCursor(); 236 CachedRoot* root = getFrameCache(DontAllowNewer); local 237 if (root) 238 root->mDebug.print(); 260 CachedRoot* root = getFrameCache(DontAllowNewer) local 399 CachedRoot* root = getFrameCache(AllowNewer); local 449 CachedRoot* root = getFrameCache(allowNewer); local 466 CachedRoot* root = getFrameCache(DontAllowNewer); local 663 const CachedRoot* root = getFrameCache(DontAllowNewer); local 669 const CachedRoot* root = getFrameCache(DontAllowNewer); local 682 CachedRoot* root = getFrameCache(AllowNewer); local 802 CachedRoot* root = getFrameCache(DontAllowNewer); local 823 CachedRoot* root = getFrameCache(DontAllowNewer); local 830 CachedRoot* root = getFrameCache(DontAllowNewer); local 843 CachedRoot* root = getFrameCache(AllowNewer); local 857 CachedRoot* root = getFrameCache(AllowNewer); local 904 CachedRoot* root = getFrameCache(AllowNewer); local 951 const CachedRoot* root = getFrameCache(DontAllowNewer); local 965 const CachedRoot* root = getFrameCache(DontAllowNewer); local 1004 const CachedRoot* root = getFrameCache(DontAllowNewer); local 1111 CachedRoot* root = getFrameCache(DontAllowNewer); local 1125 CachedRoot* root = getFrameCache(DontAllowNewer); local 1181 CachedRoot* root = getFrameCache(DontAllowNewer); local 1258 CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local 1269 CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local 1277 CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local 1285 CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local 1297 CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local 1310 CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local 1318 CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local 1325 CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local 1364 const CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local 1429 const LayerAndroid* root = GET_NATIVE_VIEW(env, obj)->rootLayer(); local 1461 CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local 1646 LayerAndroid* root = GET_NATIVE_VIEW(env, obj)->rootLayer(); local 1663 CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local 1770 CachedRoot* root = view->getFrameCache(WebView::AllowNewer); local 1824 CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local 1857 CachedRoot* root = view->getFrameCache(WebView::DontAllowNewer); local [all...] |
/external/webkit/WebCore/rendering/ |
RenderFrame.cpp | 73 RenderView* root = NULL; local 77 root = static_cast<RenderView*>(view->frame()->document()->renderer()); 78 if (root) { 84 if (width() > root->docWidth()) { 85 view->resize(root->docWidth(), 0); 89 setHeight(max(root->docHeight(), height())); 90 setWidth(max(root->docWidth(), width()));
|
/external/webkit/WebKitTools/Scripts/ |
run-javascriptcore-tests | 57 my $root; # intentionally left undefined 66 --root= Path to pre-built root containing jsc 71 'root=s' => \$root, 87 setConfigurationProductDir(Cwd::abs_path($root)) if (defined($root)); 89 if (!defined($root) && !$skipBuild) {
|