Esempio n. 1
0
 public void clipCalls_addressSource(RANGE_PARSE_4BYTE range)
 {
     if (dataVis != null)
     {
         dataVis = dataVis.clipCalls_addressSource(range);
     }
 }
Esempio n. 2
0
        /// <summary>
        /// Returns a new dataset clipped to the specified range of addresses.
        /// </summary>
        /// <param name="range"></param>
        /// <returns></returns>
        public oBufferTimeData clipCalls_addressSource(RANGE_PARSE_4BYTE range)
        {
            // Perform a FindAll search.
            oSingleDataAddressSelecter selecter = new oSingleDataAddressSelecter(range);

            return(new oBufferTimeData(data.FindAll(selecter.isSourceGood), startTime, timeStart, timeEnd));
        }