Home
last modified time | relevance | path

Searched refs:thisIndex (Results 1 – 3 of 3) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DByteString.java1475 for (int thisIndex = getOffsetIntoBytes(), in equalsRange()
1477 (thisIndex < thisLimit); in equalsRange()
1478 ++thisIndex, ++otherIndex) { in equalsRange()
1479 if (thisBytes[thisIndex] != otherBytes[otherIndex]) { in equalsRange()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DLiveInterval.h591 const SlotIndex &thisIndex = beginIndex(); variable
593 return thisIndex < otherIndex;
870 const SlotIndex &thisIndex = beginIndex(); variable
872 return std::tie(thisIndex, reg) < std::tie(otherIndex, other.reg);
/third_party/quickjs/
Dquickjs.c42760 int64_t thisIndex, nextIndex; in js_regexp_Symbol_match() local
42761 if (JS_ToLengthFree(ctx, &thisIndex, in js_regexp_Symbol_match()
42765 nextIndex = string_advance_index(p, thisIndex, fullUnicode); in js_regexp_Symbol_match()
42847 int64_t thisIndex, nextIndex; in js_regexp_string_iterator_next() local
42848 if (JS_ToLengthFree(ctx, &thisIndex, in js_regexp_string_iterator_next()
42852 nextIndex = string_advance_index(sp, thisIndex, it->unicode); in js_regexp_string_iterator_next()
43091 int64_t thisIndex, nextIndex; in js_regexp_Symbol_replace() local
43092 if (JS_ToLengthFree(ctx, &thisIndex, JS_GetProperty(ctx, rx, JS_ATOM_lastIndex)) < 0) in js_regexp_Symbol_replace()
43094 nextIndex = string_advance_index(sp, thisIndex, fullUnicode); in js_regexp_Symbol_replace()