HomeSort by relevance Sort by last modified time
    Searched defs:it1 (Results 1 - 19 of 19) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/header/
RouteList.java 78 ListIterator<Route> it1 = that.listIterator(); local
81 Route route1 = (Route) it1.next();
SIPObjectList.java 87 Iterator<GenericObject> it1 = this.listIterator(); local
89 while (it1.hasNext()) {
90 GenericObject outerObj = (GenericObject) it1.next();
  /external/oprofile/libpp/
sample_container.cpp 93 iterator it1 = samples_by_loc.lower_bound(&lower); local
96 return accumulate(it1, it2, count_array_t(), add_counts);
diff_container.cpp 127 symbol_container::symbols_t::iterator it1 = pc1.begin_symbol(); local
132 while (it1 != end1 && it2 != end2) {
133 if (rough_less(*it1, *it2)) {
134 symbol_old(syms, *it1, choice);
135 ++it1;
136 } else if (rough_less(*it2, *it1)) {
140 symbol_diff(syms, *it1, total1, *it2, total2, choice);
141 ++it1;
146 for (; it1 != end1; ++it1)
    [all...]