Searched refs:re (Results 26 - 50 of 145) sorted by relevance

123456

/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/http/
H A DCollectClientConnectionsFilter.java495 * @param re
499 ResourceException re)
501 response.setStatus(re.getCode());
503 if (re.getCode() == HttpServletResponse.SC_UNAUTHORIZED
514 response.getOutputStream().println(toJSON(prettyPrint, re));
531 * @param re
536 private String toJSON(boolean prettyPrint, ResourceException re) argument
542 sb.append("\"code\": ").append(re.getCode()).append(",");
544 sb.append("\"message\": \"").append(re.getMessage()).append("\",");
546 sb.append("\"reason\": \"").append(re
498 sendErrorReponse(HttpServletResponse response, boolean prettyPrint, ResourceException re) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/http/
H A DCollectClientConnectionsFilter.java483 * @param re
487 ResourceException re)
489 response.setStatus(re.getCode());
491 if (re.getCode() == HttpServletResponse.SC_UNAUTHORIZED
502 response.getOutputStream().println(toJSON(prettyPrint, re));
519 * @param re
524 private String toJSON(boolean prettyPrint, ResourceException re) argument
530 sb.append("\"code\": ").append(re.getCode()).append(",");
532 sb.append("\"message\": \"").append(re.getMessage()).append("\",");
534 sb.append("\"reason\": \"").append(re
486 sendErrorReponse(HttpServletResponse response, boolean prettyPrint, ResourceException re) argument
[all...]
/forgerock/web-agents-v4/pcre/
H A Dpcre_compile.c435 are passed to the outside world. Do not ever re-use any error number, because
5599 repeated ones could be re-implemented independently so as not to need this,
8788 REAL_PCRE *re; local
9141 re = (REAL_PCRE *)(PUBL(malloc))(size);
9142 if (re == NULL)
9154 re->magic_number = MAGIC_NUMBER;
9155 re->size = (int)size;
9156 re->options = cd->external_options;
9157 re->flags = cd->external_flags;
9158 re
[all...]
H A Dpcre_get.c270 const REAL_PCRE *re = (const REAL_PCRE *)code; local
282 if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0)
286 if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0)
290 if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0)
H A Dpcre_printint.c312 REAL_PCRE *re = (REAL_PCRE *)external_re; local
316 unsigned int options = re->options;
317 int offset = re->name_table_offset;
318 int count = re->name_count;
319 int size = re->name_entry_size;
321 if (re->magic_number != MAGIC_NUMBER)
332 code = codestart = (pcre_uchar *)re + offset + count * size;
433 pcre_uchar *entry = (pcre_uchar *)re + offset + (GET2(code, 1) * size) +
451 pcre_uchar *entry = (pcre_uchar *)re + offset + (GET2(code, 1) * size) +
617 pcre_uchar *entry = (pcre_uchar *)re
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/schema/
H A DDITStructureRuleSyntax.java190 // If we're at the end of the value, then it isn't a valid DIT structure
377 // If we're at the end of the value, then it isn't a valid DIT
471 // If we're at the end of the value, then it isn't a valid DIT
666 // If we're at the end of the value, then that's illegal.
750 // If we're at the end of the value, then that's illegal.
892 // If we're at the end of the value, then that's illegal.
962 // We're expecting a list of values. Quoted, space separated.
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/dom/
H A Ddom-debug.js55 var re = reClassNameCache[className];
56 if (!re) {
57 re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)');
58 reClassNameCache[className] = re;
60 return re;
445 re = getClassRegEx(className);
448 if ( re.test(elements[i].className) ) {
467 var re = getClassRegEx(className);
470 YAHOO.log('hasClass returning ' + re.test(el.className), 'info', 'Dom');
471 return re
[all...]
H A Ddom-min.js11 propertyCache[property]=converted;return converted;};var getClassRegEx=function(className){var re=reClassNameCache[className];if(!re){re=new RegExp('(?:^|\\s+)'+className+'(?:\\s+|$)');reClassNameCache[className]=re;}
12 return re;};if(document.defaultView&&document.defaultView.getComputedStyle){getStyle=function(el,property){var value=null;if(property=='float'){property='cssFloat';}
39 var nodes=[],elements=root.getElementsByTagName(tag),re=getClassRegEx(className);for(var i=0,len=elements.length;i<len;++i){if(re.test(elements[i].className)){nodes[nodes.length]=elements[i];if(apply){apply.call(elements[i],elements[i]);}}}
40 return nodes;},hasClass:function(el,className){var re=getClassRegEx(className);var f=function(el){return re.test(el.className);};return Y.Dom.batch(el,f,Y.Dom,true);},addClass:function(el,className){var f=function(el){if(this.hasClass(el,className)){return false;}
41 el.className=YAHOO.lang.trim([el.className,className].join(' '));return true;};return Y.Dom.batch(el,f,Y.Dom,true);},removeClass:function(el,className){var re
[all...]
H A Ddom.js55 var re = reClassNameCache[className];
56 if (!re) {
57 re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)');
58 reClassNameCache[className] = re;
60 return re;
436 re = getClassRegEx(className);
439 if ( re.test(elements[i].className) ) {
458 var re = getClassRegEx(className);
461 return re.test(el.className);
494 var re
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/dom/
H A Ddom-debug.js55 var re = reClassNameCache[className];
56 if (!re) {
57 re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)');
58 reClassNameCache[className] = re;
60 return re;
445 re = getClassRegEx(className);
448 if ( re.test(elements[i].className) ) {
467 var re = getClassRegEx(className);
470 YAHOO.log('hasClass returning ' + re.test(el.className), 'info', 'Dom');
471 return re
[all...]
H A Ddom-min.js11 propertyCache[property]=converted;return converted;};var getClassRegEx=function(className){var re=reClassNameCache[className];if(!re){re=new RegExp('(?:^|\\s+)'+className+'(?:\\s+|$)');reClassNameCache[className]=re;}
12 return re;};if(document.defaultView&&document.defaultView.getComputedStyle){getStyle=function(el,property){var value=null;if(property=='float'){property='cssFloat';}
39 var nodes=[],elements=root.getElementsByTagName(tag),re=getClassRegEx(className);for(var i=0,len=elements.length;i<len;++i){if(re.test(elements[i].className)){nodes[nodes.length]=elements[i];if(apply){apply.call(elements[i],elements[i]);}}}
40 return nodes;},hasClass:function(el,className){var re=getClassRegEx(className);var f=function(el){return re.test(el.className);};return Y.Dom.batch(el,f,Y.Dom,true);},addClass:function(el,className){var f=function(el){if(this.hasClass(el,className)){return false;}
41 el.className=YAHOO.lang.trim([el.className,className].join(' '));return true;};return Y.Dom.batch(el,f,Y.Dom,true);},removeClass:function(el,className){var re
[all...]
H A Ddom.js55 var re = reClassNameCache[className];
56 if (!re) {
57 re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)');
58 reClassNameCache[className] = re;
60 return re;
436 re = getClassRegEx(className);
439 if ( re.test(elements[i].className) ) {
458 var re = getClassRegEx(className);
461 return re.test(el.className);
494 var re
[all...]
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DIdentityResourceV1.java525 } catch (ResourceException re) {
526 debug.warning("{} :: Resource error for : {}", METHOD, hashComponent, re);
527 return re.asPromise();
772 } catch (ResourceException re) {
774 debug.warning(re.getMessage(), re);
775 return re.asPromise();
867 } catch (ResourceException re) {
868 debug.warning("Error performing anonymousUpdate", re);
869 return re
[all...]
H A DIdentityResourceV2.java602 } catch (ResourceException re) {
603 debug.warning("{} :: Resource error for : {}", METHOD, hashComponent, re);
604 return re.asPromise();
831 } catch (ResourceException re) {
833 debug.warning(re.getMessage(), re);
834 return re.asPromise();
926 } catch (ResourceException re) {
927 debug.warning("Error performing anonymousUpdate", re);
928 return re
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DIdentityResourceV1.java522 } catch (ResourceException re) {
523 debug.warning("{} :: Resource error for : {}", METHOD, hashComponent, re);
524 return re.asPromise();
769 } catch (ResourceException re) {
771 debug.warning(re.getMessage(), re);
772 return re.asPromise();
862 } catch (ResourceException re) {
863 debug.warning("Error performing anonymousUpdate", re);
864 return re
[all...]
H A DIdentityResourceV2.java593 } catch (ResourceException re) {
594 debug.warning("{} :: Resource error for : {}", METHOD, hashComponent, re);
595 return re.asPromise();
811 } catch (ResourceException re) {
813 debug.warning(re.getMessage(), re);
814 return re.asPromise();
965 } catch (ResourceException re) {
966 debug.warning("IdentityResource.anonymousCreate() :: Resource error", re);
967 return re
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/jmx/
H A DRmiConnector.java228 catch (RemoteException re)
257 TRACER.debugCaught(DebugLogLevel.ERROR, re);
259 throw re;
/forgerock/opendj2/src/server/org/opends/server/protocols/jmx/
H A DRmiConnector.java228 catch (RemoteException re)
257 TRACER.debugCaught(DebugLogLevel.ERROR, re);
259 throw re;
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/jmx/
H A DRmiConnector.java228 catch (RemoteException re)
257 TRACER.debugCaught(DebugLogLevel.ERROR, re);
259 throw re;
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/jmx/
H A DRmiConnector.java228 catch (RemoteException re)
257 TRACER.debugCaught(DebugLogLevel.ERROR, re);
259 throw re;
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/jmx/
H A DRmiConnector.java228 catch (RemoteException re)
257 TRACER.debugCaught(DebugLogLevel.ERROR, re);
259 throw re;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/protocols/jmx/
H A DRmiConnector.java210 catch (RemoteException re)
234 logger.traceException(re);
236 throw re;
/forgerock/opendj-b2.6/src/server/org/opends/server/schema/
H A DDITStructureRuleSyntax.java325 // If we're at the end of the value, then it isn't a valid DIT structure
519 // If we're at the end of the value, then it isn't a valid DIT
614 // If we're at the end of the value, then it isn't a valid DIT
815 // If we're at the end of the value, then that's illegal.
902 // If we're at the end of the value, then that's illegal.
1053 // If we're at the end of the value, then that's illegal.
1125 // We're expecting a list of values. Quoted, space separated.
/forgerock/opendj2/src/server/org/opends/server/schema/
H A DDITStructureRuleSyntax.java324 // If we're at the end of the value, then it isn't a valid DIT structure
518 // If we're at the end of the value, then it isn't a valid DIT
613 // If we're at the end of the value, then it isn't a valid DIT
814 // If we're at the end of the value, then that's illegal.
901 // If we're at the end of the value, then that's illegal.
1052 // If we're at the end of the value, then that's illegal.
1124 // We're expecting a list of values. Quoted, space separated.
/forgerock/opendj2.6.2/src/server/org/opends/server/schema/
H A DDITStructureRuleSyntax.java325 // If we're at the end of the value, then it isn't a valid DIT structure
519 // If we're at the end of the value, then it isn't a valid DIT
614 // If we're at the end of the value, then it isn't a valid DIT
815 // If we're at the end of the value, then that's illegal.
902 // If we're at the end of the value, then that's illegal.
1053 // If we're at the end of the value, then that's illegal.
1125 // We're expecting a list of values. Quoted, space separated.

Completed in 564 milliseconds

123456