HomeSort by relevance Sort by last modified time
    Searched refs:root (Results 351 - 375 of 1103) sorted by null

<<11121314151617181920>>

  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
websocket_server.py 88 root=None, use_tls=False,
96 root=root,
101 self._root = root
265 option_parser.add_option('-r', '--root',
288 if options.root:
289 kwds['root'] = options.root
  /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"))) {
  /bionic/libc/kernel/tools/
utils.py 237 for root, dirs, files in os.walk(path):
238 #print "w-- %s (ex: %s)" % (repr((root,dirs)), repr(excludes))
246 callback( "%s/%s" % (root,f), args )
254 for root, dirs, files in os.walk(path, topdown=False):
255 if root.endswith("kernel_headers/"):
259 os.remove(os.path.join(root, name))
261 os.rmdir(os.path.join(root, name))
307 for root, dirs, files in os.walk(path):
309 dst = "%s/%s" % (root,f)
  /external/chromium/third_party/icu/source/data/translit/
trnsfiles.mk 26 TRANSLIT_SOURCE=root.txt en.txt el.txt
  /external/clearsilver/python/examples/trans/
trans.py 61 self.root = "testroot"
73 if self.root is None:
74 raise "Unable to determine installation root"
245 fpath = self.root + '/' + file
264 fpath = self.root + '/' + path
442 os.system("rm -rf %s/gen/tmpl" % (self.root))
444 fname = "%s/gen/%s" % (self.root, file)
466 data = open(self.root + '/' + file).read()
498 fname = "%s/gen/tmpl/lang_%s.hdf" % (self.root, d_lang)
508 map_file = "%s/gen/tmpl/lang_map.hdf" % (self.root)
    [all...]
  /external/dbus/test/data/valid-config-files/system.d/
test.conf 8 <!-- Only root can own the FooService service, and
10 <policy user="root">
  /external/freetype/include/freetype/internal/
t1types.h 211 FT_FaceRec root; member in struct:T1_FaceRec_
245 FT_FaceRec root; member in struct:CID_FaceRec_
  /external/grub/util/
grub-install 66 --root-directory=DIR install GRUB images under the directory DIR
67 instead of the root directory
77 --root-directory, and uses the grub shell to install grub into the boot
240 --root-directory=*)
241 rootdir=`echo "$option" | sed 's/--root-directory=//'` ;;
379 # Get the root drive.
383 # Check if the boot directory is in the same device as the root directory.
390 # Convert the root device to a GRUB drive.
396 # Check if the root directory exists in the same device as the grub
403 You must set the root directory by the option --root-directory, becaus
    [all...]
  /external/icu4c/data/translit/
trnsfiles.mk 26 TRANSLIT_SOURCE=root.txt en.txt el.txt
  /external/ppp/pppd/
Makefile.sol2 52 $(INSTALL) -f $(BINDIR) -m 4755 -u root pppd
  /external/skia/src/xml/
SkDOM.cpp 479 "<root a='1' b='2'>"
487 "</root>"
494 const Node* root = dom.build(gDoc, sizeof(gDoc) - 1); local
495 SkASSERT(root && dom.getRootNode() == root);
497 const char* v = dom.findAttr(root, "a");
499 v = dom.findAttr(root, "b");
501 v = dom.findAttr(root, "c");
504 SkASSERT(dom.getFirstChild(root, "elem1"));
505 SkASSERT(!dom.getFirstChild(root, "subelem1"))
    [all...]
  /external/webkit/WebCore/WebCore.gyp/scripts/
action_csspropertynames.py 145 (root, ext) = os.path.splitext(mergedPath)
146 gperfPath = root + '.gperf'
action_cssvaluekeywords.py 151 (root, ext) = os.path.splitext(mergedPath)
152 gperfPath = root + '.gperf'
  /external/webkit/WebCore/inspector/
InspectorFrontend.h 120 void setDocument(const ScriptObject& root);
121 void setDetachedRoot(const ScriptObject& root);
  /external/webkit/WebCore/platform/qt/
FileSystemQt.cpp 60 return QDir::root().rmdir(path);
79 return QDir::root().mkpath(path);
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java     [all...]
  /frameworks/base/tools/preload/
PrintCsv.java 40 Root root = Root.fromFile(args[0]); local
46 for (LoadedClass loadedClass : root.loadedClasses.values()) {
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemTemplate.java 144 * Get the root stylesheet.
146 * @return The root stylesheet for this element
406 * @param root The root stylesheet for this transformation.
408 public void recompose(StylesheetRoot root)
410 root.recomposeTemplates(this);
  /packages/apps/Camera/src/com/android/camera/ui/
BitmapTexture.java 97 protected boolean bind(GLRootView root, GL11 gl) {
103 root.handleLowMemory();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
BaseLayout.groovy 176 protected void collectExistingIds(INode root, Map existingIdMap) {
177 if (root == null) {
181 def id = root.getStringAttr(ANDROID_URI, ATTR_ID);
190 for(child in root.getChildren()) {
  /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...]
  /external/webkit/WebCore/editing/
TypingCommand.cpp 396 Element* root = endingSelection().rootEditableElement(); local
397 if (!root->firstChild())
400 if (root->firstChild() == root->lastChild() && root->firstElementChild() && root->firstElementChild()->hasTagName(brTag)) {
402 if (root->renderer() && root->renderer()->isBlockFlow())
406 while (Node* child = root->firstChild())
409 addBlockPlaceholderIfNeeded(root);
    [all...]
  /external/webkit/WebCore/rendering/
RenderListMarker.cpp     [all...]
  /external/chromium/third_party/icu/source/test/iotest/
filetst.c     [all...]
  /external/icu4c/test/iotest/
filetst.c     [all...]

Completed in 489 milliseconds

<<11121314151617181920>>