HomeSort by relevance Sort by last modified time
    Searched refs:root (Results 1 - 25 of 6371) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/test/cintltst/
cconvtst.c 21 void addTestConvertErrorCallBack(TestNode** root);
22 void addTestEuroRegression(TestNode** root);
23 void addTestConverterFallBack(TestNode** root);
24 void addExtraTests(TestNode** root);
28 addBOCU1Tests(TestNode** root);
30 void addConvert(TestNode** root);
32 void addConvert(TestNode** root)
34 addTestConvert(root);
35 addTestNewConvert(root);
36 addBOCU1Tests(root);
    [all...]
calltest.c 16 /* THE FILE WHERE ALL C API TESTS ARE ADDED TO THE ROOT */
21 void addUtility(TestNode** root);
22 void addBreakIter(TestNode** root);
23 void addStandardNamesTest(TestNode **root);
24 void addFormatTest(TestNode** root);
25 void addConvert(TestNode** root);
26 void addCollTest(TestNode** root);
27 void addComplexTest(TestNode** root);
28 void addBidiTransformTest(TestNode** root);
29 void addUDataTest(TestNode** root);
    [all...]
cutiltst.c 26 void addHashtableTest(TestNode** root);
27 void addCStringTest(TestNode** root);
28 void addTrieTest(TestNode** root);
29 void addTrie2Test(TestNode** root);
30 void addEnumerationTest(TestNode** root);
31 void addPosixTest(TestNode** root);
32 void addSortTest(TestNode** root);
34 void addUtility(TestNode** root);
36 void addUtility(TestNode** root)
38 addCStringTest(root);
    [all...]
cbkittst.c 26 void addBreakIter(TestNode** root);
28 void addBreakIter(TestNode** root)
30 addBrkIterAPITest(root);
nucnvtst.h 23 void addTestNewConvert(TestNode** root);
cformtst.c 40 void addURegionTest(TestNode** root);
41 void addUListFmtTest(TestNode** root);
43 void addFormatTest(TestNode** root);
45 void addFormatTest(TestNode** root)
47 addCalTest(root);
48 addDateForTest(root);
49 addDateTimePatternGeneratorTest(root);
50 addDateIntervalFormatTest(root);
52 addRelativeDateFormatTest(root);
54 addNumForTest(root);
    [all...]
  /external/javaparser/javaparser-testing/src/test/resources/com/github/javaparser/storage/
A.java 1 package com.blablabla.root
  /external/toolchain-utils/binary_search_tool/full_bisect_test/
inorder.c 6 real_inorder (tree_ptr root)
8 if (root == NULL)
11 real_inorder (root->left);
12 printf ("%d ", root->data);
13 real_inorder (root->right);
17 in_order_traverse (tree_ptr root)
20 real_inorder (root);
preorder.c 6 real_preorder (tree_ptr root)
8 if (root == NULL)
11 printf ("%d ", root->data);
12 real_preorder (root->left);
13 real_preorder (root->right);
18 pre_order_traverse (tree_ptr root)
21 real_preorder (root) ;
main.c 17 tree_ptr root = NULL; local
20 search_tree_insert (&root, integers[i]);
22 pre_order_traverse (root);
24 pre_order_traverse_no_recurse (root);
26 in_order_traverse (root);
28 in_order_traverse_no_recurse (root);
build.c 15 search_tree_insert (tree_ptr *root, int value)
17 if (*root == NULL)
18 *root = new_node (value);
19 else if (value < (*root)->data)
20 search_tree_insert (&((*root)->left), value);
21 else if (value > (*root)->data)
22 search_tree_insert (&((*root)->right), value);
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/
HTMLElementTest.java 29 private HTMLElement root; field in class:HTMLElementTest
34 root = new HTMLElement(buffer, "root") {
43 root.meta("key", "value");
44 root.close();
46 "<root><meta http-equiv=\"key\" content=\"value\"/></root>",
52 root.link("stylesheet", "style.css", "text/css");
53 root.close();
55 "<root><link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"/></root>"
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
XMLElementTest.java 29 private XMLElement root; field in class:XMLElementTest
34 root = new XMLElement(buffer, "root");
35 root.beginOpenTag();
40 root.close();
42 root.close();
43 assertEquals("<root/>", buffer.toString());
48 root.close();
49 root.attr("attr", "value");
54 root.close()
    [all...]
  /frameworks/base/test-runner/src/android/test/suitebuilder/
AssignableFrom.java 23 private final Class<?> root; field in class:AssignableFrom
25 AssignableFrom(Class<?> root) {
26 this.root = root;
30 return root.isAssignableFrom(testMethod.getEnclosingClass());
  /frameworks/base/tools/aapt2/cmd/
Util_test.cpp 31 const auto &root = doc->root; local
32 EXPECT_EQ(root->name, "manifest");
34 EXPECT_EQ(root->FindAttribute("", "split")->value, "config.b_sr_Latn_en_rUS_land");
36 EXPECT_EQ(root->FindAttribute("", "targetConfig")->value, "b+sr+Latn,en-rUS-land");
  /external/libnl/etc/
classid 31 ffff:ffff root
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ViewGroupTest.java 32 private ViewGroup root; field in class:ViewGroupTest
45 root = new FrameLayout(context);
53 root.addView(child1);
54 root.addView(child2);
55 root.addView(child3);
71 assertThat(root.getLayoutAnimationListener(), nullValue());
83 root.setLayoutAnimationListener(animationListener);
85 assertThat(root.getLayoutAnimationListener(), sameInstance(animationListener));
90 root.removeViewAt(1);
92 assertThat(root.getChildCount(), equalTo(2))
    [all...]
  /external/freetype/src/cid/
cidparse.h 42 /* root :: The root PS_ParserRec fields. */
63 PS_ParserRec root; member in struct:CID_Parser_
96 (p)->root.funcs.skip_spaces( &(p)->root )
98 (p)->root.funcs.skip_PS_token( &(p)->root )
100 #define cid_parser_to_int( p ) (p)->root.funcs.to_int( &(p)->root )
101 #define cid_parser_to_fixed( p, t ) (p)->root.funcs.to_fixed( &(p)->root, t
    [all...]
  /external/icu/icu4c/source/test/iotest/
iotest.h 24 addStringTest(TestNode** root);
27 addFileTest(TestNode** root);
30 addTranslitTest(TestNode** root);
33 addStreamTests(TestNode** root);
  /external/python/cpython2/Demo/tkinter/guido/
optionmenu.py 5 root = Tk() variable
13 menu1 = OptionMenu(root, var1, "One", "Two", "Three")
24 menu2 = apply(OptionMenu, (root, var2) + tuple(CHOICES))
27 root.mainloop()
  /external/webrtc/webrtc/common_audio/signal_processing/
spl_sqrt_floor_mips.c 36 * Successive approximation of the equation (root + delta) ^ 2 = N
51 int32_t root = 0, tmp1, tmp2, tmp3, tmp4; local
61 "or %[tmp4], %[root], %[tmp1] \n\t"
63 "movz %[root], %[tmp4], %[tmp2] \n\t"
66 "addu %[tmp1], %[tmp1], %[root] \n\t"
70 "ori %[tmp4], %[root], 0x8000 \n\t"
72 "movz %[root], %[tmp4], %[tmp2] \n\t"
75 "addu %[tmp1], %[tmp1], %[root] \n\t"
79 "ori %[tmp4], %[root], 0x4000 \n\t"
81 "movz %[root], %[tmp4], %[tmp2] \n\t
    [all...]
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
Roots.java 25 RootInfo root = new RootInfo(); local
26 root.authority = "test-authority";
27 root.rootId = id;
28 return root;
  /toolchain/binutils/binutils-2.27/gprof/
cg_dfn.h 35 extern void cg_dfn (Sym * root);
  /external/libxml2/python/tests/
compareNodes.py 11 doc = libxml2.parseDoc("""<root><foo/></root>""")
12 root = doc.getRootElement() variable
15 foonode1 = root.children
16 foonode2 = root.children
22 if not ( foonode1 != root ):
25 if not ( foonode1 != root ):
34 if not (hash(foonode1) != hash(root)):
37 if hash(foonode1) == hash(root):
  /system/core/libcutils/include/cutils/
config_utils.h 37 void config_load(cnode *root, char *data);
40 void config_load_file(cnode *root, const char *fn);
46 cnode* config_find(cnode *root, const char *name);
49 int config_bool(cnode *root, const char *name, int _default);
52 const char* config_str(cnode *root, const char *name, const char *_default);
55 void config_set(cnode *root, const char *name, const char *value);
58 void config_free(cnode *root);

Completed in 852 milliseconds

1 2 3 4 5 6 7 8 91011>>