Searched refs:tmp (Results 101 - 125 of 530) sorted by relevance

1234567891011>>

/forgerock/openam/openam-shared/src/main/java/com/sun/identity/security/
H A DISSecurityPermission.java171 String tmp = tzer.nextToken();
172 res.add(tmp);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/ldap/
H A DSearchResultIterator.java102 SMSDataEntry tmp = current;
104 return tmp;
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/unittest/
H A DUnittestLog.java46 List tmp = buffer;
51 return tmp;
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DObjectClass.java233 Set<AttributeType> tmp = new HashSet<AttributeType>(
237 tmp.addAll(oc.getRequiredAttributeChain());
239 this.requiredAttributesChain = Collections.unmodifiableSet(tmp);
254 Set<AttributeType> tmp = new HashSet<AttributeType>(
258 tmp.addAll(oc.getOptionalAttributeChain());
260 this.optionalAttributesChain = Collections.unmodifiableSet(tmp);
/forgerock/opendj2/src/server/org/opends/server/types/
H A DObjectClass.java232 Set<AttributeType> tmp = new HashSet<AttributeType>(
236 tmp.addAll(oc.getRequiredAttributeChain());
238 this.requiredAttributesChain = Collections.unmodifiableSet(tmp);
253 Set<AttributeType> tmp = new HashSet<AttributeType>(
257 tmp.addAll(oc.getOptionalAttributeChain());
259 this.optionalAttributesChain = Collections.unmodifiableSet(tmp);
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DObjectClass.java233 Set<AttributeType> tmp = new HashSet<AttributeType>(
237 tmp.addAll(oc.getRequiredAttributeChain());
239 this.requiredAttributesChain = Collections.unmodifiableSet(tmp);
254 Set<AttributeType> tmp = new HashSet<AttributeType>(
258 tmp.addAll(oc.getOptionalAttributeChain());
260 this.optionalAttributesChain = Collections.unmodifiableSet(tmp);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DObjectClass.java233 Set<AttributeType> tmp = new HashSet<AttributeType>(
237 tmp.addAll(oc.getRequiredAttributeChain());
239 this.requiredAttributesChain = Collections.unmodifiableSet(tmp);
254 Set<AttributeType> tmp = new HashSet<AttributeType>(
258 tmp.addAll(oc.getOptionalAttributeChain());
260 this.optionalAttributesChain = Collections.unmodifiableSet(tmp);
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DObjectClass.java232 Set<AttributeType> tmp = new HashSet<AttributeType>(
236 tmp.addAll(oc.getRequiredAttributeChain());
238 this.requiredAttributesChain = Collections.unmodifiableSet(tmp);
253 Set<AttributeType> tmp = new HashSet<AttributeType>(
257 tmp.addAll(oc.getOptionalAttributeChain());
259 this.optionalAttributesChain = Collections.unmodifiableSet(tmp);
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/saml/plugins/
H A DDefaultSiteAttributeMapper.java224 String tmp = CollectionHelper.getMapAttr(
229 " attr = " + tmp);
231 return ((tmp != null) && (tmp.equalsIgnoreCase("createAlias") ||
232 tmp.equalsIgnoreCase("true") ||
233 tmp.equalsIgnoreCase("ignore")));
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DObjectClass.java222 Set<AttributeType> tmp = new HashSet<>(this.requiredAttributes);
225 tmp.addAll(oc.getRequiredAttributeChain());
227 this.requiredAttributesChain = Collections.unmodifiableSet(tmp);
242 Set<AttributeType> tmp = new HashSet<>(this.optionalAttributes);
245 tmp.addAll(oc.getOptionalAttributeChain());
247 this.optionalAttributesChain = Collections.unmodifiableSet(tmp);
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/saml/plugins/
H A DDefaultSiteAttributeMapper.java224 String tmp = CollectionHelper.getMapAttr(
229 " attr = " + tmp);
231 return ((tmp != null) && (tmp.equalsIgnoreCase("createAlias") ||
232 tmp.equalsIgnoreCase("true") ||
233 tmp.equalsIgnoreCase("ignore")));
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/slider/
H A Dslider-debug.js799 var t = this.thumb, tmp;
869 var tmp = [];
873 tmp = t.getTargetCoord( curCoord[0] - thresh, curCoord[1] );
874 nextCoord = [tmp.x, tmp.y];
877 tmp = t.getTargetCoord( curCoord[0] + thresh, curCoord[1] );
878 nextCoord = [tmp.x, tmp.y];
894 var tmp = [];
899 tmp
[all...]
H A Dslider-min.js22 t.setDelta(this.thumbCenterPoint.x,this.thumbCenterPoint.y);var _p=t.getTargetCoord(x,y);var p=[_p.x,_p.y];this.fireEvent("slideStart");if(this.animate&&YAHOO.widget.Slider.ANIM_AVAIL&&t._graduated&&!skipAnim){this.lock();this.curCoord=YAHOO.util.Dom.getXY(this.thumb.getEl());setTimeout(function(){self.moveOneTick(p);},this.tickPause);}else if(this.animate&&YAHOO.widget.Slider.ANIM_AVAIL&&!skipAnim){this.lock();var oAnim=new YAHOO.util.Motion(t.id,{points:{to:p}},this.animationDuration,YAHOO.util.Easing.easeOut);oAnim.onComplete.subscribe(function(){self.endMove();});oAnim.animate();}else{t.setDragElPos(x,y);this.endMove();}},moveOneTick:function(finalCoord){var t=this.thumb,tmp;var nextCoord=null;if(t._isRegion){nextCoord=this._getNextX(this.curCoord,finalCoord);var tmpX=(nextCoord)?nextCoord[0]:this.curCoord[0];nextCoord=this._getNextY([tmpX,this.curCoord[1]],finalCoord);}else if(t._isHoriz){nextCoord=this._getNextX(this.curCoord,finalCoord);}else{nextCoord=this._getNextY(this.curCoord,finalCoord);}
23 if(nextCoord){this.curCoord=nextCoord;this.thumb.alignElWithMouse(t.getEl(),nextCoord[0],nextCoord[1]);if(!(nextCoord[0]==finalCoord[0]&&nextCoord[1]==finalCoord[1])){var self=this;setTimeout(function(){self.moveOneTick(finalCoord);},this.tickPause);}else{this.endMove();}}else{this.endMove();}},_getNextX:function(curCoord,finalCoord){var t=this.thumb;var thresh;var tmp=[];var nextCoord=null;if(curCoord[0]>finalCoord[0]){thresh=t.tickSize-this.thumbCenterPoint.x;tmp=t.getTargetCoord(curCoord[0]-thresh,curCoord[1]);nextCoord=[tmp.x,tmp.y];}else if(curCoord[0]<finalCoord[0]){thresh=t.tickSize+this.thumbCenterPoint.x;tmp=t.getTargetCoord(curCoord[0]+thresh,curCoord[1]);nextCoord=[tmp.x,tmp.y];}else{}
24 return nextCoord;},_getNextY:function(curCoord,finalCoord){var t=this.thumb;var thresh;var tmp=[];var nextCoord=null;if(curCoord[1]>finalCoord[1]){thresh=t.tickSize-this.thumbCenterPoint.y;tmp
[all...]
H A Dslider.js775 var t = this.thumb, tmp;
840 var tmp = [];
844 tmp = t.getTargetCoord( curCoord[0] - thresh, curCoord[1] );
845 nextCoord = [tmp.x, tmp.y];
848 tmp = t.getTargetCoord( curCoord[0] + thresh, curCoord[1] );
849 nextCoord = [tmp.x, tmp.y];
865 var tmp = [];
870 tmp
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/slider/
H A Dslider-debug.js799 var t = this.thumb, tmp;
869 var tmp = [];
873 tmp = t.getTargetCoord( curCoord[0] - thresh, curCoord[1] );
874 nextCoord = [tmp.x, tmp.y];
877 tmp = t.getTargetCoord( curCoord[0] + thresh, curCoord[1] );
878 nextCoord = [tmp.x, tmp.y];
894 var tmp = [];
899 tmp
[all...]
H A Dslider-min.js22 t.setDelta(this.thumbCenterPoint.x,this.thumbCenterPoint.y);var _p=t.getTargetCoord(x,y);var p=[_p.x,_p.y];this.fireEvent("slideStart");if(this.animate&&YAHOO.widget.Slider.ANIM_AVAIL&&t._graduated&&!skipAnim){this.lock();this.curCoord=YAHOO.util.Dom.getXY(this.thumb.getEl());setTimeout(function(){self.moveOneTick(p);},this.tickPause);}else if(this.animate&&YAHOO.widget.Slider.ANIM_AVAIL&&!skipAnim){this.lock();var oAnim=new YAHOO.util.Motion(t.id,{points:{to:p}},this.animationDuration,YAHOO.util.Easing.easeOut);oAnim.onComplete.subscribe(function(){self.endMove();});oAnim.animate();}else{t.setDragElPos(x,y);this.endMove();}},moveOneTick:function(finalCoord){var t=this.thumb,tmp;var nextCoord=null;if(t._isRegion){nextCoord=this._getNextX(this.curCoord,finalCoord);var tmpX=(nextCoord)?nextCoord[0]:this.curCoord[0];nextCoord=this._getNextY([tmpX,this.curCoord[1]],finalCoord);}else if(t._isHoriz){nextCoord=this._getNextX(this.curCoord,finalCoord);}else{nextCoord=this._getNextY(this.curCoord,finalCoord);}
23 if(nextCoord){this.curCoord=nextCoord;this.thumb.alignElWithMouse(t.getEl(),nextCoord[0],nextCoord[1]);if(!(nextCoord[0]==finalCoord[0]&&nextCoord[1]==finalCoord[1])){var self=this;setTimeout(function(){self.moveOneTick(finalCoord);},this.tickPause);}else{this.endMove();}}else{this.endMove();}},_getNextX:function(curCoord,finalCoord){var t=this.thumb;var thresh;var tmp=[];var nextCoord=null;if(curCoord[0]>finalCoord[0]){thresh=t.tickSize-this.thumbCenterPoint.x;tmp=t.getTargetCoord(curCoord[0]-thresh,curCoord[1]);nextCoord=[tmp.x,tmp.y];}else if(curCoord[0]<finalCoord[0]){thresh=t.tickSize+this.thumbCenterPoint.x;tmp=t.getTargetCoord(curCoord[0]+thresh,curCoord[1]);nextCoord=[tmp.x,tmp.y];}else{}
24 return nextCoord;},_getNextY:function(curCoord,finalCoord){var t=this.thumb;var thresh;var tmp=[];var nextCoord=null;if(curCoord[1]>finalCoord[1]){thresh=t.tickSize-this.thumbCenterPoint.y;tmp
[all...]
H A Dslider.js775 var t = this.thumb, tmp;
840 var tmp = [];
844 tmp = t.getTargetCoord( curCoord[0] - thresh, curCoord[1] );
845 nextCoord = [tmp.x, tmp.y];
848 tmp = t.getTargetCoord( curCoord[0] + thresh, curCoord[1] );
849 nextCoord = [tmp.x, tmp.y];
865 var tmp = [];
870 tmp
[all...]
/forgerock/web-agents-v4/source/
H A Daudit.c175 char *tmp = NULL, *message = NULL, *message_b64 = NULL; local
183 msg_size = am_vasprintf(&tmp, format, args);
186 if (msg_size <= 0 || tmp == NULL) {
187 am_free(tmp);
192 message_b64 = base64_encode(tmp, &size);
194 am_free(tmp);
200 AM_FREE(tmp, message, message_b64);
207 AM_FREE(tmp, message, message_b64);
218 AM_FREE(tmp, message, message_b64);
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/replication/
H A DStressTest.java109 Entry tmp = personEntry.duplicate(false);
112 .nextMessageID(), null, tmp.getDN(),
113 tmp.getObjectClasses(), tmp.getUserAttributes(),
114 tmp.getOperationalAttributes());
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/replication/
H A DStressTest.java109 Entry tmp = personEntry.duplicate(false);
112 .nextMessageID(), null, tmp.getDN(),
113 tmp.getObjectClasses(), tmp.getUserAttributes(),
114 tmp.getOperationalAttributes());
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/
H A DStressTest.java109 Entry tmp = personEntry.duplicate(false);
112 .nextMessageID(), null, tmp.getDN(),
113 tmp.getObjectClasses(), tmp.getUserAttributes(),
114 tmp.getOperationalAttributes());
/forgerock/openam-v13/openam-authentication/openam-auth-anonymous/src/main/java/com/sun/identity/authentication/modules/anonymous/
H A DAnonymous.java106 String tmp = CollectionHelper.getMapAttr(options,
109 if (tmp == null || tmp.length() == 0) {
113 authLevel = Integer.parseInt(tmp);
115 debug.error("Invalid auth level " + tmp);
/forgerock/openam/openam-authentication/openam-auth-anonymous/src/main/java/com/sun/identity/authentication/modules/anonymous/
H A DAnonymous.java106 String tmp = CollectionHelper.getMapAttr(options,
109 if (tmp == null || tmp.length() == 0) {
113 authLevel = Integer.parseInt(tmp);
115 debug.error("Invalid auth level " + tmp);
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DPolicyResourceComparator.java66 String tmp = (String)values.get(TOKEN_NAME_CASE_SENSITIVE);
67 caseSensitive = (tmp != null) && tmp.equalsIgnoreCase("true");
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DUserAttributes.java99 Set<String> tmp = new HashSet<String>();
102 tmp.addAll(values.get(k));
107 results.put(propertyName, tmp);

Completed in 81 milliseconds

1234567891011>>