Searched defs:tree (Results 226 - 250 of 303) sorted by relevance

1234567891011>>

/external/libxml2/
H A Dxmllint.c76 #include <libxml/tree.h>
1106 const xmlChar * defaultValue, xmlEnumerationPtr tree)
1117 xmlFreeEnumeration(tree);
2254 * build an XML tree from a string;
2995 printf("\t--debug : dump a debug tree of the in-memory document\n");
3010 printf("\t--noout : don't output the result tree\n");
3077 printf("\t--dtdattr : loaddtd + populate the tree with inherited attributes \n");
3096 printf("\t--sax: do not build a tree but work just at the SAX level\n");
1104 attributeDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar * elem, const xmlChar * name, int type, int def, const xmlChar * defaultValue, xmlEnumerationPtr tree) argument
H A Druntest.c26 #include <libxml/tree.h>
990 const xmlChar * defaultValue, xmlEnumerationPtr tree)
1001 xmlFreeEnumeration(tree);
1722 * Parse to tree based tests *
3713 * build an XML tree from a the file; we need to add default
988 attributeDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar * elem, const xmlChar * name, int type, int def, const xmlChar * defaultValue, xmlEnumerationPtr tree) argument
H A Dvalid.c259 * need of a tree to validate the content model. this is done in each
342 * only restriction is on the deepness of the tree limited by the
355 unsigned char depth; /* current depth in the overall tree */
1096 * @cur: the element content tree to free
1139 * @cur: the element content tree to free
1374 * @content: the element content tree or NULL
1771 * @cur: the tree to free.
1788 * @cur: the tree to copy.
1882 if (attr->tree != NULL)
1883 xmlFreeEnumeration(attr->tree);
1926 xmlAddAttributeDecl(xmlValidCtxtPtr ctxt, xmlDtdPtr dtd, const xmlChar *elem, const xmlChar *name, const xmlChar *ns, xmlAttributeType type, xmlAttributeDefault def, const xmlChar *defaultValue, xmlEnumerationPtr tree) argument
4195 xmlEnumerationPtr tree = attr->tree; local
4441 xmlEnumerationPtr tree = attrDecl->tree; local
4471 xmlEnumerationPtr tree = attrDecl->tree; local
4638 xmlEnumerationPtr tree = attrDecl->tree; local
4680 xmlEnumerationPtr tree = attrDecl->tree; local
6695 xmlEnumerationPtr tree = cur->tree; local
[all...]
H A Dtree.c2 * tree.c : implementation of access function for an XML tree.
29 #include <libxml/tree.h>
56 xmlNewReconciliedNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns);
1200 * Free up all the structures used by a document, tree included.
1265 * produce a flat tree with only TEXTs and ENTITY_REFs.
1473 * produce a flat tree with only TEXTs and ENTITY_REFs.
2787 * @tree: the top element
2790 * update all nodes under the tree to point to the right document
2793 xmlSetTreeDoc(xmlNodePtr tree, xmlDocPt argument
6219 xmlNewReconciliedNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns) argument
6288 xmlReconciliateNs(xmlDocPtr doc, xmlNodePtr tree) argument
[all...]
/external/opencv/ml/src/
H A Dmlboost.cpp137 // traverse the tree and scale all the node values
740 // in case of regression tree:
948 CvBoostTree* tree = new CvBoostTree; local
949 if( !tree->train( data, subsample_mask, this ) )
951 delete tree;
955 cvSeqPush( weak, &tree );
956 update_weights( tree );
970 CvBoost::update_weights( CvBoostTree* tree )
979 if( !tree ) // before training the first tree, initializ
1577 CvBoostTree* tree = new CvBoostTree(); local
1609 CvBoostTree* tree; local
[all...]
/external/opencv3/3rdparty/libwebp/dec/
H A Dvp8l.c5 // tree. An additional intellectual property rights grant can be found
7 // be found in the AUTHORS file in the root of the source tree.
155 static WEBP_INLINE int ReadSymbol(const HuffmanTree* tree, argument
157 const HuffmanTreeNode* node = tree->root_;
178 HuffmanTree tree; local
180 if (!HuffmanTreeBuildImplicit(&tree, code_length_code_lengths,
202 code_len = ReadSymbol(&tree, br);
224 HuffmanTreeRelease(&tree);
229 HuffmanTree* const tree) {
250 ok = HuffmanTreeBuildExplicit(tree, code_length
228 ReadHuffmanCode(int alphabet_size, VP8LDecoder* const dec, HuffmanTree* const tree) argument
[all...]
/external/opencv3/3rdparty/libwebp/enc/
H A Dvp8l.c5 // tree. An additional intellectual property rights grant can be found
7 // be found in the AUTHORS file in the root of the source tree.
307 const HuffmanTreeCode* const tree) {
311 const int max_tokens = tree->num_symbols;
323 num_tokens = VP8LCreateCompressedHuffmanTree(tree, tokens, max_tokens);
384 // Check whether it's a small tree.
392 if (count == 0) { // emit minimal tree for empty cases
393 // bits: small tree marker: 1, count-1: 0, large 8-bit code: 0, code: 0
397 VP8LWriteBits(bw, 1, 1); // Small tree marker to encode 1 or 2 symbols.
479 const uint16_t histogram_symbols[1] = { 0 }; // only one tree, on
306 StoreFullHuffmanCode(VP8LBitWriter* const bw, const HuffmanTreeCode* const tree) argument
[all...]
/external/opencv3/apps/traincascade/
H A Dboost.cpp660 // create memory storage that will keep nodes and splits of the decision tree
958 CV_Error( CV_StsError, "The tree has not been trained yet" );
1057 // read tree nodes
1377 CvCascadeBoostTree* tree = new CvCascadeBoostTree; local
1378 if( !tree->train( data, subsample_mask, this ) )
1380 delete tree;
1383 cvSeqPush( weak, &tree );
1384 update_weights( tree );
1430 void CvCascadeBoost::update_weights( CvBoostTree* tree )
1439 ( !tree
1745 CvCascadeBoostTree* tree = new CvCascadeBoostTree(); local
[all...]
H A Dold_ml_boost.cpp136 // traverse the tree and scale all the node values
844 // in case of regression tree:
1067 CvBoostTree* tree = new CvBoostTree; local
1068 if( !tree->train( data, subsample_mask, this ) )
1070 delete tree;
1074 cvSeqPush( weak, &tree );
1075 update_weights( tree );
1128 CvBoost::update_weights( CvBoostTree* tree )
1142 if( !tree )
1163 if( !tree ) // befor
[all...]
/external/svox/pico/lib/
H A Dpicokdt.c45 /* decision tree */
53 overview extended binary tree file:
55 tree part
58 used in the tree
62 - bin-file, decision tree knowledge base in binary form
64 - dt-kb = header inputmaptables outputmaptables tree
76 start of kb to the start of the tree
104 part of kb, e.g. tree),
122 - NRINBYTES2: two bytes, number of single byte IDs the tree can produce
133 - tree
245 picoos_uint8 *tree; member in struct:__anon17410
[all...]
/external/v8/test/cctest/
H A Dtest-cpu-profiler.cc573 // Check that the profile tree for the script above will look like the
645 // Check that the profile tree for the script above will look like the
728 // Check that the profile tree doesn't contain unexpected traces:
1145 const i::ProfileTree* tree = profile->top_down(); local
1146 ProfileNode* root = tree->root();
1694 // The tree should look like this:
/external/webp/src/enc/
H A Dvp8l.c5 // tree. An additional intellectual property rights grant can be found
7 // be found in the AUTHORS file in the root of the source tree.
561 const HuffmanTreeCode* const tree) {
564 const int max_tokens = tree->num_symbols;
572 num_tokens = VP8LCreateCompressedHuffmanTree(tree, tokens, max_tokens);
631 // Check whether it's a small tree.
639 if (count == 0) { // emit minimal tree for empty cases
640 // bits: small tree marker: 1, count-1: 0, large 8-bit code: 0, code: 0
643 VP8LPutBits(bw, 1, 1); // Small tree marker to encode 1 or 2 symbols.
753 const uint16_t histogram_symbols[1] = { 0 }; // only one tree, on
558 StoreFullHuffmanCode(VP8LBitWriter* const bw, HuffmanTree* const huff_tree, HuffmanTreeToken* const tokens, const HuffmanTreeCode* const tree) argument
[all...]
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jar ... org/mockito/asm/ org/mockito/asm/signature/ org/mockito/asm/tree/ org/mockito/asm/tree/analysis/ org/mockito/asm/util/ org ...
/external/robolectric/v1/lib/test/
H A Dmockito-core-1.8.5.jar ... org/mockito/asm/ org/mockito/asm/signature/ org/mockito/asm/tree/ org/mockito/asm/tree/analysis/ org/mockito/asm/util/ org ...
/external/guice/extensions/persist/lib/
H A Dognl-2.6.7.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/ASTAdd.class ASTAdd.java package ognl ...
H A Dhibernate-annotations.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/annotationfactory/ org/hibernate/annotations/ org/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.preferences_3.3.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.team.core_3.5.100.R36x_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammar.java39 import org.antlr.runtime.tree.CommonTreeNodeStream;
65 public static final int WILDCARD_TREE_LABEL = 6; // Used in tree grammar x=.
66 public static final int WILDCARD_TREE_LIST_LABEL = 7; // Used in tree grammar x+=.
70 {"<invalid>", "rule", "token", "rule-list", "token-list", "wildcard-tree", "wildcard-tree-list"};
112 "tree",
120 "", // no suffix for tree grammars
124 /** Set of valid imports. E.g., can only import a tree parser into
125 * another tree parser. Maps delegate to set of delegator grammar types.
187 /** What type of grammar is this: lexer, parser, tree walke
1411 defineRule(Token ruleToken, String modifier, Map options, GrammarAST tree, GrammarAST argActionAST, int numAlts) argument
[all...]
/external/libxml2/python/
H A Dlibxml.c19 #include <libxml/tree.h>
1308 const xmlChar * defaultValue, xmlEnumerationPtr tree)
1320 for (node = tree; node != NULL; node = node->next) {
1325 for (node = tree; node != NULL; node = node->next) {
1303 pythonAttributeDecl(void *user_data, const xmlChar * elem, const xmlChar * name, int type, int def, const xmlChar * defaultValue, xmlEnumerationPtr tree) argument
/external/opencv/cv/src/
H A Dcvhaar.cpp1549 /* tree links */
1626 /* load tree links */
1857 " (stage %d, tree %d)", i, j );
1884 sprintf( buf, "Tree node %d is not a valid map. (stage %d, tree %d)",
1893 "(stage %d, tree %d, node %d)", i, j, k );
1903 "(stage %d, tree %d, node %d)", i, j, k );
1916 "(stage %d, tree %d, node %d)", l, i, j, k );
1924 "(stage %d, tree %d, node %d, rect %d)", i, j, k, l );
1932 "(stage %d, tree %d, node %d, rect %d)", i, j, k, l );
1942 "(stage %d, tree
2165 CvHaarClassifier* tree = &cascade->stage_classifier[i].classifier[j]; local
[all...]
/external/opencv3/modules/objdetect/src/
H A Dhaar.cpp1835 /* tree links */
1912 /* load tree links */
2128 " (stage %d, tree %d)", i, j );
2155 sprintf( buf, "Tree node %d is not a valid map. (stage %d, tree %d)",
2163 "(stage %d, tree %d, node %d)", i, j, k );
2172 "(stage %d, tree %d, node %d)", i, j, k );
2185 "(stage %d, tree %d, node %d)", l, i, j, k );
2193 "(stage %d, tree %d, node %d, rect %d)", i, j, k, l );
2201 "(stage %d, tree %d, node %d, rect %d)", i, j, k, l );
2211 "(stage %d, tree
2420 CvHaarClassifier* tree = &cascade->stage_classifier[i].classifier[j]; local
[all...]
/external/guice/extensions/struts2/lib/
H A Dognl-3.0.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/enhance/ ognl/internal/ ognl/SimpleNode.class SimpleNode ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.core.resources_3.10.0.v20150423-0755.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...

Completed in 3126 milliseconds

1234567891011>>