Searched defs:last (Results 1 - 25 of 83) sorted by relevance

1234

/forgerock/openidm-v4/custom-scripted-connector-bundler/src/main/java/org/forgerock/openidm/tools/scriptedbundler/
H A DCustomBaseObject.java37 private boolean last = false; // helper for the templates, no bean accessors field in class:CustomBaseObject
40 * Set whether this object is the last in a container of similar objects. This is a helper method
44 * @param last
47 public void setIsLast(boolean last) { argument
48 this.last = last;
52 * Return whether this is the last object in a collection of similar objects. Handlebars helper method.
59 return last;
63 * Utility method to flag the last item in a collection as being the last ite
[all...]
/forgerock/web-agents-v4/zlib/
H A Dinffast.c73 z_const unsigned char FAR *last; /* have enough input while in < last */ local
100 last = in + (strm->avail_in - 5);
307 } while (in < last && out < end);
318 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
H A Dinfback.c266 code last; /* parent table entry */ local
280 state->last = 0;
289 /* Inflate until end of block marked as last */
294 if (state->last) {
300 state->last = BITS(1);
305 state->last ? " (last)" : ""));
311 state->last ? " (last)" : ""));
316 state->last
[all...]
H A Dinflate.c46 * - Unroll last copy for window match in inflate_fast()
116 state->last = 0;
366 Update the window with the last wsize (normally 32K) bytes written before
374 advantage, since only the last 32K of output is copied to the sliding window
589 When there is a window, goto inf_leave will update the window with the last
619 code last; /* parent table entry */ local
829 if (state->last) {
835 state->last = BITS(1);
840 state->last ? " (last)"
[all...]
H A Dinflate.h32 TYPE, /* i: waiting for type bits, including last-flag bit */
83 int last; /* true if processing last block */ member in struct:inflate_state
120 int back; /* bits back of last unprocessed length/lit */
/forgerock/web-agents-v4/pcre/
H A Dpcre_get.c142 lastptr where to put the pointer to the last entry
209 pcre_uchar *last = entry; local
216 while (last < lastentry)
219 (pcre_uchar *)(last + entrysize + IMM2_SIZE)) != 0) break;
220 last += entrysize;
224 *lastptr = (char *)last;
227 *lastptr = (PCRE_UCHAR16 *)last;
230 *lastptr = (PCRE_UCHAR32 *)last;
255 or the number of the last one if none are set,
274 char *first, *last; local
276 PCRE_UCHAR16 *first, *last; local
278 PCRE_UCHAR32 *first, *last; local
[all...]
H A Dpcre_jit_compile.c343 /* Head of the last recursion. */
355 /* Points to the last matched capture block index. */
1000 /* +2 the original and the last. */
1247 /* The last capture is a local variable even for recursions. */
1420 /* The last capture is a local variable even for recursions. */
3188 BOOL last, any, caseless; local
3203 last = TRUE;
3211 last = FALSE;
3251 last = FALSE;
3270 last
[all...]
/forgerock/web-agents-v4/source/
H A Daudit.c30 if ((hdr)->last) {\
31 links((hdr)->last)->next = offset;\
32 links(offset)->prev = (hdr)->last;\
36 (hdr)->last = offset;\
43 (hdr)->last = links(offset)->prev;\
57 unsigned int first, last; member in struct:offset_list_hdr
64 int last; member in struct:am_audit::am_audit_config
358 audit_data->config[i].interval == ++(audit_data->config[i].last))) {
360 audit_data->config[i].last = 0;
433 audit_data->config[i].last
[all...]
H A Dutility.h146 time_t last; member in struct:url_validator_worker_data
234 int char_count(const char *string, int c, int *last);
H A Dshared.c39 struct offset_list lh; /* first, last */
750 struct mem_chunk *last; local
752 last = (struct mem_chunk *) AM_GET_POINTER(pool, pool->lh.next);
754 if (last == NULL) {
759 if (last->used == 0) {
760 /* the last chunk is not used - add all newly allocated space there */
761 remove_from_freelist(pool, last);
762 last->size += size - pool->size;
764 add_to_freelist(pool, last);
766 /* the last chun
[all...]
H A Dlog.c108 time_t last; member in struct:am_log::valid_url
986 vf->last = time(NULL);
1060 list[j].last = log->valid[i].last;
1093 vf->last = time(NULL);
H A Dutility.c381 char last = 0; local
501 if (*p != '/' || (*p == '/' && last != '/')) {
504 last = *p;
878 /* make sure we are not missing the last line (one w/o newlines) */
1056 char *tmp, *tok, *last = NULL; local
1076 tok = strtok_r(tmp, ";", &last);
1100 tok = strtok_r(NULL, ";", &last);
1427 * what "last" points to, to the last character of "string" if "last" i
1434 char_count(const char *string, int c, int *last) argument
[all...]
/forgerock/web-agents-v4/source/apache/
H A Dagent.c382 char *pair, *a, *eq, *inputs, *last = NULL; local
389 for (pair = apr_strtok(a, "&", &last); pair;
390 pair = apr_strtok(NULL, "&", &last)) {
/forgerock/web-agents-v4/source/varnish/
H A Dagent.c386 char *pair, *a, *eq, *last = NULL; local
406 for (pair = strtok_r(a, "&", &last); pair;
407 pair = strtok_r(NULL, "&", &last)) {
/forgerock/web-agents-v4/source/varnish3/
H A Dagent.c436 char *pair, *a, *eq, *last = NULL; local
456 for (pair = strtok_r(a, "&", &last); pair;
457 pair = strtok_r(NULL, "&", &last)) {
/forgerock/web-agents-v4/tests/
H A Dtest_utility.c361 int last; local
362 int result = char_count(richard3, 'e', &last);
365 assert_int_equal(last, richard3[strlen(richard3) - 1]);
370 result = char_count(as_you_like_it_3, '\t', &last);
372 assert_int_equal(last, as_you_like_it_3[strlen(as_you_like_it_3) - 1]);
/forgerock/web-agents-v4/source/iis/
H A Dagent.c1143 char *pair, *a, *eq, *last = NULL; local
1163 for (pair = strtok_s(a, "&", &last); pair;
1164 pair = strtok_s(NULL, "&", &last)) {
/forgerock/opendj2/ext/svnkit/lib/
H A Dsqljet-1.1.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2-hg/ext/svnkit/lib/
H A Dsqljet-1.1.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj-b2.6/resource/dsml/lib/
H A Dsaaj-impl-1.3.jarcom/ com/sun/ com/sun/xml/ com/sun/xml/messaging/ com/sun/xml/messaging/saaj/ com/sun/xml/messaging/ ...
/forgerock/opendj2-jel-hg/resource/dsml/lib/
H A Dsaaj-impl-1.3.jarcom/ com/sun/ com/sun/xml/ com/sun/xml/messaging/ com/sun/xml/messaging/saaj/ com/sun/xml/messaging/ ...
/forgerock/opendj-b2.6/ext/svnkit/
H A Dsqljet.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2.6.2/ext/svnkit/
H A Dsqljet.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj-b2.6/ext/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ...
/forgerock/opendj2/ext/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ...

Completed in 81 milliseconds

1234