/external/grub/docs/ |
menu.lst | 16 root (hd0,0) 17 kernel /boot/gnumach.gz root=hd0s1 22 root (hd1,0) 23 kernel /vmlinuz root=/dev/hdb1 28 root (hd0,2,a) 33 root (hd0,2,a) 38 root (hd0,2) 40 kernel (fd0)/boot/kernel root=hd0s3 45 root (hd0,2,a) 50 root (hd0,2,a [all...] |
/external/e2fsprogs/intl/ |
os2compat.c | 51 char *root = getenv ("UNIXROOT"); local 57 if (root) 59 size_t sl = strlen (root); 61 memcpy (_nlos2_libdir, root, sl); 71 if (root) 73 size_t sl = strlen (root); 75 memcpy (_nlos2_localealiaspath, root, sl); 85 if (root) 87 size_t sl = strlen (root); 89 memcpy (_nlos2_localedir, root, sl) [all...] |
/external/skia/src/core/ |
SkTSort.h | 24 void SkTHeapSort_SiftDown(T array[], int root, int bottom) { 25 while (root*2 + 1 <= bottom) { 26 int child = root * 2 + 1; 30 if (array[root] < array[child]) { 31 SkTSwap<T>(array[root], array[child]); 32 root = child;
|
/external/quake/quake/src/WinQuake/ |
quake-data.spec.sh | 46 %attr(644,root,root) $3/comexp.txt 47 %attr(644,root,root) $3/help.txt 48 %attr(644,root,root) $3/licinfo.txt 49 %attr(644,root,root) $3/manual.txt 50 %attr(644,root,root) $3/readme.tx [all...] |
quake.spec.sh | 49 %attr(644,root,root) $3/README 50 %attr(4755,root,root) $3/squake 51 %attr(4755,root,root) $3/glquake 52 %attr(4755,root,root) $3/glquake.glx 53 %attr(4755,root,root) $3/glquake.3dfxg [all...] |
/external/v8/test/es5conform/ |
testcfg.py | 39 def __init__(self, filename, path, context, root, mode, framework): 43 self.root = root 73 def __init__(self, context, root): 74 super(ES5ConformTestConfiguration, self).__init__(context, root) 78 current_root = join(self.root, 'data', 'TestCases') 80 harness += [join(self.root, 'data', 'SimpleTestHarness', f) for f in HARNESS_FILES] 81 harness += [join(self.root, 'harness-adapt.js')] 82 for root, dirs, files in os.walk(current_root): 86 root_path = root[len(self.root):].split(os.path.sep [all...] |
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
TranslatorGLSL.h | 17 virtual void translate(TIntermNode* root);
|
TranslatorHLSL.h | 17 virtual void translate(TIntermNode* root);
|
/frameworks/base/tests/backup/ |
test_backup_common.sh | 22 # restart adb as root and wait for it to come back again 25 root_status=$(a root) 26 if [ "$root_status" != "adbd is already running as root" ]; then 27 echo -n "Restarting adb as root..."
|
/external/webkit/Source/WebCore/dom/ |
NodeIterator.cpp | 50 bool NodeIterator::NodePointer::moveToNext(Node* root) 58 node = node->traverseNextNode(root); 62 bool NodeIterator::NodePointer::moveToPrevious(Node* root) 70 node = node->traversePreviousNode(root); 76 , m_referenceNode(root(), true) 80 ASSERT(root()->document() || root()->nodeType() == Node::DOCUMENT_TYPE_NODE); 81 if (Document* ownerDocument = root()->document()) 87 if (Document* ownerDocument = root()->document()) 101 while (m_candidateNode.moveToNext(root())) { [all...] |
/external/v8/test/preparser/ |
testcfg.py | 37 def __init__(self, root, path, executable, mode, context): 40 self.root = root 49 testfile = join(self.root, self.GetName()) + ".js" 62 def __init__(self, context, root): 63 super(PreparserTestConfiguration, self).__init__(context, root) 74 filenames = [f[:-3] for f in os.listdir(self.root) if f.endswith(".js")] 78 result.append(PreparserTestCase(self.root, 84 status_file = join(self.root, 'preparser.status') 89 def GetConfiguration(context, root) [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
RTFIterator.java | 39 public RTFIterator(int root, DTMManager manager) { 40 super(root, manager);
|
/external/llvm/utils/ |
getsrcs.sh | 25 TOPDIR=`llvm-config --src-root`
|
/external/webkit/Source/WebCore/fileapi/ |
DOMFileSystem.idl | 37 readonly attribute DirectoryEntry root;
|
DOMFileSystemSync.idl | 37 readonly attribute DirectoryEntrySync root;
|
/external/webkit/Source/WebCore/svg/ |
SVGElementInstanceList.h | 32 static PassRefPtr<SVGElementInstanceList> create(PassRefPtr<SVGElementInstance> root) { return adoptRef(new SVGElementInstanceList(root)); }
|
/external/webkit/Source/WebKit/android/nav/ |
CachedLayer.h | 50 IntRect adjustBounds(const LayerAndroid* root, const IntRect& bounds) const; 53 const LayerAndroid* layer(const LayerAndroid* root) const; 54 IntRect localBounds(const LayerAndroid* root, const IntRect& bounds) const; 55 SkPicture* picture(const LayerAndroid* root) const; 56 void toLocal(const LayerAndroid* root, int* xPtr, int* yPtr) const;
|
/external/chromium/chrome/common/ |
json_value_serializer_unittest.cc | 23 scoped_ptr<Value> root(serializer.Deserialize(NULL, NULL)); 24 ASSERT_TRUE(root.get()); 25 ASSERT_TRUE(root->IsType(Value::TYPE_DICTIONARY)); 27 DictionaryValue* root_dict = static_cast<DictionaryValue*>(root.get()); 123 DictionaryValue root; local 125 root.SetString("web", test); 131 ASSERT_TRUE(serializer.Serialize(root)); 147 DictionaryValue root; local 149 root.SetString("test", test); 155 ASSERT_TRUE(serializer.Serialize(root)); 179 scoped_ptr<Value> root; local 218 scoped_ptr<Value> root; local 259 scoped_ptr<Value> root; local 309 scoped_ptr<Value> root; local 335 scoped_ptr<Value> root; local [all...] |
/frameworks/base/core/tests/coretests/src/android/content/ |
ObserverNodeTest.java | 36 ObserverNode root = new ObserverNode(""); local 51 root.addObserverLocked(uris[0], new TestObserver().getContentObserver(), false, root, 0, 0); 53 root.addObserverLocked(uris[i], new TestObserver().getContentObserver(), true, root, 0, 0); 59 root.collectObserversLocked(uris[i], 0, null, false, calls); 66 ObserverNode root = new ObserverNode(""); local 80 root.addObserverLocked(uris[i], new TestObserver().getContentObserver(), false, root, 0, 0); 86 root.collectObserversLocked(uris[i], 0, null, false, calls) [all...] |
/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/srec/tools/thirdparty/OpenFst/fst/lib/ |
dfs-visit.h | 42 // // Invoked when state discovered (2nd arg is DFS tree root) 43 // bool InitState(StateId s, StateId root); 51 // // when S is tree root) 100 for (StateId root = start; dfs && root < nstates;) { 101 state_color[root] = kDfsGrey; 102 state_stack.push(new DfsState<Arc>(fst, root)); 103 dfs = visitor->InitState(root, root); 136 dfs = visitor->InitState(arc.nextstate, root); [all...] |
/external/icu4c/samples/uresb/ |
resources.mak | 4 TARGETS = en.res root.res sr.res 23 root.res : root.txt
|
/external/oprofile/module/ |
compat.c | 30 struct dentry * root = current->fs->root; local 38 if (dentry == root)
|
/external/qemu/proxy/ |
proxy_http_rewriter.c | 323 /* root->socket is connected to the proxy server. while 341 ProxyConnection root[1]; member in struct:__anon9943 360 rewrite_connection_free( ProxyConnection* root ) 362 RewriteConnection* conn = (RewriteConnection*)root; 369 proxy_connection_done(root); 377 HttpService* service = (HttpService*) conn->root->service; 378 ProxyConnection* root = conn->root; local 383 if (socket_connect( root->socket, &service->server_addr ) < 0) { 385 PROXY_LOG("%s: connecting", conn->root->name) 405 ProxyConnection* root = conn->root; local 423 ProxyConnection* root = conn->root; local 469 ProxyConnection* root = conn->root; local 510 ProxyConnection* root = conn->root; local 557 ProxyConnection* root = conn->root; local 594 ProxyConnection* root = conn->root; local 614 ProxyConnection* root = conn->root; local 696 ProxyConnection* root = conn->root; local 869 ProxyConnection* root = conn->root; local [all...] |
/build/tools/ |
fileslist.py | 27 for root in roots: 28 base = len(root[:root.rfind(os.path.sep)]) 29 for dir, dirs, files in os.walk(root):
|