Home
last modified time | relevance | path

Searched refs:inserts (Results 1 – 25 of 123) sorted by relevance

12345

/external/jdiff/src/jdiff/
DDiff.java127 int inserts = hunk.inserted; in mergeDiffs() local
129 if (deletes == 1 && inserts == 1) { in mergeDiffs()
137 if (deletes == 1 && inserts == 1 && in mergeDiffs()
183 int inserts = hunk.inserted; in addDiffs() local
184 if (deletes == 0 && inserts == 0) { in addDiffs()
199 System.out.println("inserts: " + inserts); in addDiffs()
238 if (inserts != 0) { in addDiffs()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DCursorAdapterTest.java42 String[] inserts = { in setUp() local
50 for (String insert : inserts) { in setUp()
DSQLiteCursorTest.java328 String[] inserts = { in addPeople() local
334 for (String insert : inserts) { in addPeople()
/external/python/cpython2/Lib/
Dargparse.py387 inserts = {}
399 if start in inserts:
400 inserts[start] += ' ['
402 inserts[start] = '['
403 inserts[end] = ']'
405 if start in inserts:
406 inserts[start] += ' ('
408 inserts[start] = '('
409 inserts[end] = ')'
411 inserts[i] = '|'
[all …]
/external/swiftshader/third_party/LLVM/runtime/
DREADME.txt3 inserts calls to an external pool allocator library. This runtime library is
/external/swiftshader/third_party/LLVM/test/Transforms/LoopSimplify/
Dunreachable-loop-pred.ll4 ; When loopsimplify inserts a preheader for this loop, it should add the new
/external/llvm/test/Transforms/LoopSimplify/
Dunreachable-loop-pred.ll4 ; When loopsimplify inserts a preheader for this loop, it should add the new
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRTokenRewriteStream.m499 // should be included (they will be inserts).
539 * Then we can deal with inserts:
541 * 1. for any inserts to same rwIndex, combine even if not adjacent.
568 // Wipe prior inserts within range
569 //List inserts = getKindOfOps(rewrites, ANTLRInsertBeforeOp.class, i);
570 …ANTLRHashMap *inserts = [self getKindOfOps:rewrites KindOfClass:[ANTLRInsertBeforeOp class] Index:…
571 for (int j = 0; j < [inserts size]; j++) {
572 ANTLRInsertBeforeOp *iop = (ANTLRInsertBeforeOp *)[inserts objectAtIndex:j];
/external/swiftshader/third_party/LLVM/test/Transforms/Mem2Reg/
D2003-10-05-DeadPHIInsertion.ll1 ; Mem2reg should not insert dead PHI nodes! The naive algorithm inserts a PHI
/external/llvm/test/Transforms/Mem2Reg/
D2003-10-05-DeadPHIInsertion.ll1 ; Mem2reg should not insert dead PHI nodes! The naive algorithm inserts a PHI
/external/bison/po/
Dinsert-header.sin1 # Sed script that inserts the file called HEADER before the header entry.
/external/bison/runtime-po/
Dinsert-header.sin1 # Sed script that inserts the file called HEADER before the header entry.
/external/e2fsprogs/po/
Dinsert-header.sin1 # Sed script that inserts the file called HEADER before the header entry.
/external/elfutils/po/
Dinsert-header.sin1 # Sed script that inserts the file called HEADER before the header entry.
/external/libexif/po/
Dinsert-header.sin1 # Sed script that inserts the file called HEADER before the header entry.
/external/python/cpython2/Doc/library/
Dcopy.rst35 possible) inserts *references* into it to the objects found in the original.
37 * A *deep copy* constructs a new compound object and then, recursively, inserts
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DTokenRewriteStream.cs502 var inserts = GetKindOfOps(rewrites, typeof(InsertBeforeOp), i); in ReduceToSingleOperationPerIndex()
503 for (int j = 0; j < inserts.Count; j++) { in ReduceToSingleOperationPerIndex()
504 InsertBeforeOp iop = (InsertBeforeOp)inserts[j]; in ReduceToSingleOperationPerIndex()
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DTokenRewriteStream.as258 // should be included (they will be inserts).
296 * Then we can deal with inserts:
298 * 1. for any inserts to same index, combine even if not adjacent.
322 // Wipe prior inserts within range
323 var inserts:Array = getKindOfOps(rewrites, InsertBeforeOp, i);
324 for (var j:int = 0; j < inserts.length; j++) {
325 var iop:InsertBeforeOp = InsertBeforeOp(inserts[j]);
/external/llvm/test/Analysis/CostModel/AArch64/
Dkryo.ll17 ; Vector inserts - inserting the first element should have a zero cost; all
/external/llvm/test/CodeGen/Generic/
Dundef-phi.ll4 ; inserts an IMPLICIT_DEF instruction in the predecessor so all paths to the use
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DTokenRewriteStream.cs579 var inserts = GetKindOfOps( rewrites, typeof( InsertBeforeOp ), i ); in ReduceToSingleOperationPerIndex()
580 for ( int j = 0; j < inserts.Count; j++ ) in ReduceToSingleOperationPerIndex()
582 InsertBeforeOp iop = (InsertBeforeOp)inserts[j]; in ReduceToSingleOperationPerIndex()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DTokenRewriteStream.java466 List inserts = getKindOfOps(rewrites, InsertBeforeOp.class, i); in reduceToSingleOperationPerIndex() local
467 for (int j = 0; j < inserts.size(); j++) { in reduceToSingleOperationPerIndex()
468 InsertBeforeOp iop = (InsertBeforeOp) inserts.get(j); in reduceToSingleOperationPerIndex()
/external/llvm/test/Instrumentation/MemorySanitizer/
Dcheck-constant-shadow.ll8 ; main() is special: it inserts check for the return value
/external/llvm/test/Transforms/LoopVectorize/X86/
Dfp32_to_uint32-cost-model.ll9 ; If we need to scalarize the fptoui and then use inserts to build up the
/external/llvm/test/Transforms/SROA/
Ddbg-single-piece.ll11 ; Checks that SROA still inserts a bit_piece expression, even if it produces only one piece

12345