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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/test/cintltst/
cconvtst.c 19 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)
32 addTestConvert(root);
33 addTestNewConvert(root);
34 addBOCU1Tests(root);
    [all...]
calltest.c 14 /* THE FILE WHERE ALL C API TESTS ARE ADDED TO THE ROOT */
19 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);
    [all...]
cutiltst.c 24 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)
36 addCStringTest(root);
    [all...]
cbkittst.c 24 void addBreakIter(TestNode** root);
26 void addBreakIter(TestNode** root)
28 addBrkIterAPITest(root);
nucnvtst.h 21 void addTestNewConvert(TestNode** root);
cformtst.c 37 void addURegionTest(TestNode** root);
38 void addUListFmtTest(TestNode** root);
40 void addFormatTest(TestNode** root);
42 void addFormatTest(TestNode** root)
44 addCalTest(root);
45 addDateForTest(root);
46 addDateTimePatternGeneratorTest(root);
47 addDateIntervalFormatTest(root);
48 addNumForTest(root);
49 addNumFrDepTest(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/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/libchrome/base/json/
json_reader_unittest.cc 28 scoped_ptr<Value> root = JSONReader().ReadToValue(" null "); local
29 ASSERT_TRUE(root.get());
30 EXPECT_TRUE(root->IsType(Value::TYPE_NULL));
33 root = JSONReader().ReadToValue("nu");
34 EXPECT_FALSE(root.get());
37 root = JSONReader().ReadToValue("true ");
38 ASSERT_TRUE(root.get());
39 EXPECT_TRUE(root->IsType(Value::TYPE_BOOLEAN));
42 root = JSONReader().ReadToValue("/* comment */null");
43 ASSERT_TRUE(root.get())
577 scoped_ptr<Value> root = JSONReader::Read( local
    [all...]
  /external/libweave/third_party/chromium/base/json/
json_reader_unittest.cc 23 scoped_ptr<Value> root = JSONReader().ReadToValue(" null "); local
24 ASSERT_TRUE(root.get());
25 EXPECT_TRUE(root->IsType(Value::TYPE_NULL));
28 root = JSONReader().ReadToValue("nu");
29 EXPECT_FALSE(root.get());
32 root = JSONReader().ReadToValue("true ");
33 ASSERT_TRUE(root.get());
34 EXPECT_TRUE(root->IsType(Value::TYPE_BOOLEAN));
37 root = JSONReader().ReadToValue("/* comment */null");
38 ASSERT_TRUE(root.get())
554 scoped_ptr<Value> root = JSONReader::Read( local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/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/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 22 addStringTest(TestNode** root);
25 addFileTest(TestNode** root);
28 addTranslitTest(TestNode** root);
31 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...]
  /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/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);
  /external/v8/test/unittests/wasm/
switch-logic-unittest.cc 26 CaseNode* root = OrderCases(&values, zone()); local
27 CHECK_NULL(root->left);
28 CHECK_NULL(root->right);
29 CheckNodeValues(root, 12, 19);
39 CaseNode* root = OrderCases(&values, zone()); local
40 CheckNodeValues(root, 5, 5);
41 CheckNodeValues(root->left, -4, -4);
42 CHECK_NULL(root->left->left);
43 CheckNodeValues(root->left->right, 1, 1);
44 CHECK_NULL(root->left->right->left)
65 CaseNode* root = OrderCases(&values, zone()); local
75 CaseNode* root = OrderCases(&values, zone()); local
83 CaseNode* root = OrderCases(&values, zone()); local
    [all...]
  /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...]

Completed in 699 milliseconds

1 2 3 4 5 6 7 8 91011>>