Home
last modified time | relevance | path

Searched refs:newset (Results 1 – 5 of 5) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
Dintset.py257 newset = self.__class__.__new__(self.__class__)
258 newset._min = min(self._min,other._min)
259 newset._max = max(self._max,other._max)
260 newset._ranges = []
263 newset._min,newset._max):
265 if newset._ranges and newset._ranges[-1][1] == start:
266 newset._ranges[-1] = (newset._ranges[-1][0],stop)
268 newset._ranges.append((start,stop))
269 newset._ranges = tuple(newset._ranges)
270 newset._hash = hash(self._ranges)
[all …]
/external/libxml2/
Dxpointer.c832 xmlLocationSetPtr newset; in xmlXPtrNewLocationSetNodeSet() local
834 newset = xmlXPtrLocationSetCreate(NULL); in xmlXPtrNewLocationSetNodeSet()
835 if (newset == NULL) in xmlXPtrNewLocationSetNodeSet()
839 xmlXPtrLocationSetAdd(newset, in xmlXPtrNewLocationSetNodeSet()
842 ret->user = (void *) newset; in xmlXPtrNewLocationSetNodeSet()
1796 xmlLocationSetPtr newset = NULL; in xmlXPtrStartPointFunction() local
1817 newset = xmlXPtrLocationSetCreate(NULL); in xmlXPtrStartPointFunction()
1818 if (newset == NULL) { in xmlXPtrStartPointFunction()
1841 xmlXPtrFreeLocationSet(newset); in xmlXPtrStartPointFunction()
1857 xmlXPtrLocationSetAdd(newset, point); in xmlXPtrStartPointFunction()
[all …]
Dxpath.c13170 xmlNodeSetPtr newset; in xmlXPathCompOpEvalFilterFirst() local
13177 newset = xmlXPathNodeSetCreate(NULL); in xmlXPathCompOpEvalFilterFirst()
13204 xmlXPathFreeNodeSet(newset); in xmlXPathCompOpEvalFilterFirst()
13214 if (xmlXPathNodeSetAdd(newset, oldset->nodeTab[i]) < 0) in xmlXPathCompOpEvalFilterFirst()
13237 if (newset->nodeNr > 0) { in xmlXPathCompOpEvalFilterFirst()
13238 *first = *(newset->nodeTab); in xmlXPathCompOpEvalFilterFirst()
13254 valuePush(ctxt, xmlXPathCacheWrapNodeSet(ctxt->context, newset)); in xmlXPathCompOpEvalFilterFirst()
13618 xmlNodeSetPtr newset = NULL; in xmlXPathCompOpEval() local
13862 newset = xmlXPathNodeSetCreate(NULL); in xmlXPathCompOpEval()
13920 xmlXPathFreeNodeSet(newset); in xmlXPathCompOpEval()
[all …]
/external/valgrind/coregrind/
Dm_signals.c1277 vki_sigset_t* newset, in do_setmask() argument
1286 newset, newset ? format_sigset(newset) : "NULL" ); in do_setmask()
1295 if (newset) { in do_setmask()
1296 do_sigprocmask_bitops (how, &VG_(threads)[tid].sig_mask, newset ); in do_setmask()
/external/mksh/src/
Dmisc.c240 change_flag(enum sh_flag f, int what, bool newset) in change_flag() argument
243 unsigned char newval = (newset ? 1 : 0); in change_flag()
250 Flag(f) = newval = (newset ? 1 : 0); in change_flag()