Searched refs:cur (Results 1 - 25 of 350) sorted by relevance

1234567891011>>

/external/chromium/base/
H A Dbase_paths.cc16 FilePath cur; local
19 PathService::Get(base::FILE_EXE, &cur);
20 cur = cur.DirName();
23 PathService::Get(base::FILE_MODULE, &cur);
24 cur = cur.DirName();
27 if (!file_util::GetTempDir(&cur))
34 *result = cur;
H A Dbase_paths_win.cc30 FilePath cur; local
34 cur = FilePath(system_buffer);
41 cur = FilePath(system_buffer);
46 cur = FilePath(system_buffer);
50 cur = FilePath(system_buffer);
56 cur = FilePath(system_buffer);
62 cur = FilePath(system_buffer);
68 cur = FilePath(system_buffer);
74 cur = FilePath(system_buffer);
80 cur
[all...]
/external/chromium/chrome/common/
H A Dchrome_paths.cc112 FilePath cur; local
115 if (!GetDefaultUserDataDirectory(&cur)) {
122 if (!GetUserDocumentsDirectory(&cur))
128 if (!GetUserDownloadsDirectorySafe(&cur))
135 if (!GetUserDownloadsDirectory(&cur))
145 if (!GetDefaultUserDataDirectory(&cur))
147 cur = cur.Append(FILE_PATH_LITERAL("Crash Reports"));
151 if (!GetUserDesktop(&cur))
156 cur
[all...]
/external/oprofile/libutil++/tests/
H A Dstring_manip_tests.cpp55 input_output<char const *, char const*> const * cur; local
56 for (cur = expect_erase; cur->input; ++cur) {
57 string result = erase_to_last_of(cur->input, ';');
58 check_result("erase_to_last_of()", cur->input, cur->output,
81 input_output<char const *, pair<string, string> > const * cur; local
82 for (cur = expect_split; cur
106 input_output<char const *, pair<string, bool> > const * cur; local
138 input_output<char const *, char const *[max_token]> const * cur; local
185 input_output<char const *, char const*> const * cur; local
207 input_output<char const *, char const*> const * cur; local
229 input_output<char const *, char const*> const * cur; local
251 input_output<double, char const*> const * cur; local
271 input_output<unsigned int, char const *> const * cur; local
282 input_output<unsigned int, char const *> const * cur; local
301 input_output<char const *, bool> const * cur; local
[all...]
H A Dfile_manip_tests.cpp80 input_output<char const *, char const *> const * cur; local
81 for (cur = expect_dirname; cur->input; ++cur) {
82 string result = op_dirname(cur->input);
83 check_result("dirname", cur->input, cur->output, result);
108 input_output<char const *, char const *> const * cur; local
109 for (cur = expect_basename; cur
130 input_output<char const *, bool> const * cur; local
154 input_output<pair<string, string>, bool> const * cur; local
180 input_output<char const *, bool> const * cur; local
205 input_output<string, string> const * cur; local
[all...]
/external/dropbear/libtomcrypt/src/math/
H A Dmulti.c18 void **cur = a; local
23 while (cur != NULL) {
24 if (mp_init(cur) != CRYPT_OK) {
29 cur = a;
31 mp_clear(*cur);
32 cur = va_arg(clean_list, void**);
38 cur = va_arg(args, void**);
46 void *cur = a; local
50 while (cur != NULL) {
51 mp_clear(cur);
[all...]
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dproc-llist.c32 l->cur = NULL;
61 l->cur->next = newnode;
64 l->cur = newnode;
71 register lnode* cur; local
73 cur = l->head;
74 while (cur) {
75 nextnode=cur->next;
76 free(cur->cmd);
77 free(cur->capabilities);
78 free(cur
89 register lnode* cur; local
[all...]
/external/oprofile/libregex/tests/
H A Djava_test.cpp57 input_output const * cur; local
58 for (cur = mangle_tests; cur->mangled; ++cur) {
59 string result = demangle_java_symbol(cur->mangled);
60 check_result(cur->mangled, cur->expect, result);
/external/libxml2/
H A DHTMLtree.c49 htmlNodePtr cur; local
55 cur = doc->children;
60 while (cur != NULL) {
61 if ((cur->type == XML_ELEMENT_NODE) && (cur->name != NULL)) {
62 if (xmlStrEqual(cur->name, BAD_CAST"html"))
64 if (xmlStrEqual(cur->name, BAD_CAST"head"))
66 if (xmlStrEqual(cur->name, BAD_CAST"meta"))
69 cur = cur
163 htmlNodePtr cur, meta = NULL, head = NULL; local
404 htmlNodeDumpFormat(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, int format) argument
448 htmlNodeDump(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur) argument
469 htmlNodeDumpFileFormat(FILE *out, xmlDocPtr doc, xmlNodePtr cur, const char *encoding, int format) argument
518 htmlNodeDumpFile(FILE *out, xmlDocPtr doc, xmlNodePtr cur) argument
533 htmlDocDumpMemoryFormat(xmlDocPtr cur, xmlChar**mem, int *size, int format) argument
611 htmlDocDumpMemory(xmlDocPtr cur, xmlChar**mem, int *size) argument
637 xmlDtdPtr cur = doc->intSubset; local
669 htmlAttrDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlAttrPtr cur, const char *encoding ATTRIBUTE_UNUSED) argument
731 htmlAttrListDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlAttrPtr cur, const char *encoding) argument
754 htmlNodeListDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, const char *encoding, int format) argument
776 htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, const char *encoding, int format) argument
965 htmlNodeDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, const char *encoding) argument
980 htmlDocContentDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr cur, const char *encoding, int format) argument
1013 htmlDocContentDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr cur, const char *encoding) argument
1034 htmlDocDump(FILE *f, xmlDocPtr cur) argument
1094 htmlSaveFile(const char *filename, xmlDocPtr cur) argument
1157 htmlSaveFileFormat(const char *filename, xmlDocPtr cur, const char *encoding, int format) argument
1221 htmlSaveFileEnc(const char *filename, xmlDocPtr cur, const char *encoding) argument
[all...]
H A Dtree.c365 const xmlChar *cur = value; local
375 while (IS_BLANK_CH(*cur)) cur++;
376 if (((*cur >= 'a') && (*cur <= 'z')) || ((*cur >= 'A') && (*cur <= 'Z')) ||
377 (*cur == '_'))
378 cur++;
381 while (((*cur >
439 const xmlChar *cur = value; local
537 const xmlChar *cur = value; local
606 const xmlChar *cur = value; local
719 xmlNsPtr cur; local
809 xmlFreeNs(xmlNsPtr cur) argument
829 xmlFreeNsList(xmlNsPtr cur) argument
860 xmlDtdPtr cur; local
908 xmlNodePtr cur; local
934 xmlDtdPtr cur; local
1086 xmlFreeDtd(xmlDtdPtr cur) argument
1145 xmlDocPtr cur; local
1191 xmlFreeDoc(xmlDocPtr cur) argument
1261 const xmlChar *cur = value, *end = cur + len; local
1458 const xmlChar *cur = value; local
1796 xmlAttrPtr cur; local
1969 xmlAttrPtr cur; local
2022 xmlFreePropList(xmlAttrPtr cur) argument
2039 xmlFreeProp(xmlAttrPtr cur) argument
2067 xmlRemoveProp(xmlAttrPtr cur) argument
2119 xmlNodePtr cur; local
2181 xmlNodePtr cur; local
2223 xmlNodePtr cur; local
2272 xmlNodePtr cur; local
2309 xmlNodePtr cur; local
2343 xmlNodePtr cur; local
2365 xmlNodePtr cur; local
2395 xmlNodePtr cur; local
2441 xmlNodePtr cur, prev; local
2510 xmlNodePtr cur; local
2553 xmlNodePtr cur; local
2609 xmlNodePtr cur; local
2626 xmlNodePtr cur; local
2661 xmlNodePtr cur; local
2677 xmlNodePtr cur; local
2711 xmlNodePtr cur; local
2744 xmlNodePtr cur; local
2788 xmlNodePtr cur; local
2821 xmlNodePtr cur, prev; local
2894 xmlAddPropSibling(xmlNodePtr prev, xmlNodePtr cur, xmlNodePtr prop) argument
2944 xmlAddNextSibling(xmlNodePtr cur, xmlNodePtr elem) argument
3022 xmlAddPrevSibling(xmlNodePtr cur, xmlNodePtr elem) argument
3098 xmlAddSibling(xmlNodePtr cur, xmlNodePtr elem) argument
3174 xmlAddChildList(xmlNodePtr parent, xmlNodePtr cur) argument
3260 xmlAddChild(xmlNodePtr parent, xmlNodePtr cur) argument
3415 xmlNodePtr cur = NULL; local
3450 xmlNodePtr cur = NULL; local
3485 xmlNodePtr cur = NULL; local
3596 xmlFreeNodeList(xmlNodePtr cur) argument
3666 xmlFreeNode(xmlNodePtr cur) argument
3739 xmlUnlinkNode(xmlNodePtr cur) argument
3813 xmlReplaceNode(xmlNodePtr old, xmlNodePtr cur) argument
3884 xmlCopyNamespace(xmlNsPtr cur) argument
3911 xmlCopyNamespaceList(xmlNsPtr cur) argument
3932 xmlCopyPropInternal(xmlDocPtr doc, xmlNodePtr target, xmlAttrPtr cur) argument
4037 xmlCopyProp(xmlNodePtr target, xmlAttrPtr cur) argument
4051 xmlCopyPropList(xmlNodePtr target, xmlAttrPtr cur) argument
4361 xmlNodePtr cur, p = NULL, q; local
4546 xmlNodePtr cur, tmp, next; local
4855 xmlNodeSetLang(xmlNodePtr cur, const xmlChar *lang) argument
4904 xmlNodeGetLang(xmlNodePtr cur) argument
4927 xmlNodeSetSpacePreserve(xmlNodePtr cur, int val) argument
4983 xmlNodeGetSpacePreserve(xmlNodePtr cur) argument
5013 xmlNodeSetName(xmlNodePtr cur, const xmlChar *name) argument
5072 xmlNodeSetBase(xmlNodePtr cur, const xmlChar* uri) argument
5146 xmlNodeGetBase(xmlDocPtr doc, xmlNodePtr cur) argument
5229 xmlNodeBufGetContent(xmlBufferPtr buffer, xmlNodePtr cur) argument
5369 xmlNodeGetContent(xmlNodePtr cur) argument
5477 xmlNodeSetContent(xmlNodePtr cur, const xmlChar *content) argument
5554 xmlNodeSetContentLen(xmlNodePtr cur, const xmlChar *content, int len) argument
5628 xmlNodeAddContentLen(xmlNodePtr cur, const xmlChar *content, int len) argument
5703 xmlNodeAddContent(xmlNodePtr cur, const xmlChar *content) argument
5754 xmlNsPtr cur; local
5855 xmlNsPtr cur; local
5984 xmlNsPtr cur; local
6396 xmlNsPtr *nsList, *cur; local
6795 const xmlChar *cur; local
7437 const char *cur; local
7506 const xmlChar *cur, *base; local
7653 xmlNsMapItemPtr cur, tmp; local
7885 xmlNodePtr cur; local
8154 xmlNodePtr cur, prev = NULL, out = NULL; local
8254 xmlNodePtr cur; local
8540 xmlNodePtr cur, curElem = NULL; local
8804 xmlNodePtr cur, curElem = NULL; local
9171 xmlNodePtr cur, curElem = NULL; local
9691 xmlNodePtr cur; local
9867 xmlNodePtr cur = node; local
[all...]
H A Dxmlsave.c498 xhtmlNodeDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur);
500 static void xmlNodeListDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur);
501 static void xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur);
502 void xmlNsListDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur);
503 static int xmlDocContentDumpOutput(xmlSaveCtxtPtr ctxt, xmlDocPtr cur);
530 * @cur: a namespace
538 xmlNsDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur, xmlSaveCtxtPtr ctxt) { argument
539 if ((cur == NULL) || (buf == NULL)) return;
540 if ((cur->type == XML_LOCAL_NAMESPACE) && (cur
569 xmlNsDumpOutputCtxt(xmlSaveCtxtPtr ctxt, xmlNsPtr cur) argument
582 xmlNsListDumpOutputCtxt(xmlSaveCtxtPtr ctxt, xmlNsPtr cur) argument
598 xmlNsListDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur) argument
669 xmlAttrDumpOutput(xmlSaveCtxtPtr ctxt, xmlAttrPtr cur) argument
699 xmlAttrListDumpOutput(xmlSaveCtxtPtr ctxt, xmlAttrPtr cur) argument
716 xmlNodeListDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) argument
746 htmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) argument
805 xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) argument
1007 xmlDocContentDumpOutput(xmlSaveCtxtPtr ctxt, xmlDocPtr cur) argument
1239 xhtmlAttrListDumpOutput(xmlSaveCtxtPtr ctxt, xmlAttrPtr cur) argument
1325 xhtmlNodeListDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) argument
1357 xhtmlNodeDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) argument
1952 xmlChar *base, *cur; local
2083 xmlNodeDump(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, int level, int format) argument
2135 xmlElemDump(FILE * f, xmlDocPtr doc, xmlNodePtr cur) argument
2189 xmlNodeDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, int level, int format, const char *encoding) argument
2330 xmlDocDumpMemory(xmlDocPtr cur, xmlChar**mem, int *size) argument
2348 xmlDocDumpFormatMemory(xmlDocPtr cur, xmlChar**mem, int *size, int format) argument
2384 xmlDocFormatDump(FILE *f, xmlDocPtr cur, int format) argument
2434 xmlDocDump(FILE *f, xmlDocPtr cur) argument
2451 xmlSaveFileTo(xmlOutputBufferPtr buf, xmlDocPtr cur, const char *encoding) argument
2487 xmlSaveFormatFileTo(xmlOutputBufferPtr buf, xmlDocPtr cur, const char *encoding, int format) argument
2527 xmlSaveFormatFileEnc( const char * filename, xmlDocPtr cur, const char * encoding, int format ) argument
2582 xmlSaveFileEnc(const char *filename, xmlDocPtr cur, const char *encoding) argument
2601 xmlSaveFormatFile(const char *filename, xmlDocPtr cur, int format) argument
2616 xmlSaveFile(const char *filename, xmlDocPtr cur) argument
[all...]
H A Dc14n.c75 static void xmlC14NVisibleNsStackDestroy (xmlC14NVisibleNsStackPtr cur);
76 static void xmlC14NVisibleNsStackAdd (xmlC14NVisibleNsStackPtr cur,
79 static void xmlC14NVisibleNsStackSave (xmlC14NVisibleNsStackPtr cur,
81 static void xmlC14NVisibleNsStackRestore (xmlC14NVisibleNsStackPtr cur,
83 static void xmlC14NVisibleNsStackShift (xmlC14NVisibleNsStackPtr cur);
84 static int xmlC14NVisibleNsStackFind (xmlC14NVisibleNsStackPtr cur,
86 static int xmlExcC14NVisibleNsStackFind (xmlC14NVisibleNsStackPtr cur,
96 static int xmlC14NProcessNode(xmlC14NCtxPtr ctx, xmlNodePtr cur);
97 static int xmlC14NProcessNodeList(xmlC14NCtxPtr ctx, xmlNodePtr cur);
293 xmlC14NVisibleNsStackDestroy(xmlC14NVisibleNsStackPtr cur) { argument
312 xmlC14NVisibleNsStackAdd(xmlC14NVisibleNsStackPtr cur, xmlNsPtr ns, xmlNodePtr node) argument
358 xmlC14NVisibleNsStackSave(xmlC14NVisibleNsStackPtr cur, xmlC14NVisibleNsStackPtr state) argument
370 xmlC14NVisibleNsStackRestore(xmlC14NVisibleNsStackPtr cur, xmlC14NVisibleNsStackPtr state) argument
381 xmlC14NVisibleNsStackShift(xmlC14NVisibleNsStackPtr cur) argument
411 xmlC14NVisibleNsStackFind(xmlC14NVisibleNsStackPtr cur, xmlNsPtr ns) argument
445 xmlExcC14NVisibleNsStackFind(xmlC14NVisibleNsStackPtr cur, xmlNsPtr ns, xmlC14NCtxPtr ctx) argument
599 xmlC14NProcessNamespacesAxis(xmlC14NCtxPtr ctx, xmlNodePtr cur, int visible) argument
704 xmlExcC14NProcessNamespacesAxis(xmlC14NCtxPtr ctx, xmlNodePtr cur, int visible) argument
975 xmlC14NFindHiddenParentAttr(xmlC14NCtxPtr ctx, xmlNodePtr cur, const xmlChar * name, const xmlChar * ns) argument
1001 xmlNodePtr cur; local
1123 xmlC14NProcessAttrsAxis(xmlC14NCtxPtr ctx, xmlNodePtr cur, int parent_visible) argument
1351 xmlC14NCheckForRelativeNamespaces(xmlC14NCtxPtr ctx, xmlNodePtr cur) argument
1413 xmlC14NProcessElementNode(xmlC14NCtxPtr ctx, xmlNodePtr cur, int visible) argument
1521 xmlC14NProcessNode(xmlC14NCtxPtr ctx, xmlNodePtr cur) argument
1712 xmlC14NProcessNodeList(xmlC14NCtxPtr ctx, xmlNodePtr cur) argument
2147 const xmlChar *cur = input; local
[all...]
H A Dcatalog.c538 xmlCatalogEntryPtr cur; local
542 cur = catal;
543 while (cur != NULL) {
544 if (cur->group == cgroup) {
545 switch (cur->type) {
550 if (cur == catal) {
551 cur = cur->children;
557 xmlSetProp(node, BAD_CAST "catalog", cur->value);
564 xmlSetProp(node, BAD_CAST "id", cur
1137 xmlParseXMLCatalogOneNode(xmlNodePtr cur, xmlCatalogEntryType type, const xmlChar *name, const xmlChar *attrName, const xmlChar *uriAttrName, xmlCatalogPrefer prefer, xmlCatalogEntryPtr cgroup) argument
1209 xmlParseXMLCatalogNode(xmlNodePtr cur, xmlCatalogPrefer prefer, xmlCatalogEntryPtr parent, xmlCatalogEntryPtr cgroup) argument
1312 xmlParseXMLCatalogNodeList(xmlNodePtr cur, xmlCatalogPrefer prefer, xmlCatalogEntryPtr parent, xmlCatalogEntryPtr cgroup) argument
1337 xmlNodePtr cur; local
1496 xmlCatalogEntryPtr cur; local
1573 xmlCatalogEntryPtr cur; local
1626 xmlCatalogEntryPtr cur; local
1858 xmlCatalogEntryPtr cur; local
2152 xmlParseSGMLCatalogComment(const xmlChar *cur) argument
2174 xmlParseSGMLCatalogPubid(const xmlChar *cur, xmlChar **id) argument
2243 xmlParseSGMLCatalogName(const xmlChar *cur, xmlChar **name) argument
2323 const xmlChar *cur = value; local
2752 xmlCatalogEntryPtr tmp, cur; local
3113 const char *cur, *paths; local
3231 const char *cur; local
[all...]
/external/libsepol/src/
H A Dhashtab.c69 hashtab_ptr_t prev, cur, newnode; local
76 cur = h->htable[hvalue];
77 while (cur && h->keycmp(h, key, cur->key) > 0) {
78 prev = cur;
79 cur = cur->next;
82 if (cur && (h->keycmp(h, key, cur->key) == 0))
108 hashtab_ptr_t cur, las local
141 hashtab_ptr_t prev, cur, newnode; local
182 hashtab_ptr_t cur; local
201 hashtab_ptr_t cur, temp; local
227 hashtab_ptr_t cur; local
254 hashtab_ptr_t last, cur, temp; local
291 hashtab_ptr_t cur; local
[all...]
H A Dsidtab.c46 sidtab_node_t *prev, *cur, *newnode; local
53 cur = s->htable[hvalue];
54 while (cur != NULL && sid > cur->sid) {
55 prev = cur;
56 cur = cur->next;
59 if (cur && sid == cur->sid) {
90 sidtab_node_t *cur, *las local
121 sidtab_node_t *cur; local
151 sidtab_node_t *cur; local
174 sidtab_node_t *last, *cur, *temp; local
211 sidtab_node_t *cur; local
263 sidtab_node_t *cur; local
290 sidtab_ptr_t cur, temp; local
[all...]
H A Davtab.c84 avtab_ptr_t prev, cur, newnode; local
92 for (prev = NULL, cur = h->htable[hvalue];
93 cur; prev = cur, cur = cur->next) {
94 if (key->source_type == cur->key.source_type &&
95 key->target_type == cur->key.target_type &&
96 key->target_class == cur->key.target_class &&
97 (specified & cur
125 avtab_ptr_t prev, cur, newnode; local
157 avtab_ptr_t cur; local
192 avtab_ptr_t cur; local
222 avtab_ptr_t cur; local
251 avtab_ptr_t cur, temp; local
277 avtab_ptr_t cur; local
335 avtab_ptr_t cur; local
[all...]
/external/libppp/src/
H A Diplist.c58 list->cur.pos = -1;
67 if (!inet_aton(range, &list->cur.ip))
69 list->cur.lstart = ntohl(list->cur.ip.s_addr);
70 list->cur.nItems = 1;
72 if (!do_inet_aton(range, ptr, &list->cur.ip))
75 list->cur.lstart = ntohl(list->cur.ip.s_addr);
76 list->cur.nItems = 1;
87 list->cur
210 struct iplist_cur cur; local
[all...]
/external/libsepol/tests/
H A Ddebug.c40 cond_expr_t *cur; local
41 for (cur = exp; cur != NULL; cur = cur->next) {
42 switch (cur->expr_type) {
44 fprintf(fp, "%s ", p->p_bool_val_to_name[cur->bool - 1]);
65 fprintf(fp, "error! (%d)", cur->expr_type);
/external/stlport/test/unit/
H A Dstrstream_buffer_read_test.cpp31 char cur; local
32 stream >> cur; local
33 CPPUNIT_ASSERT(cur == 'H');
/external/freetype/src/psaux/
H A Dpsobjs.c294 FT_Byte* cur = *acur; local
297 while ( cur < limit )
299 if ( IS_PS_NEWLINE( *cur ) )
301 cur++;
304 *acur = cur;
312 FT_Byte* cur = *acur; local
315 while ( cur < limit )
317 if ( !IS_PS_SPACE( *cur ) )
319 if ( *cur == '%' )
321 skip_comment( &cur, limi
342 FT_Byte* cur = *acur; local
418 FT_Byte* cur = *acur; local
457 FT_Byte* cur; local
520 FT_Byte* cur = parser->cursor; local
622 FT_Byte* cur; local
739 T1_Token cur = tokens; local
780 FT_Byte* cur = *acur; local
858 FT_Byte* cur = *acur; local
991 FT_Byte* cur = *acur; local
1031 FT_Byte* cur; local
1321 FT_Byte* cur; local
[all...]
/external/linux-tools-perf/util/
H A Dstrfilter.c79 struct strfilter_node root, *cur, *last_op; local
86 last_op = cur = &root;
92 if (!cur->r || !last_op->r)
94 cur = strfilter_node__alloc(OP_and, last_op->r, NULL);
95 if (!cur)
97 last_op->r = cur;
98 last_op = cur;
101 if (!cur->r || !root.r)
103 cur = strfilter_node__alloc(OP_or, root.r, NULL);
104 if (!cur)
[all...]
/external/libxslt/libxslt/
H A Dkeys.c56 xsltKeyDefPtr cur; local
58 cur = (xsltKeyDefPtr) xmlMalloc(sizeof(xsltKeyDef));
59 if (cur == NULL) {
64 memset(cur, 0, sizeof(xsltKeyDef));
66 cur->name = xmlStrdup(name);
68 cur->nameURI = xmlStrdup(nameURI);
69 cur->nsList = NULL;
70 return(cur);
109 xsltKeyDefPtr cur; local
112 cur
129 xsltKeyTablePtr cur; local
175 xsltKeyTablePtr cur; local
213 skipString(const xmlChar *cur, int end) argument
238 skipPredicate(const xmlChar *cur, int end) argument
606 xmlNodePtr oldInst, cur; local
[all...]
H A Dattrvt.c64 xsltAttrVTPtr cur; local
66 cur = (xsltAttrVTPtr) xmlMalloc(sizeof(xsltAttrVT));
67 if (cur == NULL) {
73 memset(cur, 0, sizeof(xsltAttrVT));
75 cur->nb_seg = 0;
76 cur->max_seg = MAX_AVT_SEG;
77 cur->strstart = 0;
78 cur->next = style->attVTs;
83 style->attVTs = (xsltAttrVTPtr) cur;
85 return(cur);
126 xsltAttrVTPtr cur = (xsltAttrVTPtr) avt, next; local
173 const xmlChar *cur; local
362 xsltAttrVTPtr cur = (xsltAttrVTPtr) avt; local
[all...]
H A Ddocuments.c145 xsltDocumentPtr cur; local
147 cur = (xsltDocumentPtr) xmlMalloc(sizeof(xsltDocument));
148 if (cur == NULL) {
153 memset(cur, 0, sizeof(xsltDocument));
154 cur->doc = doc;
157 cur->next = ctxt->docList;
158 ctxt->docList = cur;
167 * xsltInitCtxtKeys(ctxt, cur); not called here anymore
170 return(cur);
184 xsltDocumentPtr cur; local
211 xsltDocumentPtr doc, cur; local
252 xsltDocumentPtr doc, cur; local
[all...]
H A Dimports.c79 * @cur: the import element
87 xsltParseStylesheetImport(xsltStylesheetPtr style, xmlNodePtr cur) { argument
96 if ((cur == NULL) || (style == NULL))
99 uriRef = xmlGetNsProp(cur, (const xmlChar *)"href", NULL);
101 xsltTransformError(NULL, style, cur,
106 base = xmlNodeGetBase(style->doc, cur);
109 xsltTransformError(NULL, style, cur,
119 xsltTransformError(NULL, style, cur,
145 xsltTransformError(NULL, style, cur,
176 * @cur
184 xsltParseStylesheetInclude(xsltStylesheetPtr style, xmlNodePtr cur) argument
288 xsltNextImport(xsltStylesheetPtr cur) argument
396 xsltTemplatePtr cur; local
[all...]

Completed in 1940 milliseconds

1234567891011>>