HomeSort by relevance Sort by last modified time
    Searched full:oldend (Results 1 - 25 of 47) sorted by null

1 2

  /external/deqp/framework/delibs/decpp/
dePoolString.cpp 40 deUintptr oldEnd = size();
44 std::copy(str, str+len, begin()+oldEnd);
49 deUintptr oldEnd = size();
52 std::copy(str.begin(), str.end(), begin()+oldEnd);
57 deUintptr oldEnd = size();
60 std::copy(str.begin(), str.end(), begin()+oldEnd);
  /external/clang/include/clang/AST/
ASTVector.h 258 T *OldEnd = this->end();
262 std::copy_backward(I, OldEnd-NumToInsert, OldEnd);
272 T *OldEnd = this->end();
274 size_t NumOverwritten = OldEnd-I;
275 this->uninitialized_copy(I, OldEnd, this->end()-NumOverwritten);
281 std::uninitialized_fill_n(OldEnd, NumToInsert-NumOverwritten, Elt);
308 T *OldEnd = this->end();
312 std::copy_backward(I, OldEnd-NumToInsert, OldEnd);
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIAnnotateControlFlow.cpp 249 CallInst *OldEnd = dyn_cast<CallInst>(Parent->getFirstInsertionPt());
250 if (OldEnd && OldEnd->getCalledFunction() == EndCf) {
251 Value *Args[] = { OldEnd->getArgOperand(0), NewPhi };
252 Ret = CallInst::Create(ElseBreak, Args, "", OldEnd);
  /cts/tests/tests/text/src/android/text/cts/
SpannableStringBuilderSpanTest.java 410 int oldEnd;
414 public Changed(Object span, int oldStart, int oldEnd, int newStart, int newEnd) {
417 this.oldEnd = oldEnd;
461 public void assertChanged(Object span, int oldStart, int oldEnd, int newStart, int newEnd) {
469 //assertEquals(changed.oldEnd, oldEnd);
  /external/llvm/include/llvm/ADT/
SmallVector.h 570 T *OldEnd = this->end();
575 this->move_backward(I, OldEnd-NumToInsert, OldEnd);
585 T *OldEnd = this->end();
587 size_t NumOverwritten = OldEnd-I;
588 this->uninitialized_move(I, OldEnd, this->end()-NumOverwritten);
594 std::uninitialized_fill_n(OldEnd, NumToInsert-NumOverwritten, Elt);
624 T *OldEnd = this->end();
629 this->move_backward(I, OldEnd-NumToInsert, OldEnd);
    [all...]
  /packages/experimental/PrintApp/src/foo/bar/permission2/
PrintActivity.java 280 int oldEnd = end = start;
281 while (i < writtenPageCount && (end - oldEnd) <= 1) {
282 oldEnd = end;
  /packages/experimental/PrintApp/src/foo/bar/print/
PrintActivity.java 276 int oldEnd = end = start;
277 while (i < writtenPageCount && (end - oldEnd) <= 1) {
278 oldEnd = end;
  /external/deqp/framework/egl/
egluConfigFilter.cpp 80 size_t oldEnd = m_rules.size();
82 std::copy(other.m_rules.begin(), other.m_rules.end(), m_rules.begin()+oldEnd);
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 338 inst_iterator OldEnd = inst_end(OldFunc);
341 while (OldIter != OldEnd && NewIter != NewEnd) {
365 EXPECT_EQ(OldEnd, OldIter);
375 inst_iterator OldEnd = inst_end(OldFunc);
378 while (OldIter != OldEnd && NewIter != NewEnd) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PrintCustomContent.java 460 int oldEnd = end = start;
461 while (i < writtenPageCount && (end - oldEnd) <= 1) {
462 oldEnd = end;
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target.cpp 186 const uint32_t oldEnd = bb->binPos + bb->binSize;
188 uint32_t adjEnd = oldEnd + sizeToBundlesNVE4(oldEnd) * 8;
  /external/llvm/lib/Support/
regcomp.c 922 char *oldend = p->end; local
935 p->end = oldend;
964 char *oldend = p->end; local
976 p->end = oldend;
1214 size_t oldend = cs->smultis; local
1228 llvm_strlcpy(cs->multis + oldend - 1, cp, cs->smultis - oldend + 1);
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 878 char *oldend = p->end; local
891 p->end = oldend;
920 char *oldend = p->end; local
932 p->end = oldend;
1168 size_t oldend = cs->smultis; local
1182 strncpy(cs->multis + oldend - 1, cp, cs->smultis - oldend + 1);
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 1047 const char *oldend; local
1053 oldend = p->end;
1064 p->end = oldend;
1105 const char *oldend; local
1111 oldend = p->end;
1122 p->end = oldend;
1411 size_t oldend; local
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/model/
slice_group.html 583 var oldEnd = oldSlice.end;
584 if (when < oldSlice.start || oldEnd < when) {
590 newSlice.duration = oldEnd - when;
  /external/skia/src/pathops/
SkOpCoincidence.cpp 647 SkOpSpanBase* oldEnd = end;
655 bool flipped = (end == oldEnd) != (oEnd == oOldEnd);
  /external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/
ShadowDOM.js 337 calcEditDistances: function(current, currentStart, currentEnd, old, oldStart, oldEnd) {
338 var rowCount = oldEnd - oldStart + 1;
400 calcSplices: function(current, currentStart, currentEnd, old, oldStart, oldEnd) {
403 var minLength = Math.min(currentEnd - currentStart, oldEnd - oldStart);
405 if (currentEnd == current.length && oldEnd == old.length) suffixCount = this.sharedSuffix(current, old, minLength - prefixCount);
409 oldEnd -= suffixCount;
410 if (currentEnd - currentStart == 0 && oldEnd - oldStart == 0) return [];
413 while (oldStart < oldEnd) splice.removed.push(old[oldStart++]);
415 } else if (oldStart == oldEnd) return [ newSplice(currentStart, [], currentEnd - currentStart) ];
416 var ops = this.spliceOperationsFromEditDistances(this.calcEditDistances(current, currentStart, currentEnd, old, oldStart, oldEnd));
    [all...]
webcomponents.js 378 calcEditDistances: function(current, currentStart, currentEnd, old, oldStart, oldEnd) {
379 var rowCount = oldEnd - oldStart + 1;
441 calcSplices: function(current, currentStart, currentEnd, old, oldStart, oldEnd) {
444 var minLength = Math.min(currentEnd - currentStart, oldEnd - oldStart);
446 if (currentEnd == current.length && oldEnd == old.length) suffixCount = this.sharedSuffix(current, old, minLength - prefixCount);
450 oldEnd -= suffixCount;
451 if (currentEnd - currentStart == 0 && oldEnd - oldStart == 0) return [];
454 while (oldStart < oldEnd) splice.removed.push(old[oldStart++]);
456 } else if (oldStart == oldEnd) return [ newSplice(currentStart, [], currentEnd - currentStart) ];
457 var ops = this.spliceOperationsFromEditDistances(this.calcEditDistances(current, currentStart, currentEnd, old, oldStart, oldEnd));
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/components/webcomponentsjs/
ShadowDOM.js 337 calcEditDistances: function(current, currentStart, currentEnd, old, oldStart, oldEnd) {
338 var rowCount = oldEnd - oldStart + 1;
400 calcSplices: function(current, currentStart, currentEnd, old, oldStart, oldEnd) {
403 var minLength = Math.min(currentEnd - currentStart, oldEnd - oldStart);
405 if (currentEnd == current.length && oldEnd == old.length) suffixCount = this.sharedSuffix(current, old, minLength - prefixCount);
409 oldEnd -= suffixCount;
410 if (currentEnd - currentStart == 0 && oldEnd - oldStart == 0) return [];
413 while (oldStart < oldEnd) splice.removed.push(old[oldStart++]);
415 } else if (oldStart == oldEnd) return [ newSplice(currentStart, [], currentEnd - currentStart) ];
416 var ops = this.spliceOperationsFromEditDistances(this.calcEditDistances(current, currentStart, currentEnd, old, oldStart, oldEnd));
    [all...]
webcomponents.js 378 calcEditDistances: function(current, currentStart, currentEnd, old, oldStart, oldEnd) {
379 var rowCount = oldEnd - oldStart + 1;
441 calcSplices: function(current, currentStart, currentEnd, old, oldStart, oldEnd) {
444 var minLength = Math.min(currentEnd - currentStart, oldEnd - oldStart);
446 if (currentEnd == current.length && oldEnd == old.length) suffixCount = this.sharedSuffix(current, old, minLength - prefixCount);
450 oldEnd -= suffixCount;
451 if (currentEnd - currentStart == 0 && oldEnd - oldStart == 0) return [];
454 while (oldStart < oldEnd) splice.removed.push(old[oldStart++]);
456 } else if (oldStart == oldEnd) return [ newSplice(currentStart, [], currentEnd - currentStart) ];
457 var ops = this.spliceOperationsFromEditDistances(this.calcEditDistances(current, currentStart, currentEnd, old, oldStart, oldEnd));
    [all...]
  /external/libxml2/
valid.c 714 xmlAutomataStatePtr oldstate, oldend; local
732 oldend = ctxt->state;
733 ctxt->state = xmlAutomataNewEpsilon(ctxt->am, oldend, NULL);
742 xmlAutomataNewEpsilon(ctxt->am, oldend, oldstate);
745 xmlAutomataNewEpsilon(ctxt->am, oldend, oldstate);
751 xmlAutomataStatePtr oldstate, oldend; local
761 oldend = xmlAutomataNewState(ctxt->am);
770 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, oldend);
776 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, oldend);
777 ctxt->state = xmlAutomataNewEpsilon(ctxt->am, oldend, NULL)
    [all...]
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java     [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseMatrix.h     [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp 331 size_t OldEnd = Output.size();
450 Output.insert(Output.begin()+OldEnd, '\'');
    [all...]
  /external/llvm/lib/CodeGen/
LiveInterval.cpp 560 SlotIndex OldEnd = I->end;
564 segments.insert(std::next(I), Segment(End, OldEnd, ValNo));
    [all...]

Completed in 1341 milliseconds

1 2