HomeSort by: relevance | last modified time | path
    Searched refs:range1 (Results 1 - 9 of 9) sorted by relevancy

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
short-circuit-argument-list.exp 106 foreach_with_prefix range1 {"1:2" ":" ":2" "1:"} {
108 gdb_test "p .TRUE. .OR. binary_string($range1) .OR. binary_string($range2)" \
114 foreach_with_prefix range1 {"1:2" ":" ":2" "1:"} {
116 gdb_test "p .TRUE. .OR. binary_string($range1) .OR. truth_table($range2, 1)" \
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
short-circuit-argument-list.exp 106 foreach_with_prefix range1 {"1:2" ":" ":2" "1:"} {
108 gdb_test "p .TRUE. .OR. binary_string($range1) .OR. binary_string($range2)" \
114 foreach_with_prefix range1 {"1:2" ":" ":2" "1:"} {
116 gdb_test "p .TRUE. .OR. binary_string($range1) .OR. truth_table($range2, 1)" \
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXSourceLocation.cpp 75 unsigned clang_equalRanges(CXSourceRange range1, CXSourceRange range2) {
76 return range1.ptr_data[0] == range2.ptr_data[0]
77 && range1.ptr_data[1] == range2.ptr_data[1]
78 && range1.begin_int_data == range2.begin_int_data
79 && range1.end_int_data == range2.end_int_data;
  /src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
test_location.py 99 range1 = SourceRange.from_locations(location1, location2)
101 self.assertEqual(range1, range2)
105 self.assertNotEqual(range1, range3)
  /src/external/gpl3/gcc/dist/gcc/
gimple-range-fold.cc 650 Value_Range range1 (TREE_TYPE (op1));
653 if (src.get_operand (range1, op1))
660 if (!handler.fold_range (r, type, range1, r2))
667 rel = handler.lhs_op1_relation (r, range1, range1);
684 if (!handler.fold_range (r, type, range1, range2,
688 relation_fold_and_or (as_a <irange> (r), s, src, range1, range2); local
698 rel = handler.lhs_op1_relation (r, range1, range2, rel);
704 rel = handler.lhs_op2_relation (r, range1, range2, rel);
1046 Value_Range range1 (TREE_TYPE (op1))
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-range-fold.cc 591 int_range_max range1, range2; local
602 if (src.get_operand (range1, op1))
608 handler->fold_range (r, type, range1, r2);
614 rel = handler->lhs_op1_relation (r, range1, range1);
631 handler->fold_range (r, type, range1, range2, rel);
642 rel = handler->lhs_op1_relation (r, range1, range2);
648 rel= handler->lhs_op2_relation (r, range1, range2);
1260 int_range_max cond_range, range1, range2; local
1272 src.get_operand (range1, op1)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
array.d 821 bool equal(Range1, Range2)(Range1 range1, Range2 range2)
832 static if (isArray!Range1 && isArray!Range2 && is(typeof(range1 == range2)))
833 return range1 == range2;
837 static if (hasLength!Range1 && hasLength!Range2 && is(typeof(r1.length == r2.length)))
839 if (range1.length != range2.length)
843 for (; !range1.empty; range1.popFront(), range2.popFront()
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
setops.d 79 range1 = The first range
88 auto cartesianProduct(R1, R2)(R1 range1, R2 range2)
104 return zip(sequence!"n"(cast(size_t) 0), range1.save, range2.save,
105 repeat(range1), repeat(range2))
119 (range1));
124 return joiner(map!((ElementType!R2 a) => zip(range1.save, repeat(a)))
456 auto cartesianProduct(R1, R2, RR...)(R1 range1, R2 range2, RR otherRanges)
472 cartesianProduct(range1, cartesianProduct(range2, otherRanges))
  /src/external/apache2/llvm/dist/clang/include/clang-c/
Index.h 532 CINDEX_LINKAGE unsigned clang_equalRanges(CXSourceRange range1,

Completed in 30 milliseconds