Searched defs:root (Results 1 - 25 of 760) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/test/cintltst/
H A Dcalltest.c21 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);
30 void addUTF16Test(TestNode** root);
49 addAllTests(TestNode** root) argument
[all...]
H A Dcbkittst.c26 void addBreakIter(TestNode** root);
28 void addBreakIter(TestNode** root) argument
30 addBrkIterAPITest(root);
H A Dcconvtst.c21 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) argument
34 addTestConvert(root);
35 addTestNewConvert(root);
36 addBOCU1Tests(root);
[all...]
H A Dcutiltst.c26 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) argument
38 addCStringTest(root);
[all...]
/external/libxml2/python/tests/
H A Dserialize.py11 doc = libxml2.parseDoc("""<root><foo>hello</foo></root>""")
14 <root><foo>hello</foo></root>
20 <root><foo>hello</foo></root>
26 <root>
28 </root>
34 <root>
36 </root>
44 root = doc.getRootElement() variable
112 root = doc.getRootElement() variable
[all...]
H A DcompareNodes.py11 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):
H A Dtst.py12 root = doc.children variable
13 if root.name != "doc":
14 print("root.name failed")
16 child = root.children
H A Dpush.py15 root = doc.children variable
16 if root.name != "foo":
17 print("root element name error")
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dspl_sqrt_floor.c35 * Successive approximation of the equation (root + delta) ^ 2 = N
48 try1 = root + (1 << (N)); \
52 root |= 2 << (N); \
57 int32_t root = 0, try1; local
76 return root >> 1;
H A Dspl_sqrt_floor_mips.c36 * 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],
[all...]
/external/fec/
H A Dinit_rs.h9 int i, j, sr,root,iprim; variable
82 /* Find prim-th root of 1, used in decoding */
88 for (i = 0,root=fcr*prim; i < nroots; i++,root += prim) {
91 /* Multiply rs->genpoly[] by @**(root + x) */
94 rs->genpoly[j] = rs->genpoly[j-1] ^ rs->alpha_to[modnn(rs,rs->index_of[rs->genpoly[j]] + root)];
99 rs->genpoly[0] = rs->alpha_to[modnn(rs,rs->index_of[rs->genpoly[0]] + root)];
/external/pdfium/core/fpdfdoc/
H A Dcpdf_formfield_unittest.cpp17 CPDF_Dictionary* root = obj_holder.NewIndirect<CPDF_Dictionary>(); local
18 root->SetNewFor<CPDF_Name>("T", "foo");
19 name = FPDF_GetFullName(root);
23 root->SetNewFor<CPDF_Reference>("Parent", &obj_holder, dict1->GetObjNum());
25 name = FPDF_GetFullName(root);
29 name = FPDF_GetFullName(root);
36 name = FPDF_GetFullName(root);
39 dict3->SetNewFor<CPDF_Reference>("Parent", &obj_holder, root->GetObjNum());
40 name = FPDF_GetFullName(root);
/external/smali/smalidea/src/main/java/org/jf/smalidea/
H A DSmaliParser.java44 @NotNull @Override public ASTNode parse(IElementType root, PsiBuilder builder) { argument
61 rootMarker.done(root);
/external/swiftshader/src/OpenGL/compiler/
H A DTranslatorASM.cpp23 bool TranslatorASM::translate(TIntermNode* root) argument
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCommonTreeNodeStream.h40 id root; variable
42 /** If this tree (root) was created from a token stream, track it. */
57 /** Tracks tree depth. Level=0 means we're at root node level. */
60 @property (retain, getter=getRoot, setter=setRoot:) ANTLRCommonTree *root; variable
H A DANTLRTreeIterator.h41 id<ANTLRTree> root; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCommonTreeNodeStream.h40 id root; variable
42 /** If this tree (root) was created from a token stream, track it. */
57 /** Tracks tree depth. Level=0 means we're at root node level. */
60 @property (retain, getter=getRoot, setter=setRoot:) ANTLRCommonTree *root; variable
H A DANTLRTreeIterator.h41 id<ANTLRTree> root; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCommonTreeNodeStream.h40 id root; variable
42 /** If this tree (root) was created from a token stream, track it. */
57 /** Tracks tree depth. Level=0 means we're at root node level. */
60 @property (retain, getter=getRoot, setter=setRoot:) ANTLRCommonTree *root; variable
H A DANTLRTreeIterator.h41 id<ANTLRTree> root; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DAMutableDictionary.h18 __strong ACBTree *root; variable
27 @property (retain) ACBTree *root; variable
H A DANTLRCommonTreeNodeStream.h40 __strong id root; variable
42 /** If this tree (root) was created from a token stream, track it. */
57 /** Tracks tree depth. Level=0 means we're at root node level. */
60 @property (retain, getter=getRoot, setter=setRoot:) ANTLRCommonTree *root; variable
H A DANTLRTreeIterator.h42 __strong id<ANTLRBaseTree> root; variable
53 @property(retain) id<ANTLRBaseTree> root; variable
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Jetty.java129 public static int startHttpServerWithDocRoot(String root) throws Exception { argument
137 resource_handler.setResourceBase(root);
/external/apache-xml/src/main/java/org/apache/xpath/
H A DSourceTree.java36 * @param root The root of the source tree, which may or may not be a
40 public SourceTree(int root, String url) argument
42 m_root = root;
49 /** The root of the source tree, which may or may not be a

Completed in 529 milliseconds

1234567891011>>