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

12 3 4 5 6 7 8 91011>>

  /frameworks/base/tools/localize/
XMLHandler_test.cpp 70 XMLNode* root = NodeHandler::ParseFile("testdata/xml.xml", XMLNode::EXACT); local
71 if (root == NULL) {
74 string result = root->ToString(NO_NAMESPACES);
75 delete root;
83 XMLNode* root = NodeHandler::ParseFile("testdata/xml.xml", XMLNode::PRETTY); local
84 if (root == NULL) {
87 string result = root->ToString(NO_NAMESPACES);
88 delete root;
97 XMLNode* root = NodeHandler::ParseString("testdata/xml.xml", text, XMLNode::EXACT); local
98 if (root == NULL)
111 XMLNode* root = NodeHandler::ParseString("testdata\/xml.xml", text, XMLNode::PRETTY); local
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
ColorTexture.java 27 public void draw(GLRootView root, int x, int y) {
30 public void draw(GLRootView root, int x, int y, int w, int h) {
31 root.drawColor(x, y, w, h, mColor);
  /external/quake/quake/src/QW/
glqwcl.spec.sh 38 %attr(644,root,root) ${3}/readme.glqwcl
39 %attr(4755,root,root) ${3}/glqwcl
40 %attr(4755,root,root) ${3}/glqwcl.glx
41 %attr(755,root,root) ${3}/glqwcl.3dfxgl
42 %attr(755,root,root) ${3}/lib3dfxgl.s
    [all...]
  /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):
44 self.root = root
74 def __init__(self, context, root):
75 super(ES5ConformTestConfiguration, self).__init__(context, root)
79 current_root = join(self.root, 'data', 'TestCases')
81 harness += [join(self.root, 'data', 'SimpleTestHarness', f) for f in HARNESS_FILES]
82 harness += [join(self.root, 'harness-adapt.js')]
83 for root, dirs, files in os.walk(current_root):
86 root_path = root[len(self.root):].split(os.path.sep
    [all...]
  /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/v8/tools/
splaytree.py 47 """The splay tree itself is just a reference to the root of the tree."""
51 self.root = None
55 return not self.root
61 self.root = Node(key, value)
64 # the key to the root of the tree.
67 if self.root.key == key:
71 if key > self.root.key:
72 node.left = self.root
73 node.right = self.root.right
74 self.root.right = Non
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/axes/
RTFIterator.java 39 public RTFIterator(int root, DTMManager manager) {
40 super(root, manager);
  /external/webkit/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)
79 root()->document()->attachNodeIterator(this);
84 root()->document()->detachNodeIterator(this);
97 while (m_candidateNode.moveToNext(root())) {
126 while (m_candidateNode.moveToPrevious(root())) {
147 root()->document()->detachNodeIterator(this)
    [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);
53 root.addObserverLocked(uris[i], new TestObserver().getContentObserver(), true, root);
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);
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/webkit/WebKit/android/nav/
CachedLayer.cpp 36 IntRect CachedLayer::adjustBounds(const LayerAndroid* root,
39 const LayerAndroid* aLayer = layer(root);
41 DBG_NAV_LOGD("no layer in root=%p uniqueId=%d", root, mUniqueId);
43 if (root)
44 mDebug.printRootLayerAndroid(root);
54 DBG_NAV_LOGD("root=%p aLayer=%p [%d]"
57 root, aLayer, aLayer->uniqueId(),
66 const LayerAndroid* CachedLayer::layer(const LayerAndroid* root) const
68 if (!root || mLayer
    [all...]
  /external/qemu/proxy/
proxy_http_rewriter.c 323 /* root->socket is connected to the proxy server. while
341 ProxyConnection root[1]; member in struct:__anon6523
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
863 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):
  /external/freetype/include/freetype/internal/
pcftypes.h 41 FT_FaceRec root; member in struct:PCF_Public_FaceRec_
  /external/v8/src/
snapshot-common.cc 76 Object* root; local
77 deserializer.DeserializePartial(&root);
78 CHECK(root->IsContext());
79 return Handle<Context>(Context::cast(root));
  /external/v8/test/mozilla/
testcfg.py 59 def __init__(self, filename, path, context, root, mode, framework):
64 self.root = root
79 join(self.root, 'mozilla-shell-emulation.js')]
93 def __init__(self, context, root):
94 super(MozillaTestConfiguration, self).__init__(context, root)
99 current_root = join(self.root, 'data', test_dir)
100 for root, dirs, files in os.walk(current_root):
107 root_path = root[len(self.root):].split(os.path.sep
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
pv_sqrt.h 62 Int32 root; member in struct:intg_sqrt
  /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);

Completed in 1599 milliseconds

12 3 4 5 6 7 8 91011>>