Home
last modified time | relevance | path

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

1234567891011

/external/rust/crates/rayon/tests/
Dcollect.rs22 let mut inserts = Mutex::new(Vec::new()); in collect_drop_on_unwind() localVariable
37 inserts.lock().unwrap().push(elt); in collect_drop_on_unwind()
46 let inserts = inserts.get_mut().unwrap(); in collect_drop_on_unwind() localVariable
48 println!("{:?}", inserts); in collect_drop_on_unwind()
51 assert_eq!(inserts.len(), drops.len(), "Incorrect number of drops"); in collect_drop_on_unwind()
53 inserts.sort(); in collect_drop_on_unwind()
55 assert_eq!(inserts, drops, "Incorrect elements were dropped"); in collect_drop_on_unwind()
101 let inserts = INSERTS.load(Ordering::SeqCst); in collect_drop_on_unwind_zst() localVariable
104 assert_eq!(inserts, drops, "Incorrect number of drops"); in collect_drop_on_unwind_zst()
/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-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowSimpleCursorAdapterTest.java65 String[] inserts = { in setUpDatabase() local
73 for (String insert : inserts) { in setUpDatabase()
DShadowCursorAdapterTest.java28 String[] inserts = { in setUp() local
36 for (String insert : inserts) { in setUp()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Stage.pbtxt13 Maximum number of elements in the Staging Area. If > 0, inserts
21 If > 0, inserts will block until sufficient space is available.
Dapi_def_MapStage.pbtxt19 Maximum number of elements in the Staging Area. If > 0, inserts
Dapi_def_OrderedMapStage.pbtxt19 Maximum number of elements in the Staging Area. If > 0, inserts
/external/python/cpython3/Lib/
Dargparse.py393 inserts = {}
405 if start in inserts:
406 inserts[start] += ' ['
408 inserts[start] = '['
409 if end in inserts:
410 inserts[end] += ']'
412 inserts[end] = ']'
414 if start in inserts:
415 inserts[start] += ' ('
417 inserts[start] = '('
[all …]
/external/python/cpython2/Lib/
Dargparse.py391 inserts = {}
403 if start in inserts:
404 inserts[start] += ' ['
406 inserts[start] = '['
407 inserts[end] = ']'
409 if start in inserts:
410 inserts[start] += ' ('
412 inserts[start] = '('
413 inserts[end] = ')'
415 inserts[i] = '|'
[all …]
/external/arm-trusted-firmware/docs/components/
Dplatform-interrupt-controller-API.rst90 inserts barrier to make memory updates visible before enabling interrupt, and
105 writes to GIC *Clear Enable Register* to disable the interrupt, and inserts
211 inserts barrier to make memory updates visible before raising SGI, then writes
252 inserts barrier to make memory updates visible before setting interrupt pending,
269 status, and inserts barrier to make memory updates visible afterwards.
285 inserts to order memory updates before updating mask, then writes to the GIC
/external/python/cpython2/Misc/NEWS.d/
D2.7.12.rst7 The configure script now inserts comments into the makefile to prevent the
/external/llvm/test/Transforms/LoopSimplify/
Dunreachable-loop-pred.ll4 ; When loopsimplify inserts a preheader for this loop, it should add the new
/external/llvm-project/llvm/test/CodeGen/X86/
Dcfi-inserter-callee-save-register.mir3 # Test that CFI inserter inserts .cfi_restore properly for
/external/llvm-project/llvm/test/Reduce/
Dremove-bbs-ret-nonvoid.ll1 ; Test that llvm-reduce inserts valid return instructions for functions with
/external/antlr/runtime/ObjC/Framework/
DTokenRewriteStream.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 … HashMap *inserts = [self getKindOfOps:rewrites KindOfClass:[ANTLRInsertBeforeOp class] Index:i];
571 for (int j = 0; j < [inserts size]; j++) {
572 ANTLRInsertBeforeOp *iop = (ANTLRInsertBeforeOp *)[inserts objectAtIndex:j];
/external/llvm-project/polly/utils/
Dargparse.py420 inserts = {}
432 inserts[start] = '['
433 inserts[end] = ']'
435 inserts[start] = '('
436 inserts[end] = ')'
438 inserts[i] = '|'
448 if inserts.get(i) == '|':
449 inserts.pop(i)
450 elif inserts.get(i + 1) == '|':
451 inserts.pop(i + 1)
[all …]
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/println/
Dmain.cpp26 bool inserts[] = {(os << tn, true)...};
/external/llvm-project/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/libexif/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/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/python/cpython3/Doc/library/
Dcopy.rst40 possible) inserts *references* into it to the objects found in the original.
42 * A *deep copy* constructs a new compound object and then, recursively, inserts
/external/antlr/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/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]);

1234567891011