Home
last modified time | relevance | path

Searched refs:root (Results 1 – 25 of 2151) sorted by relevance

12345678910>>...87

/external/chromium/base/json/
Djson_reader_unittest.cc17 scoped_ptr<Value> root; in TEST() local
18 root.reset(JSONReader().JsonToValue(" null ", false, false)); in TEST()
19 ASSERT_TRUE(root.get()); in TEST()
20 ASSERT_TRUE(root->IsType(Value::TYPE_NULL)); in TEST()
23 root.reset(JSONReader().JsonToValue("nu", false, false)); in TEST()
24 ASSERT_FALSE(root.get()); in TEST()
27 root.reset(JSONReader().JsonToValue("true ", false, false)); in TEST()
28 ASSERT_TRUE(root.get()); in TEST()
29 ASSERT_TRUE(root->IsType(Value::TYPE_BOOLEAN)); in TEST()
32 root.reset(JSONReader().JsonToValue("/* comment */null", false, false)); in TEST()
[all …]
Djson_writer_unittest.cc13 Value* root = Value::CreateNullValue(); in TEST() local
15 JSONWriter::Write(root, false, &output_js); in TEST()
17 delete root; in TEST()
20 root = new DictionaryValue; in TEST()
21 JSONWriter::Write(root, false, &output_js); in TEST()
23 delete root; in TEST()
26 root = new ListValue; in TEST()
27 JSONWriter::Write(root, false, &output_js); in TEST()
29 delete root; in TEST()
32 root = Value::CreateDoubleValue(1.0); in TEST()
[all …]
/external/icu4c/test/cintltst/
Dcalltest.c19 void addUtility(TestNode** root);
20 void addBreakIter(TestNode** root);
21 void addStandardNamesTest(TestNode **root);
22 void addFormatTest(TestNode** root);
23 void addConvert(TestNode** root);
24 void addCollTest(TestNode** root);
25 void addComplexTest(TestNode** root);
26 void addUDataTest(TestNode** root);
27 void addUTF16Test(TestNode** root);
28 void addUTF8Test(TestNode** root);
[all …]
Dcutiltst.c24 void addHashtableTest(TestNode** root);
25 void addCStringTest(TestNode** root);
26 void addTrieTest(TestNode** root);
27 void addTrie2Test(TestNode** root);
28 void addEnumerationTest(TestNode** root);
29 void addPosixTest(TestNode** root);
30 void addSortTest(TestNode** root);
32 void addUtility(TestNode** root);
34 void addUtility(TestNode** root) in addUtility() argument
36 addCStringTest(root); in addUtility()
[all …]
Dcconvtst.c19 void addTestConvertErrorCallBack(TestNode** root);
20 void addTestEuroRegression(TestNode** root);
21 void addTestConverterFallBack(TestNode** root);
22 void addExtraTests(TestNode** root);
26 addBOCU1Tests(TestNode** root);
28 void addConvert(TestNode** root);
30 void addConvert(TestNode** root) in addConvert() argument
32 addTestConvert(root); in addConvert()
33 addTestNewConvert(root); in addConvert()
34 addBOCU1Tests(root); in addConvert()
[all …]
Dccolltst.c27 void addCollTest(TestNode** root);
29 void addCollTest(TestNode** root) in addCollTest() argument
31 addCollAPITest(root); in addCollTest()
32 addCurrencyCollTest(root); in addCollTest()
34 addNormTest(root); in addCollTest()
36 addGermanCollTest(root); in addCollTest()
37 addSpanishCollTest(root); in addCollTest()
38 addFrenchCollTest(root); in addCollTest()
39 addKannaCollTest(root); in addCollTest()
40 addTurkishCollTest(root); in addCollTest()
[all …]
Dcformtst.c38 void addFormatTest(TestNode** root);
40 void addFormatTest(TestNode** root) in addFormatTest() argument
42 addCalTest(root); in addFormatTest()
43 addDateForTest(root); in addFormatTest()
44 addDateTimePatternGeneratorTest(root); in addFormatTest()
45 addDateIntervalFormatTest(root); in addFormatTest()
46 addNumForTest(root); in addFormatTest()
47 addNumFrDepTest(root); in addFormatTest()
48 addMsgForTest(root); in addFormatTest()
49 addDateForRgrTest(root); in addFormatTest()
[all …]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DViewGroupTest.java32 private ViewGroup root; field in ViewGroupTest
45 root = new FrameLayout(context); in setUp()
53 root.addView(child1); in setUp()
54 root.addView(child2); in setUp()
55 root.addView(child3); in setUp()
71 assertThat(root.getLayoutAnimationListener(), nullValue()); in testLayoutAnimationListener()
83 root.setLayoutAnimationListener(animationListener); in testLayoutAnimationListener()
85 assertThat(root.getLayoutAnimationListener(), sameInstance(animationListener)); in testLayoutAnimationListener()
90 root.removeViewAt(1); in testRemoveChildAt()
92 assertThat(root.getChildCount(), equalTo(2)); in testRemoveChildAt()
[all …]
/external/qemu/proxy/
Dproxy_http_connector.c33 ProxyConnection root[1]; member
39 connection_free( ProxyConnection* root ) in connection_free() argument
41 proxy_connection_done(root); in connection_free()
42 qemu_free(root); in connection_free()
52 HttpService* service = (HttpService*) conn->root->service; in connection_init()
53 ProxyConnection* root = conn->root; in connection_init() local
54 stralloc_t* str = root->str; in connection_init()
56 proxy_connection_rewind(root); in connection_init()
58 sock_address_to_string(&root->address)); in connection_init()
62 if (!socket_connect( root->socket, &service->server_addr )) { in connection_init()
[all …]
Dproxy_http_rewriter.c348 ProxyConnection root[1]; member
368 rewrite_connection_free( ProxyConnection* root ) in rewrite_connection_free() argument
370 RewriteConnection* conn = (RewriteConnection*)root; in rewrite_connection_free()
377 proxy_connection_done(root); in rewrite_connection_free()
385 HttpService* service = (HttpService*) conn->root->service; in rewrite_connection_init()
386 ProxyConnection* root = conn->root; in rewrite_connection_init() local
391 if (socket_connect( root->socket, &service->server_addr ) < 0) { in rewrite_connection_init()
393 PROXY_LOG("%s: connecting", conn->root->name); in rewrite_connection_init()
396 PROXY_LOG("%s: cannot connect to proxy: %s", root->name, errno_str); in rewrite_connection_init()
401 PROXY_LOG("%s: immediate connection", root->name); in rewrite_connection_init()
[all …]
/external/openssh/contrib/suse/
Dopenssh.spec196 %defattr(-,root,root)
199 %attr(0755,root,root) %dir %{_sysconfdir}/ssh
200 %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/ssh/ssh_config
201 %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/sshd_config
202 %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/moduli
203 %attr(0644,root,root) %config(noreplace) /etc/pam.d/sshd
204 %attr(0755,root,root) %config /etc/init.d/sshd
205 %attr(0755,root,root) %{_bindir}/ssh-keygen
206 %attr(0755,root,root) %{_bindir}/scp
207 %attr(0755,root,root) %{_bindir}/ssh
[all …]
/external/quake/quake/src/WinQuake/
Dquake-shareware.spec.sh49 %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.3dfxgl
54 %attr(755,root,root) $3/quake.x11
55 %attr(644,root,root) $3/help.txt
56 %attr(644,root,root) $3/licinfo.txt
57 %attr(644,root,root) $3/manual.txt
58 %attr(644,root,root) $3/readme.txt
[all …]
Dquake-data.spec.sh46 %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.txt
51 %attr(644,root,root) $3/rlicnse.txt
52 %attr(644,root,root) $3/techinfo.txt
53 %attr(644,root,root) $3/id1/pak0.pak
54 %attr(644,root,root) $3/id1/pak1.pak
Dquake.spec.sh49 %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.3dfxgl
54 %attr(755,root,root) $3/quake.x11
55 %attr(755,root,root) /usr/lib/lib3dfxgl.so
56 %attr(755,root,root) /usr/lib/libMesaGL.so.2.6
/external/valgrind/main/coregrind/
Dm_oset.c121 AvlNode* root; // root node member
204 static void avl_swl ( AvlNode** root ) in avl_swl() argument
206 AvlNode* a = *root; in avl_swl()
208 *root = b; in avl_swl()
214 static void avl_swr ( AvlNode** root ) in avl_swr() argument
216 AvlNode* a = *root; in avl_swr()
218 *root = b; in avl_swr()
224 static void avl_nasty ( AvlNode* root ) in avl_nasty() argument
226 switch (root->balance) { in avl_nasty()
228 root->left->balance = 0; in avl_nasty()
[all …]
/external/emma/
Dmodule.dirs.properties30 lib.dir.root: ${basedir}/${lib}
32 internal.lib.dir: ${lib.dir.root}/${internal}
33 external.lib.dir: ${lib.dir.root}/${external}
38 core.dir.root: ${basedir}/${core}
40 core.src.java12.dir: ${core.dir.root}/${java12}
41 core.src.java13.dir: ${core.dir.root}/${java13}
42 core.src.java14.dir: ${core.dir.root}/${java14}
44 core.res.dir: ${core.dir.root}/${res}
45 core.data.dir: ${core.dir.root}/${data}
50 ant.dir.root: ${basedir}/${ant}
[all …]
/external/freetype/src/sfnt/
Dsfobjs.c139 FT_Memory memory = face->root.memory; in tt_face_get_name()
444 FT_Library library = face->root.driver->root.library; in sfnt_init_face()
491 face->root.num_faces = face->ttc_header.count; in sfnt_init_face()
492 face->root.face_index = face_index; in sfnt_init_face()
593 has_outline = FT_BOOL( face->root.internal->incremental_interface != 0 || in sfnt_load_face()
657 if ( face->root.internal->incremental_interface && in sfnt_load_face()
658 face->root.internal->incremental_interface->funcs-> in sfnt_load_face()
684 if ( face->root.internal->incremental_interface && in sfnt_load_face()
685 face->root.internal->incremental_interface->funcs-> in sfnt_load_face()
750 face->root.num_glyphs = face->max_profile.numGlyphs; in sfnt_load_face()
[all …]
/external/chromium/chrome/common/
Djson_value_serializer_unittest.cc23 scoped_ptr<Value> root(serializer.Deserialize(NULL, NULL)); in TEST() local
24 ASSERT_TRUE(root.get()); in TEST()
25 ASSERT_TRUE(root->IsType(Value::TYPE_DICTIONARY)); in TEST()
27 DictionaryValue* root_dict = static_cast<DictionaryValue*>(root.get()); in TEST()
123 DictionaryValue root; in TEST() local
125 root.SetString("web", test); in TEST()
131 ASSERT_TRUE(serializer.Serialize(root)); in TEST()
147 DictionaryValue root; in TEST() local
149 root.SetString("test", test); in TEST()
155 ASSERT_TRUE(serializer.Serialize(root)); in TEST()
[all …]
/external/webkit/Source/WebCore/dom/
DNodeIterator.cpp50 bool NodeIterator::NodePointer::moveToNext(Node* root) in moveToNext() argument
58 node = node->traverseNextNode(root); in moveToNext()
62 bool NodeIterator::NodePointer::moveToPrevious(Node* root) in moveToPrevious() argument
70 node = node->traversePreviousNode(root); in moveToPrevious()
76 , m_referenceNode(root(), true) in NodeIterator()
80 ASSERT(root()->document() || root()->nodeType() == Node::DOCUMENT_TYPE_NODE); in NodeIterator()
81 if (Document* ownerDocument = root()->document()) in NodeIterator()
87 if (Document* ownerDocument = root()->document()) in ~NodeIterator()
101 while (m_candidateNode.moveToNext(root())) { in nextNode()
130 while (m_candidateNode.moveToPrevious(root())) { in previousNode()
[all …]
/external/guava/guava/src/com/google/common/collect/
DBstRangeOps.java38 BstAggregate<? super N> aggregate, GeneralRange<K> range, @Nullable N root) { in totalInRange() argument
41 if (root == null || range.isEmpty()) { in totalInRange()
44 long total = aggregate.treeValue(root); in totalInRange()
46 total -= totalBeyondRangeToSide(aggregate, range, LEFT, root); in totalInRange()
49 total -= totalBeyondRangeToSide(aggregate, range, RIGHT, root); in totalInRange()
56 BstAggregate<? super N> aggregate, GeneralRange<K> range, BstSide side, @Nullable N root) { in totalBeyondRangeToSide() argument
58 while (root != null) { in totalBeyondRangeToSide()
59 if (beyond(range, root.getKey(), side)) { in totalBeyondRangeToSide()
60 accum += aggregate.entryValue(root); in totalBeyondRangeToSide()
61 accum += aggregate.treeValue(root.childOrNull(side)); in totalBeyondRangeToSide()
[all …]
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DLogManagerTest.java203 Logger root = new MockLogger("testAddLoggerReverseOrder", null); in testAddLoggerReverseOrder() local
217 manager.addLogger(root); in testAddLoggerReverseOrder()
218 assertSame(root, fooGrandChild.getParent()); in testAddLoggerReverseOrder()
219 assertSame(realRoot, root.getParent()); in testAddLoggerReverseOrder()
222 assertSame(root, foo.getParent()); in testAddLoggerReverseOrder()
233 assertSame(root, foo.getParent()); in testAddLoggerReverseOrder()
234 assertSame(realRoot, root.getParent()); in testAddLoggerReverseOrder()
238 Logger root = new MockLogger("testAddSimiliarLogger", null); in testAddSimiliarLogger() local
249 manager.addLogger(root); in testAddSimiliarLogger()
253 assertSame(root, fooChild.getParent()); in testAddSimiliarLogger()
[all …]
/external/v8/test/test262/
Dtestcfg.py45 def __init__(self, filename, path, context, root, mode, framework): argument
49 self.root = root
77 def __init__(self, context, root): argument
78 super(Test262TestConfiguration, self).__init__(context, root)
81 testroot = join(self.root, 'data', 'test', 'suite')
82 harness = [join(self.root, 'data', 'test', 'harness', f)
84 harness += [join(self.root, 'harness-adapt.js')]
86 for root, dirs, files in os.walk(testroot):
90 root_path = root[len(self.root):].split(os.path.sep)
97 test = Test262TestCase(join(root, file), test_path, self.context,
[all …]
/external/libcap-ng/libcap-ng-0.7/
Dlibcap-ng.spec11 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
90 %defattr(-,root,root,-)
92 %attr(0755,root,root) /%{_lib}/libcap-ng.so.*
95 %defattr(-,root,root,-)
96 %attr(0644,root,root) %{_mandir}/man3/*
97 %attr(0644,root,root) %{_includedir}/cap-ng.h
98 %attr(0755,root,root) %{_libdir}/libcap-ng.so
99 %attr(0644,root,root) %{_datadir}/aclocal/cap-ng.m4
103 %defattr(-,root,root,-)
104 %attr(755,root,root) /%{_libdir}/python?.?/site-packages/_capng.so
[all …]
/external/skia/src/core/
DSkRTree.cpp133 SkRTree::Branch* SkRTree::insert(Node* root, Branch* branch, uint16_t level) { in insert() argument
135 if (root->fLevel != level) { in insert()
136 int childIndex = this->chooseSubtree(root, branch); in insert()
137 toInsert = this->insert(root->child(childIndex)->fChild.subtree, branch, level); in insert()
138 root->child(childIndex)->fBounds = this->computeBounds( in insert()
139 root->child(childIndex)->fChild.subtree); in insert()
142 if (root->fNumChildren == fMaxChildren) { in insert()
146 Node* newSibling = this->allocateNode(root->fLevel); in insert()
149 toDivide[i] = *root->child(i); in insert()
155 root->fNumChildren = splitIndex; in insert()
[all …]
/external/blktrace/
Drbtree.c25 static void __rb_rotate_left(struct rb_node *node, struct rb_root *root) in __rb_rotate_left() argument
44 root->rb_node = right; in __rb_rotate_left()
48 static void __rb_rotate_right(struct rb_node *node, struct rb_root *root) in __rb_rotate_right() argument
67 root->rb_node = left; in __rb_rotate_right()
71 void rb_insert_color(struct rb_node *node, struct rb_root *root) in rb_insert_color() argument
96 __rb_rotate_left(parent, root); in rb_insert_color()
104 __rb_rotate_right(gparent, root); in rb_insert_color()
121 __rb_rotate_right(parent, root); in rb_insert_color()
129 __rb_rotate_left(gparent, root); in rb_insert_color()
133 rb_set_black(root->rb_node); in rb_insert_color()
[all …]

12345678910>>...87