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

1 23 4 5 6 7 8 91011>>

  /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;
  /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/bluetooth/glib/gobject/
gobject-query.c 37 static GType root = 0; variable
69 if (type != root)
75 sibling ? O_BRANCH : (type != root ? O_LLEAF : O_SPACE),
107 g_fprintf (stderr, " -r specifiy root type\n");
136 root = G_TYPE_OBJECT;
179 root = g_type_from_name (argv[i]);
216 show_nodes (root, 0, iindent);
219 root = ~0;
  /external/bluetooth/glib/tests/
node-test.c 88 GNode *root; local
100 root = g_node_new (C2P ('A'));
101 TEST (NULL, g_node_depth (root) == 1 && g_node_max_height (root) == 1);
104 g_node_append (root, node_B);
105 TEST (NULL, root->children == node_B);
113 g_node_append (root, node_F);
114 TEST (NULL, root->children->next == node_F);
124 TEST (NULL, g_node_depth (root) == 1);
125 TEST (NULL, g_node_max_height (root) == 4)
    [all...]
  /external/chromium/base/
nss_util.cc 45 // Load nss's built-in root certs.
50 "name=\"Root Certs\" library=\"%s\"", kModulePath);
51 SECMODModule *root = SECMOD_LoadUserModule(modparams, NULL, PR_FALSE); local
52 if (root)
53 return root;
55 // Aw, snap. Can't find/load root cert shared library.
  /external/chromium/third_party/zlib/
inftrees.c 28 requested root table index bits, and on return it is the actual root
43 unsigned root; /* number of index bits for root table */ local
51 unsigned low; /* low bits for current root entry */
52 unsigned mask; /* mask for low root bits */
112 /* bound code lengths, force root to be within code lengths */
113 root = *bits;
116 if (root > max) root = max
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inftrees.c 28 requested root table index bits, and on return it is the actual root
43 unsigned root; /* number of index bits for root table */ local
51 unsigned low; /* low bits for current root entry */
52 unsigned mask; /* mask for low root bits */
112 /* bound code lengths, force root to be within code lengths */
113 root = *bits;
116 if (root > max) root = max
    [all...]
  /external/qemu/proxy/
proxy_http_connector.c 33 ProxyConnection root[1]; member in struct:Connection
39 connection_free( ProxyConnection* root )
41 proxy_connection_done(root);
42 qemu_free(root);
52 HttpService* service = (HttpService*) conn->root->service;
53 ProxyConnection* root = conn->root; local
54 stralloc_t* str = root->str;
56 proxy_connection_rewind(root);
58 sock_address_to_string(&root->address))
    [all...]
  /external/skia/src/utils/
SkLayer.cpp 125 const SkLayer* root = this; local
126 while (root->fParent != NULL) {
127 root = root->fParent;
129 return const_cast<SkLayer*>(root);
194 // should we also apply the root's childrenMatrix?
  /external/webkit/WebCore/css/
CSSImportRule.cpp 126 StyleBase* root = this; local
131 root = curr;
142 if (parentSheet && parentSheet->loadCompleted() && root == parentSheet)
CSSStyleSheet.cpp 203 StyleBase* root = this; local
204 while (StyleBase* parent = root->parent())
205 root = parent;
206 Document* documentToUpdate = root->isCSSStyleSheet() ? static_cast<CSSStyleSheet*>(root)->doc() : 0;
CSSVariablesDeclaration.cpp 168 StyleBase* root = this; local
169 while (StyleBase* parent = root->parent())
170 root = parent;
171 if (root->isCSSStyleSheet())
172 static_cast<CSSStyleSheet*>(root)->doc()->updateStyleSelector();
  /external/webkit/WebCore/platform/graphics/wince/
MediaPlayerProxy.cpp 126 RootObject *root = frame->script()->bindingRootObject(); local
127 if (!root)
129 ExecState *exec = root->globalObject()->globalExec();
  /external/webkit/WebCore/platform/wx/
ScrollbarThemeWx.cpp 197 ScrollView* root = scrollbar->root(); local
198 ASSERT(root);
199 if (!root)
202 wxWindow* webview = root->hostWindow()->platformPageClient();
  /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...]
RenderPartObject.cpp 78 RenderView* root = view ? view->frame()->contentRenderer() : NULL; local
79 if (root && style()->visibility() != HIDDEN) {
87 setWidth(max(width(), root->minPrefWidth()) + extraWidth);
101 } while (view->layoutPending() || root->needsLayout());
122 ASSERT(!root->needsLayout());
124 RenderObject* c = root->nextInPreOrder();
152 RenderView* root = static_cast<RenderView*>(view->frame()->contentRenderer()); local
153 if (!root)
165 setWidth(max(width(), root->minPrefWidth()) + extraWidth);
173 } while (view->layoutPending() || root->needsLayout())
186 RenderView* root = static_cast<RenderView*>(view->frame()->contentRenderer()); local
    [all...]
  /external/zlib/contrib/infback9/
inftree9.c 28 requested root table index bits, and on return it is the actual root
43 unsigned root; /* number of index bits for root table */ local
51 unsigned low; /* low bits for current root entry */
52 unsigned mask; /* mask for low root bits */
114 /* bound code lengths, force root to be within code lengths */
115 root = *bits;
118 if (root > max) root = max
    [all...]
  /external/zlib/
inftrees.c 28 requested root table index bits, and on return it is the actual root
43 unsigned root; /* number of index bits for root table */ local
51 unsigned low; /* low bits for current root entry */
52 unsigned mask; /* mask for low root bits */
112 /* bound code lengths, force root to be within code lengths */
113 root = *bits;
116 if (root > max) root = max
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacenc/basic_op/
oper_32b.c 235 if ((0x40000000l >> shift) + root <= value) \
237 value -= (0x40000000l >> shift) + root; \
238 root = (root >> 1) | (0x40000000l >> shift); \
240 root = root >> 1; \
243 Word32 rsqrt(Word32 value, /*!< Operand to square root (0.0 ... 1) */
246 Word32 root = 0; local
263 if (root < value)
264 ++root;
    [all...]
  /frameworks/base/opengl/tests/gldual/src/com/android/gldual/
GLDualActivity.java 34 View root = getLayoutInflater().inflate(R.layout.gldual_activity, null); local
35 mGLView = (GLSurfaceView) root.findViewById(R.id.gl1);
38 mGL2View = (GLDualGL2View) root.findViewById(R.id.gl2);
39 setContentView(root);
  /frameworks/base/sax/java/android/sax/
RootElement.java 26 * The root XML element. The entry point for this API. Not safe for concurrent
46 * RootElement root = new RootElement(ATOM_NAMESPACE, "feed");
47 * Element entry = root.getChild(ATOM_NAMESPACE, "entry");
56 * reader.setContentHandler(root.getContentHandler());
71 * Constructs a new root element with the given name.
81 * Constructs a new root element with the given name. Uses an empty string
115 // This is the root element.
142 Element root = RootElement.this; local
143 if (root.uri.compareTo(uri) != 0
144 || root.localName.compareTo(localName) != 0)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_elementnormalize2.java 60 Element root; local
70 root = doc.getDocumentElement();
72 elementList = root.getElementsByTagName("acronym");
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemAttributeSet.java 167 * @param root The root stylesheet for this transformation.
169 public void recompose(StylesheetRoot root)
171 root.recomposeAttributeSets(this);
KeyDeclaration.java 191 * @param root The root stylesheet for this transformation.
193 public void recompose(StylesheetRoot root)
195 root.recomposeKeys(this);
NamespaceAlias.java 152 * @param root The owning root stylesheet
154 public void recompose(StylesheetRoot root)
156 root.recomposeNamespaceAliases(this);

Completed in 549 milliseconds

1 23 4 5 6 7 8 91011>>