/forgerock/openidm-v4/custom-scripted-connector-bundler/src/main/java/org/forgerock/openidm/tools/scriptedbundler/ |
H A D | CustomBaseObject.java | 37 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 D | inffast.c | 73 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 D | infback.c | 266 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 D | inflate.c | 46 * - 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 D | inflate.h | 32 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 D | pcre_get.c | 142 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 D | pcre_jit_compile.c | 343 /* 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 D | audit.c | 30 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 D | utility.h | 146 time_t last; member in struct:url_validator_worker_data 234 int char_count(const char *string, int c, int *last);
|
H A D | shared.c | 39 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 D | log.c | 108 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 D | utility.c | 381 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 D | agent.c | 382 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 D | agent.c | 386 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 D | agent.c | 436 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 D | test_utility.c | 361 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 D | agent.c | 1143 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 D | sqljet-1.1.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
/forgerock/opendj2-hg/ext/svnkit/lib/ |
H A D | sqljet-1.1.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
/forgerock/opendj-b2.6/resource/dsml/lib/ |
H A D | saaj-impl-1.3.jar | com/ 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 D | saaj-impl-1.3.jar | com/ 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 D | sqljet.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
/forgerock/opendj2.6.2/ext/svnkit/ |
H A D | sqljet.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
/forgerock/opendj-b2.6/ext/ |
H A D | junit.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ... |
/forgerock/opendj2/ext/ |
H A D | junit.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ... |