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

1 2 3 4 5 6 7 8 91011>>

  /external/yaffs2/yaffs2/
yaffs_fs.c 1457 struct dentry *root; local
    [all...]
  /frameworks/base/libs/ui/
EventHub.cpp 778 const char* root = getenv("ANDROID_ROOT"); local
780 "%s/usr/keylayout/%s.kl", root, tmpfn);
784 "%s/usr/keylayout/%s", root, "qwerty.kl");
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentImpl.java 372 ElementImpl root = (ElementImpl) getDocumentElement(); local
374 return (root == null ? null : root.getElementById(elementId));
378 ElementImpl root = (ElementImpl) getDocumentElement(); local
380 return (root == null ? new NodeListImpl()
381 : root.getElementsByTagName(tagname));
385 ElementImpl root = (ElementImpl) getDocumentElement(); local
387 return (root == null ? new NodeListImpl() : root.getElementsByTagNameNS(
407 // Make sure we have at most one root element and one DTD element
471 Element root = getDocumentElement(); local
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
DOMHelper.java 62 * The Level 2 createDocument call also creates the root
68 * doing so; the intent was that knowing the document type and root
925 Node root = null; local
929 root = node;
933 return root;
937 * Get the root node of the document tree, regardless of
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
RunningServiceDetails.java 224 View root = mInflater.inflate(R.layout.running_service_details_service, local
226 mAllDetails.addView(root);
227 detail.mRootView = root;
229 detail.mViewHolder = new RunningProcessesView.ViewHolder(root);
237 TextView description = (TextView)root.findViewById(R.id.comp_description);
261 detail.mStopButton = (Button)root.findViewById(R.id.left_button);
266 detail.mReportButton = (Button)root.findViewById(R.id.right_button);
293 View root = mInflater.inflate(R.layout.running_service_details_process, local
295 mAllDetails.addView(root);
296 detail.mRootView = root;
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java 130 * @return the root of the filesystem containing the given path
141 throw new IllegalArgumentException("Cannot determine filesystem root for " + path);
236 File root = Environment.getExternalStorageDirectory(); local
237 if (getAvailableBytes(root) < contentLength) {
244 File base = new File(root.getPath() + Constants.DEFAULT_DL_SUBDIR);
247 // already exists at the root level, or the SD card filesystem is read-only.
284 public static long getAvailableBytes(File root) {
285 StatFs stat = new StatFs(root.getPath());
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperPreview.java 247 final View root = view.getRootView(); local
250 true, root.getWidth(), root.getHeight());
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
RepoSource.java 479 // Check the root element is an xsd-schema with at least the following properties:
516 // we must have found the root node, and it must have an XML namespace prefix.
653 * element child in a root XML node.
716 Node root = getFirstChild(doc, nsUri, SdkRepository.NODE_SDK_REPOSITORY); local
717 if (root != null) {
723 for (Node child = root.getFirstChild();
737 for (Node child = root.getFirstChild();
    [all...]
  /system/core/init/
devices.c 503 char *root, *loading, *data, *file1 = NULL, *file2 = NULL; local
509 l = asprintf(&root, SYSFS_PREFIX"%s/", uevent->path);
513 l = asprintf(&loading, "%sloading", root);
517 l = asprintf(&data, "%sdata", root);
545 log_event_print("firmware copy success { '%s', '%s' }\n", root, uevent->firmware);
547 log_event_print("firmware copy failure { '%s', '%s' }\n", root, uevent->firmware);
562 free(root);
617 /* message from non-root user, ignore */
  /frameworks/base/core/java/android/view/
ViewDebug.java 880 private static View findView(View root, String parameter) {
887 View view = root.getRootView();
893 final int id = root.getResources().getIdentifier(parameter, null, null);
894 return root.getRootView().findViewById(id);
900 private static void invalidate(View root, String parameter) {
901 final View view = findView(root, parameter);
907 private static void requestLayout(View root, String parameter) {
908 final View view = findView(root, parameter);
910 root.post(new Runnable() {
918 private static void profile(View root, OutputStream clientStream, String parameter
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
Bridge.java 396 ViewGroup root = new FrameLayout(context); local
398 View view = inflater.inflate(parser, root);
403 // set the AttachInfo on the root view.
409 root.dispatchAttachedToWindow(info, 0);
415 root.setBackgroundDrawable(d);
429 int neededWidth = root.getChildAt(0).getMeasuredWidth();
434 int neededHeight = root.getChildAt(0).getMeasuredHeight();
453 root.draw(canvas);
542 * @param view the root View
711 * Computes the name of the parent style, or <code>null</code> if the style is a root style
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
AbstractPreferencesTest.java 42 static AbstractPreferences root; field in class:AbstractPreferencesTest
54 root = (AbstractPreferences) Preferences.userRoot();
1044 root.removeNode();
    [all...]
  /packages/apps/Settings/src/com/android/settings/
SecuritySettings.java 132 PreferenceScreen root = this.getPreferenceScreen(); local
133 if (root != null) {
134 root.removeAll();
137 root = this.getPreferenceScreen();
184 root.addPreference(simLockCat);
191 root.addPreference(passwordsCat);
203 root.addPreference(devicePoliciesCat);
216 root.addPreference(credentialsCat);
222 //root.addPreference(encryptedfsCat);
224 return root;
    [all...]
  /build/core/
Makefile     [all...]
  /build/tools/droiddoc/src/
Converter.java 27 private static RootDoc root; field in class:Converter
31 root = r;
58 // fill in the "root" stuff
102 return Converter.obtainClass(root.classNamed(className));
107 return Converter.obtainPackage(root.packageNamed(packageName));
  /cts/tools/host/src/com/android/cts/
ConsoleUi.java 217 + " root: add packages from root to repository");
1251 File root = new File(caseRoot); local
    [all...]
TestSessionBuilder.java 559 Node root = doc.createElement(TestPlan.Tag.TEST_PLAN); local
560 setAttribute(doc, root, ATTRIBUTE_VERSION, "1.0");
561 doc.appendChild(root);
566 root.appendChild(deviceConfigNode);
582 root.appendChild(entryNode);
TestSessionLog.java 281 Node root = doc.createElement(TAG_TEST_RESULT); local
282 doc.appendChild(root);
284 setAttribute(doc, root, ATTRIBUTE_VERSION, CTS_RESULT_FILE_VERSION);
285 setAttribute(doc, root, ATTRIBUTE_STARTTIME, HostUtils.dateToString(mSessionStartTime));
286 setAttribute(doc, root, ATTRIBUTE_ENDTIME, HostUtils.dateToString(mSessionEndTime));
287 setAttribute(doc, root, ATTRIBUTE_TESTPLAN, mTestPlanName);
309 root.appendChild(deviceSettingNode);
358 root.appendChild(hostInfo);
389 root.appendChild(summaryNode);
412 root.appendChild(testPackageNode)
    [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...]
  /external/bluetooth/bluez/audio/
a2dp.c 984 sdp_list_t *svclass_id, *pfseq, *apseq, *root; local
1001 root = sdp_list_append(0, &root_uuid);
1002 sdp_set_browse_groups(record, root);
1046 sdp_list_free(root, 0);
    [all...]
control.c 208 sdp_list_t *svclass_id, *pfseq, *apseq, *root; local
222 root = sdp_list_append(0, &root_uuid);
223 sdp_set_browse_groups(record, root);
264 sdp_list_free(root, 0);
272 sdp_list_t *svclass_id, *pfseq, *apseq, *root; local
289 root = sdp_list_append(0, &root_uuid);
290 sdp_set_browse_groups(record, root);
331 sdp_list_free(root, 0);
  /external/bluetooth/bluez/serial/
proxy.c 172 sdp_list_t *apseq, *aproto, *profiles, *proto[2], *root, *svclass_id; local
183 root = sdp_list_append(NULL, &root_uuid);
184 sdp_set_browse_groups(record, root);
185 sdp_list_free(root, NULL);
  /external/bluetooth/glib/tests/
testglib.c 259 GNode *root; local
268 root = g_node_new (C2P ('A'));
269 g_assert (g_node_depth (root) == 1 && g_node_max_height (root) == 1);
272 g_node_append (root, node_B);
273 g_assert (root->children == node_B);
280 g_node_append (root, node_F);
281 g_assert (root->children->next == node_F);
291 g_assert (g_node_depth (root) == 1);
292 g_assert (g_node_max_height (root) == 4)
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
cldrtest.c 76 TestKeyInRootRecursive(UResourceBundle *root, const char *rootName,
81 ures_resetIterator(root);
97 subRootBundle = ures_getByKey(root, subBundleKey, NULL, &errorCode);
108 log_err("key \"%s\" in \"%s\" has a different type from root for locale \"%s\"\n"
128 log_err("Arrays are different size with key \"%s\" in \"%s\" from root for locale \"%s\"\n",
152 log_err("Integer vectors are the same with key \"%s\" in \"%s\" from root for locale \"%s\"\n",
181 log_err("Different size array with key \"%s\" in \"%s\" from root for locale \"%s\"\n"
209 /* A2 or A4 in the root string indicates that the resource can optionally be an array instead of a */
214 log_err("Got a NULL string with key \"%s\" in \"%s\" at index %d for root or locale \"%s\"\n",
222 log_err("Got something other than a string or array of size %d for key \"%s\" in \"%s\" at index %d for root or locale \"%s\"\n"
491 UResourceBundle *root, *currentLocale; local
941 UResourceBundle *root, *currentLocale; local
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
icusvtst.cpp 1036 UnicodeString* root = new UnicodeString("root"); local
    [all...]

Completed in 671 milliseconds

1 2 3 4 5 6 7 8 91011>>