Ejemplo n.º 1
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     foreach (LatLon current in vertexList)
     {
         current.AccumulateRobustHash(hash);
     }
 }
Ejemplo n.º 2
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate((int)this.b);
     hash.Accumulate((int)this.g);
     hash.Accumulate((int)this.r);
     hash.Accumulate((int)this.a);
 }
Ejemplo n.º 3
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("VETileUpsamplerVerb(");
     veTileFetch.Curry(new ParamDict(new object[] { TermName.TileAddress, new DummyTerm() }))
     .AccumulateRobustHash(hash);
     hash.Accumulate("(");
 }
Ejemplo n.º 4
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate((int)this.b);
			hash.Accumulate((int)this.g);
			hash.Accumulate((int)this.r);
			hash.Accumulate((int)this.a);
		}
Ejemplo n.º 5
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate(b);
     hash.Accumulate(g);
     hash.Accumulate(r);
     hash.Accumulate(a);
 }
Ejemplo n.º 6
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			foreach (PositionAssociation current in this.associationList)
			{
				current.AccumulateRobustHash(hash);
			}
			this.warpStyle.AccumulateRobustHash(hash);
		}
Ejemplo n.º 7
0
 public override void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("TransparencyVerb(");
     this.transparencyOptions.AccumulateRobustHash(hash);
     this.antialiasedFuture.AccumulateRobustHash(hash);
     this.exactColorFuture.AccumulateRobustHash(hash);
     hash.Accumulate(")");
 }
Ejemplo n.º 8
0
 public override void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("Cache(");
     this.cache.AccumulateRobustHash(hash);
     hash.Accumulate(",");
     this.future.AccumulateRobustHash(hash);
     hash.Accumulate(")");
 }
Ejemplo n.º 9
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("WarpImageVerb(");
     imageTransformer.AccumulateRobustHash(hash);
     sourceMapSupplier.Curry(new ParamDict(new object[] { TermName.ImageBounds, new UnboundParameter() }))
     .AccumulateRobustHash(hash);
     hash.Accumulate(")");
 }
Ejemplo n.º 10
0
 public override void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("FutureDocumentFromFilesystem(");
     hash.Accumulate(this.path);
     hash.Accumulate(this.pageNumber);
     hash.Accumulate(this.lastWriteTime.ToBinary());
     hash.Accumulate(")");
 }
Ejemplo n.º 11
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     foreach (PositionAssociation current in this.associationList)
     {
         current.AccumulateRobustHash(hash);
     }
     this.warpStyle.AccumulateRobustHash(hash);
 }
Ejemplo n.º 12
0
        public void AccumulateRobustHash_PerTile(CachePackage cachePackage, IRobustHash hash)
        {
            hash.Accumulate("SourceMap:");
            var sourceDocument = documentFuture.RealizeSynchronously(cachePackage);

            sourceDocument.localDocument.AccumulateRobustHash(hash);
            AccumulateRobustHash_Common(hash);
        }
Ejemplo n.º 13
0
		public override void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("Cache(");
			this.cache.AccumulateRobustHash(hash);
			hash.Accumulate(",");
			this.future.AccumulateRobustHash(hash);
			hash.Accumulate(")");
		}
Ejemplo n.º 14
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate(_fadeBase);
     foreach (int current in _zoomToFadeMap.Keys)
     {
         hash.Accumulate(current);
         hash.Accumulate(_zoomToFadeMap[current]);
     }
 }
Ejemplo n.º 15
0
 public void AccumulateRobustHash_PerTile(CachePackage cachePackage, IRobustHash hash)
 {
     hash.Accumulate("Layer(");
     foreach (SourceMap current in this.sourceMaps)
     {
         current.AccumulateRobustHash_PerTile(cachePackage, hash);
     }
     hash.Accumulate(")");
 }
Ejemplo n.º 16
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate(this._fadeBase);
			foreach (int current in this._zoomToFadeMap.Keys)
			{
				hash.Accumulate(current);
				hash.Accumulate(this._zoomToFadeMap[current]);
			}
		}
Ejemplo n.º 17
0
 public static bool StaticEquals(IRobustlyHashable o0, object o1)
 {
     if (o1 is IRobustlyHashable)
     {
         IRobustHash robustHash = RobustHashTools.Hash(o0);
         IRobustHash obj        = RobustHashTools.Hash((IRobustlyHashable)o1);
         return(robustHash.Equals(obj));
     }
     return(false);
 }
Ejemplo n.º 18
0
		internal void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("RenderedTileNamingScheme(");
			hash.Accumulate(this.GetSchemeName());
			hash.Accumulate(",");
			hash.Accumulate(this.filePrefix);
			hash.Accumulate(",");
			hash.Accumulate(this.fileSuffix);
			hash.Accumulate(")");
		}
Ejemplo n.º 19
0
 internal void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("RenderedTileNamingScheme(");
     hash.Accumulate(this.GetSchemeName());
     hash.Accumulate(",");
     hash.Accumulate(this.filePrefix);
     hash.Accumulate(",");
     hash.Accumulate(this.fileSuffix);
     hash.Accumulate(")");
 }
Ejemplo n.º 20
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("Layer(");
     hash.Accumulate(this.displayName);
     foreach (SourceMap current in this.sourceMaps)
     {
         current.AccumulateRobustHash(hash);
     }
     hash.Accumulate(")");
 }
Ejemplo n.º 21
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("WarpImageVerb(");
			this.imageTransformer.AccumulateRobustHash(hash);
			this.sourceMapSupplier.Curry(new ParamDict(new object[]
			{
				TermName.ImageBounds,
				new WarpImageVerb.UnboundParameter()
			})).AccumulateRobustHash(hash);
			hash.Accumulate(")");
		}
Ejemplo n.º 22
0
        public void AccumulateRobustHash(IRobustHash hash)
        {
            hash.Accumulate("SourceImageDownsamplerVerb(");
            DummyTerm dummyTerm = new DummyTerm();
            IFuture   future    = prototype.Curry(new ParamDict(new object[]
            {
                TermName.ImageBounds, dummyTerm, TermName.OutputSize, dummyTerm, TermName.UseDocumentTransparency,
                dummyTerm, TermName.ExactColors, dummyTerm
            }));

            future.AccumulateRobustHash(hash);
            hash.Accumulate(")");
        }
Ejemplo n.º 23
0
 public override void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("Apply(");
     this.verb.AccumulateRobustHash(hash);
     IFuture[] array = this.futureParams;
     for (int i = 0; i < array.Length; i++)
     {
         IFuture future = array[i];
         future.AccumulateRobustHash(hash);
         hash.Accumulate(",");
     }
     hash.Accumulate(")");
 }
Ejemplo n.º 24
0
		public override void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("Apply(");
			this.verb.AccumulateRobustHash(hash);
			IFuture[] array = this.futureParams;
			for (int i = 0; i < array.Length; i++)
			{
				IFuture future = array[i];
				future.AccumulateRobustHash(hash);
				hash.Accumulate(",");
			}
			hash.Accumulate(")");
		}
Ejemplo n.º 25
0
 private void AccumulateRobustHash_Common(IRobustHash hash)
 {
     this.registration.AccumulateRobustHash(hash);
     if (this.renderRegion != null)
     {
         this.renderRegion.AccumulateRobustHash(hash);
     }
     else
     {
         hash.Accumulate("null-render-region");
     }
     this._transparencyOptions.AccumulateRobustHash(hash);
 }
Ejemplo n.º 26
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("UserBoundsRefVerb(");
			if (this.userRegion != null)
			{
				this.userRegion.AccumulateRobustHash(hash);
			}
			else
			{
				hash.Accumulate("null");
			}
			this.delayedStaticBoundsFuture.AccumulateRobustHash(hash);
			hash.Accumulate(")");
		}
Ejemplo n.º 27
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("UserBoundsRefVerb(");
     if (this.userRegion != null)
     {
         this.userRegion.AccumulateRobustHash(hash);
     }
     else
     {
         hash.Accumulate("null");
     }
     this.delayedStaticBoundsFuture.AccumulateRobustHash(hash);
     hash.Accumulate(")");
 }
Ejemplo n.º 28
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate(this._useDocumentTransparency);
     hash.Accumulate(this._enabled);
     if (this._enabled)
     {
         hash.Accumulate(this._inverted);
         foreach (TransparencyColor current in this._colorList)
         {
             current.AccumulateRobustHash(hash);
         }
     }
     this._fadeOptions.AccumulateRobustHash(hash);
 }
Ejemplo n.º 29
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			this.registration.AccumulateRobustHash(hash);
			hash.Accumulate((int)this.interpolationMode);
		}
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("DocumentDelayedFuture");
		}
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate(this.minZoom);
			hash.Accumulate(this.maxZoom);
		}
Ejemplo n.º 32
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate(this.TileX);
			hash.Accumulate(this.TileY);
			hash.Accumulate(this.ZoomLevel);
		}
Ejemplo n.º 33
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("DummyTerm");
 }
Ejemplo n.º 34
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate(this._useDocumentTransparency);
     hash.Accumulate(this._enabled);
     if (this._enabled)
     {
         hash.Accumulate(this._inverted);
         foreach (TransparencyColor current in this._colorList)
         {
             current.AccumulateRobustHash(hash);
         }
     }
     this._fadeOptions.AccumulateRobustHash(hash);
 }
Ejemplo n.º 35
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("Layer(");
			hash.Accumulate(this.displayName);
			foreach (SourceMap current in this.sourceMaps)
			{
				current.AccumulateRobustHash(hash);
			}
			hash.Accumulate(")");
		}
Ejemplo n.º 36
0
 private void AccumulateRobustHash_Common(IRobustHash hash)
 {
     this.registration.AccumulateRobustHash(hash);
     if (this.renderRegion != null)
     {
         this.renderRegion.AccumulateRobustHash(hash);
     }
     else
     {
         hash.Accumulate("null-render-region");
     }
     this._transparencyOptions.AccumulateRobustHash(hash);
 }
		public override void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate(this.documentUri.ToString());
			hash.Accumulate(this.pageNumber);
		}
Ejemplo n.º 38
0
 public void AccumulateRobustHash_PerTile(CachePackage cachePackage, IRobustHash hash)
 {
     hash.Accumulate("SourceMap:");
     SourceDocument sourceDocument = this._documentFuture.RealizeSynchronously(cachePackage);
     sourceDocument.localDocument.AccumulateRobustHash(hash);
     this.AccumulateRobustHash_Common(hash);
 }
Ejemplo n.º 39
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate(string.Format("Cache({0})", this.hashName));
		}
Ejemplo n.º 40
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("WPFOpenVerb");
 }
Ejemplo n.º 41
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("FoxitOpenDocument");
			hash.Accumulate(this.sourceFilename);
			hash.Accumulate(this.pageNumber);
		}
Ejemplo n.º 42
0
 public override void AccumulateRobustHash(IRobustHash hash)
 {
     this.parameter.AccumulateRobustHash(hash);
 }
Ejemplo n.º 43
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     ll0.AccumulateRobustHash(hash);
     ll1.AccumulateRobustHash(hash);
 }
Ejemplo n.º 44
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("WPFOpenVerb");
		}
Ejemplo n.º 45
0
		public void AccumulateRobustHash_PerTile(CachePackage cachePackage, IRobustHash hash)
		{
			hash.Accumulate("Layer(");
			foreach (SourceMap current in this.sourceMaps)
			{
				current.AccumulateRobustHash_PerTile(cachePackage, hash);
			}
			hash.Accumulate(")");
		}
Ejemplo n.º 46
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate(this.fuzz);
			hash.Accumulate(this.halo);
			this.color.AccumulateRobustHash(hash);
		}
Ejemplo n.º 47
0
 public abstract void AccumulateRobustHash(IRobustHash hash);
Ejemplo n.º 48
0
 public override void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate(base.value);
 }
Ejemplo n.º 49
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("CompositeImageVerb");
		}
Ejemplo n.º 50
0
		public override void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("FetchDocumentFuture(");
			this.documentFuture.AccumulateRobustHash(hash);
			hash.Accumulate(")");
		}
Ejemplo n.º 51
0
 public override void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("SynchronizingFuture(");
     asyncFuture.AccumulateRobustHash(hash);
     hash.Accumulate(")");
 }
Ejemplo n.º 52
0
		public override void AccumulateRobustHash(IRobustHash hash)
		{
			this.parameter.AccumulateRobustHash(hash);
		}
Ejemplo n.º 53
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     registration.AccumulateRobustHash(hash);
     hash.Accumulate((int)interpolationMode);
 }
Ejemplo n.º 54
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			this.p.AccumulateRobustHash(hash);
		}
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("TileAddressToImageRegion");
		}
Ejemplo n.º 56
0
		public override void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("SynchronizingFuture(");
			this.asyncFuture.AccumulateRobustHash(hash);
			hash.Accumulate(")");
		}
Ejemplo n.º 57
0
 public override void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate("VETileFetch:");
     hash.Accumulate(mapStyle);
 }
Ejemplo n.º 58
0
		public void AccumulateRobustHash(IRobustHash hash)
		{
			hash.Accumulate("WPFOpenDocument");
			hash.Accumulate(this.sourceFilename);
			hash.Accumulate(this.frameNumber);
		}
Ejemplo n.º 59
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     hash.Accumulate(this.fuzz);
     hash.Accumulate(this.halo);
     this.color.AccumulateRobustHash(hash);
 }
Ejemplo n.º 60
0
 public void AccumulateRobustHash(IRobustHash hash)
 {
     this._documentFuture.AccumulateRobustHash(hash);
     this.AccumulateRobustHash_Common(hash);
     this._sourceMapRenderOptions.AccumulateRobustHash(hash);
 }