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

1 2 3 45 6 7 8 91011>>

  /external/webkit/WebCore/page/
FocusController.cpp 265 Node* root = node->rootEditableElement(); local
267 if (!frame || !root)
270 return frame->editor()->shouldEndEditing(rangeOfContents(root).get());
295 if (Node* root = s->rootEditableElement())
296 if (Node* shadowAncestorNode = root->shadowAncestorNode())
PrintContext.cpp 61 RenderView* root = toRenderView(m_frame->document()->renderer());
63 if (!root) {
70 float pageWidth = (float)root->rightLayoutOverflow();
85 RenderView* root = toRenderView(m_frame->document()->renderer()); local
87 if (!root) {
98 float docHeight = root->layer()->height();
  /external/webkit/WebCore/rendering/
InlineBox.cpp 194 const RootInlineBox* InlineBox::root() const function in class:WebCore::InlineBox
197 return m_parent->root();
202 RootInlineBox* InlineBox::root() function in class:WebCore::InlineBox
205 return m_parent->root();
RenderSVGText.cpp 119 RenderSVGRoot* root = findSVGRootObject(parent()); local
120 if (!root)
140 RenderSVGRoot* root = findSVGRootObject(parent()); local
141 if (!root)
  /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...]
  /frameworks/base/tools/aapt/
XMLNode.h 147 sp<XMLNode> root; member in struct:XMLNode::ParseState
  /frameworks/base/tools/localize/
ValuesFile.cpp 213 XMLNode* root; local
219 root = XMLNode::NewElement(GENERATED_POS, "", "resources", attrs, XMLNode::PRETTY);
230 root->EditChildren().push_back(arrayNode);
250 root->EditChildren().push_back(strNode);
253 return root;
  /frameworks/base/tools/preload/
PrintCsv.java 40 Root root = Root.fromFile(args[0]); local
46 for (LoadedClass loadedClass : root.loadedClasses.values()) {
Root.java 36 * Root of our data model.
38 public class Root implements Serializable {
149 * Reads Root from a file.
151 static Root fromFile(String fileName)
157 Root root = (Root) oin.readObject(); local
161 return root;
  /libcore/luni/src/main/java/org/apache/xalan/templates/
DecimalFormatProperties.java 397 * @param root Stylesheet root
399 public void recompose(StylesheetRoot root)
401 root.recomposeDecimalFormats(this);
  /packages/apps/Camera/src/com/android/camera/ui/
BitmapTexture.java 97 protected boolean bind(GLRootView root, GL11 gl) {
103 root.handleLowMemory();
GLListView.java 83 GLRootView root = getGLRootView();
84 if (root != null) {
85 synchronized (root) {
142 private boolean drawWithAnimation(GLRootView root,
144 long now = root.currentAnimationTimeMillis();
145 Transformation temp = root.obtainTransformation();
147 Transformation transformation = root.pushTransform();
149 texture.draw(root, x, y, w, h);
151 root.popTransform();
156 protected void render(GLRootView root, GL11 gl)
    [all...]
  /packages/providers/CalendarProvider/
maketests.py 72 root = dom.documentElement variable
74 entries = root.getElementsByTagName("entry")
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiElementNodeTest.java 68 * loadFrom() does nothing if the root node doesn't match what's expected
72 MockXmlNode root = new MockXmlNode(null /* namespace */, "blah", Node.ELEMENT_NODE, null); local
73 ui.loadFromXmlNode(root);
82 MockXmlNode root = new MockXmlNode(null /* namespace */, "manifest", Node.ELEMENT_NODE, local
88 ui.loadFromXmlNode(root);
103 MockXmlNode root = new MockXmlNode(null /* namespace */, "manifest", Node.ELEMENT_NODE, local
110 ui.loadFromXmlNode(root);
130 MockXmlNode root = new MockXmlNode(null /* namespace */, "manifest", Node.ELEMENT_NODE, local
153 ui.loadFromXmlNode(root);
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/
LayoutAnalyzer.java 220 Element root = document.getDocumentElement(); local
221 analyze(analysis, root);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
LocalSdkParser.java 108 // root /samples dir. We purposely ignore "old" samples that are
151 File root = new File(osSdkRoot); local
153 if (!root.isDirectory()) {
158 for (File dir : root.listFiles()) {
190 * Find any other sub-directories under the /samples root that hasn't been visited yet
199 File root = new File(osSdkRoot); local
200 root = new File(root, SdkConstants.FD_SAMPLES);
202 if (!root.isDirectory()) {
207 for (File dir : root.listFiles()) {
    [all...]
  /system/core/libdiskconfig/
diskconfig.c 93 load_partitions(cnode *root, struct disk_info *dinfo)
98 for (partnode = root->first_child; partnode; partnode = partnode->next) {
145 cnode *root = config_node("", ""); local
161 config_load_file(root, fn);
162 if (root->first_child == NULL) {
167 if (!(devroot = config_find(root, "device"))) {
  /frameworks/base/sax/tests/saxtests/src/android/sax/
SafeSaxTest.java 91 RootElement root = new RootElement(ATOM_NAMESPACE, "feed"); local
92 Element entry = root.requireChild(ATOM_NAMESPACE, "entry");
99 root.setElementListener(rootCounter);
103 Xml.parse(xml, root.getContentHandler());
116 RootElement root = new RootElement("feed"); local
117 root.requireChild("entry");
120 Xml.parse(xml, root.getContentHandler());
131 RootElement root = new RootElement("feed"); local
132 root.setEndTextElementListener(new EndTextElementListener() {
138 Xml.parse(xml, root.getContentHandler())
209 RootElement root = new RootElement(ATOM_NAMESPACE, "feed"); local
    [all...]
  /packages/apps/Tag/src/com/android/apps/tag/record/
UriRecord.java 177 ViewGroup root = (ViewGroup) inflater.inflate( local
189 ((ImageView) root.findViewById(R.id.image)).setImageDrawable(info.loadIcon(pm));
190 ((TextView) root.findViewById(R.id.text)).setText(context.getString(R.string.url));
192 root.setTag(new UriRecordEditInfo());
193 return root;
VCardRecord.java 156 ViewGroup root = (ViewGroup) inflater.inflate( local
167 ((ImageView) root.findViewById(R.id.image)).setImageDrawable(info.loadIcon(pm));
168 ((TextView) root.findViewById(R.id.text)).setText(context.getString(R.string.contact));
170 root.setTag(new VCardRecordEditInfo());
171 return root;
  /bootable/diskinstaller/
installer.c 63 cnode *root = config_node("", ""); local
64 config_load_file(root, fn);
66 if (root->first_child == NULL) {
71 return root;
  /cts/tools/signature-tools/test/signature/converter/doclet/
DocletTestConverter.java 66 RootDoc root = getRootDoc(visibility, packages); local
70 IApi api = converter.convertDocletRoot("Doclet Test", root, visibility, packages);
175 RootDocImpl root = comp.getRootDocImpl(docLocale, encoding, showAccess, local
179 return root;
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 171 SsaBasicBlock root = postdom local
174 if (root != null) {
175 vertex.add(root);
176 domInfos[root.getIndex()].idom = root.getIndex();
  /dalvik/hit/src/com/android/hit/
ClassObj.java 58 * the list of root objects.
74 RootObj root = new RootObj(RootType.JAVA_STATIC, id); local
77 root.mComment = String.format(
86 root.mComment = String.format(
95 mHeap.addRoot(root);
  /development/ide/emacs/
android-common.el 23 ;; You need to have a proper buildspec.mk file in your root directory
68 (defun android-find-build-tree-root ()
69 "Ascend the current path until the root of the android build tree is found.
70 Similarly to the shell functions in envsetup.sh, for the root both ./Makefile
72 Return the root of the build tree. Signal an error if not found."
89 (android-find-build-tree-root)
110 (let* ((buildspec (concat (android-find-build-tree-root) "buildspec.mk"))
128 (let ((path (concat (android-find-build-tree-root) "out/target/product/"
141 (let ((path (concat (android-find-build-tree-root) "out/host/"

Completed in 961 milliseconds

1 2 3 45 6 7 8 91011>>