HomeSort by relevance Sort by last modified time
    Searched refs:root (Results 1 - 25 of 5522) 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/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...]
  /external/curl/tests/
extern-scan.pl 29 # we may get the dir root pointed out
30 my $root=$ARGV[0] || ".";
33 "$root/include/curl/curl.h",
34 "$root/include/curl/easy.h",
35 "$root/include/curl/mprintf.h",
36 "$root/include/curl/multi.h",
  /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());
  /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/pdfium/third_party/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/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.25/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);
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/test_ttk/
support.py 5 root = Tkinter._default_root
7 # it is possible to disable default root in Tkinter, although
10 root = None
12 if root is None:
14 root = Tkinter.Tk()
16 return root
19 root = get_tk_root()
20 root.deiconify()
23 root = get_tk_root()
24 root.withdraw(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/test_ttk/
support.py 5 root = Tkinter._default_root
7 # it is possible to disable default root in Tkinter, although
10 root = None
12 if root is None:
14 root = Tkinter.Tk()
16 return root
19 root = get_tk_root()
20 root.deiconify()
23 root = get_tk_root()
24 root.withdraw(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
support.py 5 root = Tkinter._default_root
7 # it is possible to disable default root in Tkinter, although
10 root = None
12 if root is None:
14 root = Tkinter.Tk()
16 return root
19 root = get_tk_root()
20 root.deiconify()
23 root = get_tk_root()
24 root.withdraw(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
support.py 5 root = Tkinter._default_root
7 # it is possible to disable default root in Tkinter, although
10 root = None
12 if root is None:
14 root = Tkinter.Tk()
16 return root
19 root = get_tk_root()
20 root.deiconify()
23 root = get_tk_root()
24 root.withdraw(
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
TemplateSyntaxTree.java 24 * Simple wrapper class to encapsulate the root node of the AST and allow additional information to
28 private final Start root; field in class:TemplateSyntaxTree
30 TemplateSyntaxTree(Start root) {
31 this.root = root;
35 return root;
40 root.apply(sw);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
rotatingtree.c 29 (*root) is modified to point to the new root. */
31 RotatingTree_Add(rotating_node_t **root, rotating_node_t *node)
33 while (*root != NULL) {
34 if (KEY_LOWER_THAN(node->key, (*root)->key))
35 root = &((*root)->left);
37 root = &((*root)->right);
41 *root = node;
    [all...]

Completed in 920 milliseconds

1 2 3 4 5 6 7 8 91011>>