/ndk/build/platforms/android-4/arch-arm/usr/include/linux/ |
rbtree.h | 41 #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL)
|
/ndk/build/platforms/android-5/arch-arm/usr/include/linux/ |
rbtree.h | 41 #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL)
|
/ndk/build/platforms/android-5/arch-x86/usr/include/linux/ |
rbtree.h | 41 #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL)
|
/ndk/build/platforms/android-8/arch-arm/usr/include/linux/ |
rbtree.h | 41 #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL)
|
/ndk/build/platforms/android-8/arch-x86/usr/include/linux/ |
rbtree.h | 41 #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL)
|
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/ |
http_server.py | 53 root=None, register_cygwin=None, run_background=None): 62 self._root = root 146 # Have both port and root dir. 149 # Have only a root dir - set the ports as for LayoutTests. 153 # specified root. 167 ' server.document-root = "%s"\n' + 245 option_parser.add_option('-r', '--root', 255 print ('Usage: %s --server {start|stop} [--root=root_dir]' 258 if (options.root is None) and (options.port is not None): 259 # specifying root but not port means we want httpd on defaul [all...] |
/dalvik/libcore/xml/src/main/java/org/kxml2/kdom/ |
Document.java | 27 /** The document consists of some legacy events and a single root 61 an exception when a second root element is added */ 66 // throw new RuntimeException("Only one document root element allowed"); 106 /** returns the root element of this document. */ 110 throw new RuntimeException("Document has no root element!");
|
/external/v8/test/cctest/ |
testcfg.py | 75 def __init__(self, context, root): 76 super(CcTestConfiguration, self).__init__(context, root) 102 status_file = join(self.root, 'cctest.status') 107 def GetConfiguration(context, root): 108 return CcTestConfiguration(context, root)
|
/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();
|
/packages/apps/Mms/src/com/android/mms/dom/ |
NodeListImpl.java | 38 * children of a root node with a given tag name. 39 * @param rootNode The root <code>Node</code> of the search. 94 * <li> Visit root. 98 * @param The root of preorder traversal 103 // Visit the root of this iteration otherwise.
|
/external/webkit/WebCore/rendering/ |
CounterNode.cpp | 172 // The code below handles the case when a formerly root increment counter is loosing its root position 182 // 1. if the increment counter node lost it's root position as a result of another 184 // 2. if the increment counter node lost it's root position as a result of a renderer being 240 const CounterNode* root = node; local 241 while (root->parent()) 242 root = root->parent(); 244 for (const CounterNode* current = root; current; current = current->nextInPreOrder()) { 246 for (const CounterNode* parent = current; parent && parent != root; parent = parent->parent() [all...] |
RenderReplaced.cpp | 180 int selTop = ty + m_inlineBoxWrapper->root()->selectionTop(); 181 int selBottom = ty + selTop + m_inlineBoxWrapper->root()->selectionHeight(); 237 RootInlineBox* root = box->root(); 239 int top = root->lineTop(); 240 int bottom = root->nextRootBox() ? root->nextRootBox()->lineTop() : root->lineBottom(); 286 RootInlineBox* root = m_inlineBoxWrapper->root(); [all...] |
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/icu4c/tools/ctestfw/ |
ctest.c | 50 static TestNode* addTestNode( TestNode *root, const char *name ); 62 static void iterateTestsWithLevel( const TestNode *root, int len, 162 addTest(TestNode** root, 169 if (*root == NULL) 170 *root = createTestNode("", 0); 172 newNode = addTestNode( *root, name ); 180 static TestNode *addTestNode ( TestNode *root, const char *name ) 190 curNode = root; 250 static void iterateTestsWithLevel ( const TestNode* root, 261 if ( root == NULL [all...] |
/dalvik/libcore/xml/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...] |
/external/qemu/android/skin/ |
file.c | 297 skin_part_create_from_v1( AConfig* root, const char* basepath ) 304 part->name = root->name; 306 node = aconfig_find(root, "background"); 310 node = aconfig_find(root, "display"); 314 node = aconfig_find(root, "button"); 348 skin_part_create_from_v2( AConfig* root, const char* basepath ) 355 part->name = root->name; 357 node = aconfig_find(root, "background"); 361 node = aconfig_find(root, "display"); 365 node = aconfig_find(root, "buttons") [all...] |
/dalvik/libcore/xml/src/test/java/tests/xml/ |
NormalizeTest.java | 404 Element root = document.createElement("foo"); local 405 document.appendChild(root); 406 root.appendChild(document.createComment("ABC -- DEF")); 424 Element root = document.createElement("foo"); local 425 document.appendChild(root); 426 root.appendChild(document.createCDATASection("ABC]]>DEF]]>GHI")); 429 assertChildren(root, "<![CDATA[ABC]]]]>", "<![CDATA[>DEF]]]]>", "<![CDATA[>GHI]]>"); 437 Element root = document.createElement("foo"); local 438 document.appendChild(root); 439 root.appendChild(document.createCDATASection("ABC]]>DEF")) 449 Element root = document.createElement("foo"); local 470 Element root = document.createElement("foo"); local 491 Element root = document.createElement("foo"); local 510 Element root = document.createElement("foo"); local 531 Element root = document.createElement("foo"); local 559 Element root = result.createElement("foo"); local [all...] |
/dalvik/hit/src/com/android/hit/ |
HprofParser.java | 359 RootObj root = new RootObj(RootType.NATIVE_LOCAL, id, local 362 root.setHeap(mState.mCurrentHeap); 363 mState.addRoot(root); 375 RootObj root = new RootObj(RootType.JAVA_LOCAL, id, threadSerialNumber, local 378 root.setHeap(mState.mCurrentHeap); 379 mState.addRoot(root); 389 RootObj root = new RootObj(RootType.NATIVE_STACK, id, local 392 root.setHeap(mState.mCurrentHeap); 393 mState.addRoot(root); 400 RootObj root = new RootObj(type, id) local 413 RootObj root = new RootObj(RootType.THREAD_BLOCK, id, local 580 RootObj root = new RootObj(RootType.NATIVE_MONITOR, id, local [all...] |
/development/ide/emacs/ |
android-host.el | 33 ;; C-x a a android-adb-root 56 (define-key map (kbd "a") 'android-adb-root) 73 (defun android-adb-root () 74 "Execute 'adb root'." 76 (android-adb-command "root")) 86 ;; Always force root and remount, this way sync always works even on 88 (android-adb-root)
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
PreferencesFromCode.java | 42 // Root 43 PreferenceScreen root = getPreferenceManager().createPreferenceScreen(this); local 48 root.addPreference(inlinePrefCat); 60 root.addPreference(dialogBasedPrefCat); 83 root.addPreference(launchPrefCat); 120 root.addPreference(prefAttrsCat); 141 return root;
|
/external/icu4c/test/cintltst/ |
cjaptst.c | 106 void addKannaCollTest(TestNode** root) 108 addTest(root, &TestTertiary, "tscoll/cjacoll/TestTertiary"); 109 addTest(root, &TestBase, "tscoll/cjacoll/TestBase"); 110 addTest(root, &TestPlainDakutenHandakuten, "tscoll/cjacoll/TestPlainDakutenHandakuten"); 111 addTest(root, &TestSmallLarge, "tscoll/cjacoll/TestSmallLarge"); 112 addTest(root, &TestKatakanaHiragana, "tscoll/cjacoll/TestKatakanaHiragana"); 113 addTest(root, &TestChooonKigoo, "tscoll/cjacoll/TestChooonKigoo");
|
crestst.c | 76 { "root", U_ZERO_ERROR, e_Root, { TRUE, FALSE, FALSE }, { TRUE, FALSE, FALSE } }, 92 void addResourceBundleTest(TestNode** root); 94 void addResourceBundleTest(TestNode** root) 96 addTest(root, &TestConstruction1, "tsutil/crestst/TestConstruction1"); 97 addTest(root, &TestOpenDirect, "tsutil/crestst/TestOpenDirect"); 98 addTest(root, &TestResourceBundles, "tsutil/crestst/TestResourceBundles"); 99 addTest(root, &TestTable32, "tsutil/crestst/TestTable32"); 100 addTest(root, &TestFallback, "tsutil/crestst/TestFallback"); 101 addTest(root, &TestAliasConflict, "tsutil/crestst/TestAliasConflict"); 102 addTest(root, &TestFileStream, "tsutil/crestst/TestFileStream") [all...] |
/external/opencore/oscl/oscl/osclbase/src/ |
oscl_tree.h | 316 OSCL_IMPORT_REF void rotate_left(base_link_type x, base_link_type& root); 317 OSCL_IMPORT_REF void rotate_right(base_link_type x, base_link_type& root); 318 OSCL_IMPORT_REF void rebalance(base_link_type x, base_link_type& root); 320 base_link_type& root, 360 root() = 0; 368 if (x.root() == 0) 372 root() = 0; 376 root() = copy(x.root(), header); 377 leftmost() = minimum(root()); 694 link_type& root() const function in class:Oscl_Rb_Tree [all...] |
/external/webkit/WebKitTools/Scripts/ |
run-sunspider | 39 my $root; 57 --root Path to root tools build 69 GetOptions('root=s' => sub { my ($x, $value) = @_; $root = $value; setConfigurationProductDir(Cwd::abs_path($root)); }, 89 if (!defined($root)){
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/ |
MenuEditor.java | 46 /** Root node of the UI element hierarchy */ 57 * Returns the root node of the UI element hierarchy, which here is 107 * Processes the new XML Model, which XML root node is given. 113 // init the ui root on demand 125 // Create the root element if it doesn't exist yet (for empty new documents) 143 * Creates the initial UI Root Node, including the known mandatory elements. 148 // The root UI node is always created, even if there's no corresponding XML node.
|