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

<<11121314

  /external/webkit/WebCore/rendering/
RenderText.cpp 132 RootInlineBox* next = firstTextBox()->root()->nextRootBox();
333 if (firstTextBox() && point.y() < firstTextBox()->root()->lineBottom() && point.x() < firstTextBox()->m_x) {
339 if (lastTextBox() && point.y() >= lastTextBox()->root()->lineTop() && point.x() >= lastTextBox()->m_x + lastTextBox()->m_width) {
348 if (point.y() >= box->root()->lineTop()) {
349 int bottom = box->root()->nextRootBox() ? box->root()->nextRootBox()->lineTop() : box->root()->lineBottom();
392 int height = box->root()->lineBottom() - box->root()->lineTop();
393 int top = box->root()->lineTop()
855 RootInlineBox* root = curr->root(); local
    [all...]
RenderObject.cpp 2588 const WebCore::RenderObject* root = object1; local
    [all...]
  /frameworks/base/core/java/android/widget/
PopupWindow.java 1021 final View root = anchor.getRootView(); local
    [all...]
  /frameworks/base/libs/utils/
AssetManager.cpp 141 const char* root = getenv("ANDROID_ROOT"); local
142 LOG_ALWAYS_FATAL_IF(root == NULL, "ANDROID_ROOT not set");
144 String8 path(root);
879 * Pass in "" for the root dir.
942 * Pass in "" for the root dir.
    [all...]
  /frameworks/base/tools/aapt/
AaptAssets.cpp 56 static bool isHidden(const char *root, const char *path)
72 String8 subdirName(root);
98 String8 subdirName(root);
1585 String8 root, remain(filePath), partialPath; local
    [all...]
  /libcore/luni/src/main/java/java/util/
TreeMap.java 77 Node<K, V> root; field in class:TreeMap
159 map.root = root != null ? root.copy(null) : null;
190 root = null;
252 if (root == null) {
257 root = new Node<K, V>(null, key);
260 return root;
275 Node<K, V> nearest = root;
448 root = replacement
    [all...]
  /libcore/luni/src/main/java/java/util/prefs/
AbstractPreferences.java 126 //handler to this node's root node
127 private AbstractPreferences root; field in class:AbstractPreferences
140 * that the new node is a root node.
143 * this node is called "root".
152 root = null == parent ? this : parent.root;
160 userNode = root.userNode;
347 } else if (parentPref == root) {
512 return root == Preferences.userRoot();
537 return root;
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 237 ElemTemplateElement root = isGlobal ? varScope : findCommonAncestor(matchedPaths); local
240 ElemVariable var = createPseudoVarDecl(root, newIter, isGlobal);
447 StylesheetRoot root = elem.getStylesheetRoot(); local
448 Vector vars = root.getVariablesAndParamsComposed();
650 ElemTemplateElement root = isGlobal ? psuedoVarRecipient : findCommonAncestor(head); local
652 ElemVariable var = createPseudoVarDecl(root, sharedIter, isGlobal);
661 changeToVarRef(uniquePseudoVarName, owner, paths, root);
792 StylesheetRoot root = (StylesheetRoot)psuedoVarRecipient; local
793 Vector globalVars = root.getVariablesAndParamsComposed();
    [all...]
  /libcore/luni/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...]
  /packages/apps/Camera/src/com/android/camera/ui/
HeadUpDisplay.java 84 GLRootView root = getGLRootView();
85 if (root != null) {
86 synchronized (root) {
141 GLRootView root = getGLRootView(); local
142 if (root != null) {
143 synchronized (root) {
251 GLRootView root = getGLRootView(); local
252 if (root != null) {
253 synchronized (root) {
381 GLRootView root = getGLRootView() local
422 GLRootView root = getGLRootView(); local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 150 ViewGroup root = (ViewGroup) findViewById(R.id.root); local
151 getLayoutInflater().inflate(R.layout.gallerypicker_no_images, root);
  /sdk/traceview/src/com/android/traceview/
DmTraceReader.java 440 // Also set all the root pointers in each node in the call tree.
444 Call root = t.getCalltreeRoot(); local
445 root.mGlobalStartTime = t.getGlobalStartTime();
  /build/tools/droiddoc/src/
DroidDoc.java 56 public static RootDoc root; field in class:DroidDoc
117 root = r;
861 TagInfo.makeHDF(data, "root.descr",
862 Converter.convertTags(root.inlineTags(), null));
868 Converter.convertTags(root.inlineTags(), null));
914 Converter.convertClasses(root.classes()));
968 ClassInfo[] classes = PackageInfo.filterHidden(Converter.convertClasses(root.classes()));
    [all...]
  /external/chromium/third_party/icu/source/common/
triedict.cpp 93 // Start the trie off with something. Having the root node already present
265 TernaryNode *fRoot; // Root node
277 MutableTrieEnumeration(TernaryNode *root, UErrorCode &status)
279 fRoot = root;
280 fNodeStack.push(root, status);
409 uint32_t root; // Node number of the root node member in struct:CompactTrieHeader
418 uint16_t root; // Node number of the root node member in struct:CompactTrieHeaderV1
427 uint32_t root; // Node number of the root nod member in struct:CompactTrieInfo
695 const CompactTrieHorizontalNode *root = (const CompactTrieHorizontalNode *) node; local
1484 BuildCompactTrieNode *root = compactOneNode(dict.fTrie, FALSE, nodes, status, values); local
1761 TernaryNode *root = unpackHorizontalArray(fInfo, hnode, 0, nodeCount-1, local
1945 uint16_t root = ds->readUInt16(headerV1->root); local
1951 uint32_t root = ds->readUInt32(header->root); local
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
ssearch.cpp 157 UXMLElement *root = parser->parseFile(testFilePath, status); local
163 const UnicodeString *debugTestCase = root->getAttribute("debug");
172 while((testCase = root->nextChildElement(tc)) != NULL) {
359 delete root;
505 UXMLElement *root = parser->parseFile(testFilePath, status); local
511 const UnicodeString *debugTestCase = root->getAttribute("debug");
520 while((testCase = root->nextChildElement(tc)) != NULL) {
676 delete root;
    [all...]
  /external/dbus/dbus/
dbus-marshal-recursive-util.c 1680 TestTypeNode *root; local
    [all...]
  /external/freetype/src/cff/
cffgload.c 259 builder->memory = face->root.memory;
263 FT_GlyphLoader loader = glyph->root.internal->loader;
276 CFF_Internal internal = (CFF_Internal)size->root.internal;
280 builder->hints_funcs = glyph->root.internal->glyph_hints;
314 glyph->root.outline = *builder->base;
438 CFF_Internal internal = (CFF_Internal)size->root.internal;
649 if ( face->root.internal->incremental_interface )
653 face->root.internal->incremental_interface->funcs->get_glyph_data(
654 face->root.internal->incremental_interface->object,
688 if ( face->root.internal->incremental_interface
2065 FT_Fixed root = args[0]; local
    [all...]
  /external/icu4c/test/intltest/
ssearch.cpp 160 LocalPointer<UXMLElement> root(parser->parseFile(testFilePath, status));
166 const UnicodeString *debugTestCase = root->getAttribute("debug");
175 while((testCase = root->nextChildElement(tc)) != NULL) {
498 UXMLElement *root = parser->parseFile(testFilePath, status); local
504 const UnicodeString *debugTestCase = root->getAttribute("debug");
513 while((testCase = root->nextChildElement(tc)) != NULL) {
669 delete root;
    [all...]
  /external/libpcap/
gencode.c 140 static struct block *root; variable in typeref:struct:block
370 root = NULL;
394 if (root == NULL)
395 root = gen_retblk(snaplen);
398 bpf_optimize(&root);
399 if (root == NULL ||
400 (root->s.code == (BPF_RET|BPF_K) && root->s.k == 0))
403 program->bf_insns = icode_to_fcode(root, &len);
504 root = p->head
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-x.c 831 Window root; local
847 root = RootWindow(display, screen);
    [all...]
  /external/libxml2/
valid.c 262 * set of nodes currently open from the document root to the current element.
6355 xmlNodePtr root; local
6657 xmlNodePtr root; local
6844 xmlNodePtr root; local
    [all...]
xmllint.c 1972 xmlNodePtr root; local
    [all...]
  /external/webkit/WebCore/bindings/objc/
PublicDOMInterfaces.h 136 - (DOMNodeIterator *)createNodeIterator:(DOMNode *)root whatToShow:(unsigned)whatToShow filter:(id <DOMNodeFilter>)filter expandEntityReferences:(BOOL)expandEntityReferences AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
137 - (DOMTreeWalker *)createTreeWalker:(DOMNode *)root whatToShow:(unsigned)whatToShow filter:(id <DOMNodeFilter>)filter expandEntityReferences:(BOOL)expandEntityReferences AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
138 - (DOMNodeIterator *)createNodeIterator:(DOMNode *)root :(unsigned)whatToShow :(id <DOMNodeFilter>)filter :(BOOL)expandEntityReferences;
139 - (DOMTreeWalker *)createTreeWalker:(DOMNode *)root :(unsigned)whatToShow :(id <DOMNodeFilter>)filter :(BOOL)expandEntityReferences;
1181 @property(readonly, retain) DOMNode *root; variable
1201 @property(readonly, retain) DOMNode *root; variable
    [all...]
  /external/webkit/WebCore/page/
Frame.cpp 1203 RenderView* root = contentRenderer(); local
1214 RenderView* root = contentRenderer(); local
    [all...]
FrameView.cpp 360 // If the <body> didn't have a custom style, then the root element might.
398 RenderView* root = m_frame->contentRenderer(); local
399 if (!root)
401 setContentsSize(IntSize(root->rightLayoutOverflow(), root->bottomLayoutOverflow()));
409 // use the root element.
589 RenderObject* root = subtree ? m_layoutRoot : document->renderer();
590 if (!root) {
647 m_doFullRepaint = !subtree && (m_firstLayout || toRenderView(root)->printing());
660 m_lastZoomFactor = root->style()->zoom()
1273 RenderView* root = m_frame->contentRenderer(); local
1423 RenderView* root = m_frame->contentRenderer(); local
1859 RenderView *root = toRenderView(m_frame->document()->renderer()); local
1886 RenderView* root = m_frame->contentRenderer(); local
    [all...]

Completed in 701 milliseconds

<<11121314