Searched refs:end (Results 401 - 425 of 620) sorted by relevance

<<11121314151617181920>>

/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/utilities/
H A Dutilities.js322 this.init(el,attributes,duration,method);};YAHOO.util.Anim.prototype={toString:function(){var el=this.getEl();var id=el.id||el.tagName||el;return("Anim "+id);},patterns:{noNegatives:/width|height|opacity|padding/i,offsetAttribute:/^((width|height)|(top|left))$/,defaultUnit:/width|height|top$|bottom$|left$|right$/i,offsetUnit:/\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i},doMethod:function(attr,start,end){return this.method(this.currentFrame,start,end-start,this.totalFrames);},setAttribute:function(attr,val,unit){if(this.patterns.noNegatives.test(attr)){val=(val>0)?val:0;}
326 return'';},setRuntimeAttribute:function(attr){var start;var end;var attributes=this.attributes;this.runtimeAttributes[attr]={};var isset=function(prop){return(typeof prop!=='undefined');};if(!isset(attributes[attr]['to'])&&!isset(attributes[attr]['by'])){return false;} variable
327 start=(isset(attributes[attr]['from']))?attributes[attr]['from']:this.getAttribute(attr);if(isset(attributes[attr]['to'])){end=attributes[attr]['to'];}else if(isset(attributes[attr]['by'])){if(start.constructor==Array){end=[];for(var i=0,len=start.length;i<len;++i){end[i]=start[i]+attributes[attr]['by'][i]*1;}}else{end=start+attributes[attr]['by']*1;}}
328 this.runtimeAttributes[attr].start=start;this.runtimeAttributes[attr].end=end;this.runtimeAttributes[attr].unit=(isset(attributes[attr].unit))?attributes[attr]['unit']:this.getDefaultUnit(attr);return true;},init:function(el,attributes,duration,method){var isAnimated=false;var startTime=null;var actualFrames=0;el=YAHOO.util.Dom.get(el);this.attributes=attributes||{};this.duration=!YAHOO.lang.isUndefined(duration)?duration:1;this.method=method||YAHOO.util.Easing.easeNone;this.useSeconds=true;this.currentFrame=0;this.totalFrames=YAHOO.util.AnimMgr.fps;this.setEl=function(element){el=YAHOO.util.Dom.get(element);};this.getEl=function(){return el;};this.isAnimated=function(){return isAnimated;};this.getStartTime=function(){return startTime;};this.runtimeAttributes={};this.animate=function(){if(this.isAnimated()){return false;}
332 isAnimated=true;actualFrames=0;startTime=new Date();};var onTween=function(){var data={duration:new Date()-this.getStartTime(),currentFrame:this.currentFrame};data.toString=function(){return('duration: '+data.duration+', currentFrame: '+data.currentFrame);};this.onTween.fire(data);var runtimeAttributes=this.runtimeAttributes;for(var attr in runtimeAttributes){this.setAttribute(attr,this.doMethod(attr,runtimeAttributes[attr].start,runtimeAttributes[attr].end),runtimeAttribute
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/schema/
H A DDoubleMetaphoneApproximateMatchingRule.java180 // Pad the value to allow for checks to go past the end of the value.
209 // end of the string.
847 // Ignore R at the end of French words.
1088 // X maps to KS except at the end of French words.
1202 int end = start + substring.length();
1205 if (end > value.length())
1210 for (int i=0,pos=start; pos < end; i++,pos++)
/forgerock/opendj2/src/server/org/opends/server/schema/
H A DDoubleMetaphoneApproximateMatchingRule.java179 // Pad the value to allow for checks to go past the end of the value.
208 // end of the string.
846 // Ignore R at the end of French words.
1087 // X maps to KS except at the end of French words.
1201 int end = start + substring.length();
1204 if (end > value.length())
1209 for (int i=0,pos=start; pos < end; i++,pos++)
/forgerock/opendj2.6.2/src/server/org/opends/server/schema/
H A DDoubleMetaphoneApproximateMatchingRule.java180 // Pad the value to allow for checks to go past the end of the value.
209 // end of the string.
847 // Ignore R at the end of French words.
1088 // X maps to KS except at the end of French words.
1202 int end = start + substring.length();
1205 if (end > value.length())
1210 for (int i=0,pos=start; pos < end; i++,pos++)
/forgerock/opendj2-jel-hg/src/server/org/opends/server/schema/
H A DDoubleMetaphoneApproximateMatchingRule.java180 // Pad the value to allow for checks to go past the end of the value.
209 // end of the string.
847 // Ignore R at the end of French words.
1088 // X maps to KS except at the end of French words.
1202 int end = start + substring.length();
1205 if (end > value.length())
1210 for (int i=0,pos=start; pos < end; i++,pos++)
/forgerock/opendj2-hg/src/server/org/opends/server/schema/
H A DDoubleMetaphoneApproximateMatchingRule.java179 // Pad the value to allow for checks to go past the end of the value.
208 // end of the string.
846 // Ignore R at the end of French words.
1087 // X maps to KS except at the end of French words.
1201 int end = start + substring.length();
1204 if (end > value.length())
1209 for (int i=0,pos=start; pos < end; i++,pos++)
/forgerock/web-agents-v4/source/
H A Dnet_ops.c242 char *end = strstr(begin + 25, "\""); local
243 if (end != NULL) {
244 *token = strndup(begin + 25, end - begin - 25);
379 char *end = strstr(begin + 39, "\""); local
380 if (end != NULL) {
381 *token = strndup(begin + 39, end - begin - 39);
/forgerock/web-agents-v4/zlib/
H A Dinflate.c96 local int updatewindow OF((z_streamp strm, const unsigned char FAR *end,
369 inflate call, but the end of the deflate stream has not been reached yet.
379 local int updatewindow(strm, end, copy)
381 const Bytef *end;
406 zmemcpy(state->window, end - state->wsize, state->wsize);
413 zmemcpy(state->window + state->wnext, end - copy, dist);
416 zmemcpy(state->window, end - copy, copy);
602 will return Z_BUF_ERROR if it has not reached the end of the stream.
894 Tracev((stderr, "inflate: stored end\n"));
987 /* check for end
[all...]
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRANotificationViewController.m207 @end
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/servlet/
H A DActiveRequest.java97 * and validating the request}, and then authenticating the end-user using a customizable {@link WsFedAuthenticator}
315 int end = text.lastIndexOf("<", text.lastIndexOf("Password>"));
317 return text.substring(0, start + "Password>".length()) + "### MASKED PASSWORD ###" + text.substring(end);
/forgerock/authenticator-android-v2/app/libs/
H A Dcore-2.3.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/forgerock/opendj2/resource/bin/
H A Dstart-ds.bat147 goto end
170 :end label
/forgerock/opendj-b2.6/resource/bin/
H A Dstart-ds.bat146 goto end
169 :end label
/forgerock/opendj2.6.2/resource/bin/
H A Dstart-ds.bat146 goto end
169 :end label
/forgerock/opendj2-jel-hg/resource/bin/
H A Dstart-ds.bat145 goto end
168 :end label
/forgerock/opendj2-hg/resource/bin/
H A Dstart-ds.bat147 goto end
170 :end label
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/cdm/
H A DDefaultClientTypesManager.java208 long end = System.currentTimeMillis();
211 + (end - st));
381 * properties with parent properties return merged properties end if
829 long end = System.currentTimeMillis();
833 + (end - st));
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/cdm/clientschema/
H A DAMClientCapData.java1103 long end = System.currentTimeMillis();
1107 + (end - st));
1120 end = System.currentTimeMillis();
1124 + (end - st));
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/util/
H A DNetworkMonitor.java101 public synchronized void end(long start) { method in class:NetworkMonitor
257 // sm.end(s);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/adapters/
H A DSessionAdapter.java181 contents = contents.substring(0, matcher.start()) + contents.substring(matcher.end(), contents.length());
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pdb/
H A DPDBStorage.java330 txn.end();
351 txn.end();
897 txn.end();
945 txn.end();
/forgerock/authenticator-ios-v2/unit-tests/
H A DFRAIdentityModelTests.m32 @end
261 @end
H A DFRAIdentityTests.m32 @end
266 @end
H A DFRAOathMechanismFactoryTests.m34 @end
369 @end
/forgerock/opendj-v3/opendj-server-legacy/resource/bin/
H A Dstart-ds.bat147 goto end
170 :end label

Completed in 172 milliseconds

<<11121314151617181920>>