Searched refs:tmp_node (Results 1 - 6 of 6) sorted by relevance

/external/libvpx/examples/includes/ASCIIMathPHP-2.0/
H A DhtmlMathML.js36 var tmp_node = mmlnode[i];
37 if (tmp_node.className == 'asciimath') {
38 tmp_node.replaceChild(convertMath(tmp_node.firstChild),tmp_node.firstChild);
40 for (var j=0;j<tmp_node.childNodes.length;j++) {
41 if (tmp_node.childNodes[j].nodeType != 3) {
H A DASCIIMathPHP-2.0.class.php460 $tmp_node = $this->createNode(); variable
461 $tmp_node->setName('mn');
462 $tmp_node->setContent('&#' . hexdec('200B') . ';');
463 return $tmp_node;
678 $tmp_node = $node_arr[$key_node_arr[$i]]; variable
680 if($tmp_node_first = $tmp_node->getFirstChild()) {
686 if($tmp_node_last = $tmp_node->getLastChild()) {
703 $is_mtrx_flg = $tmp_node->getName() == 'mrow' &&
709 for ($j = 0;$j < $tmp_node->getNumChild();$j++) {
710 $tmp_c_node = $tmp_node
[all...]
/external/libsepol/src/
H A Dnodes.c19 ocontext_t *tmp_node = NULL; local
23 tmp_node = (ocontext_t *) calloc(1, sizeof(ocontext_t));
24 if (!tmp_node)
39 memcpy(&tmp_node->u.node.addr, addr_buf, addr_bsize);
40 memcpy(&tmp_node->u.node.mask, mask_buf, mask_bsize);
43 memcpy(tmp_node->u.node6.addr, addr_buf, addr_bsize);
44 memcpy(tmp_node->u.node6.mask, mask_buf, mask_bsize);
59 context_cpy(&tmp_node->context[0], tmp_con);
64 *node = tmp_node;
71 if (tmp_node !
[all...]
H A Dnode_record.c577 sepol_node_t *tmp_node = (sepol_node_t *) malloc(sizeof(sepol_node_t)); local
579 if (!tmp_node) {
584 tmp_node->addr = NULL;
585 tmp_node->addr_sz = 0;
586 tmp_node->mask = NULL;
587 tmp_node->mask_sz = 0;
588 tmp_node->proto = SEPOL_PROTO_IP4;
589 tmp_node->con = NULL;
590 *node = tmp_node;
/external/opencv/ml/src/
H A Dmlsvm.cpp2124 CvFileNode* tmp_node = cvGetFileNodeByName( fs, svm_node, "svm_type" ); local
2126 if( !tmp_node )
2129 if( CV_NODE_TYPE(tmp_node->tag) == CV_NODE_INT )
2130 svm_type = cvReadInt( tmp_node, -1 );
2133 const char* svm_type_str = cvReadString( tmp_node, "" );
2149 tmp_node = cvGetFileNodeByName( fs, kernel_node, "type" );
2150 if( !tmp_node )
2153 if( CV_NODE_TYPE(tmp_node->tag) == CV_NODE_INT )
2154 kernel_type = cvReadInt( tmp_node, -1 );
2157 const char* kernel_type_str = cvReadString( tmp_node, "" );
[all...]
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_model.cc327 BookmarkNode tmp_node(url);
328 NodesOrderedByURLSet::iterator i = nodes_ordered_by_url_set_.find(&tmp_node);
507 BookmarkNode tmp_node(url);
508 return (nodes_ordered_by_url_set_.find(&tmp_node) !=

Completed in 143 milliseconds