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

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
short-circuit-argument-list.exp 107 foreach_with_prefix range2 {"1:2" ":" ":2" "1:"} {
108 gdb_test "p .TRUE. .OR. binary_string($range1) .OR. binary_string($range2)" \
115 foreach_with_prefix range2 {"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 107 foreach_with_prefix range2 {"1:2" ":" ":2" "1:"} {
108 gdb_test "p .TRUE. .OR. binary_string($range1) .OR. binary_string($range2)" \
115 foreach_with_prefix range2 {"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/gpl3/gcc/dist/gcc/
gimple-range-fold.cc 651 Value_Range range2 (op2 ? TREE_TYPE (op2) : TREE_TYPE (op1));
672 else if (src.get_operand (range2, op2))
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);
1047 Value_Range range2 (TREE_TYPE (op2));
1053 src.get_operand (range2, op2);
1057 if (src.gori ()->condexpr_adjust (range1, range2, s, cond, op1, op2, src))
1063 range2.dump(dump_file)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-range-fold.cc 591 int_range_max range1, range2; local
619 else if (src.get_operand (range2, op2))
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
1273 src.get_operand (range2, op2);
1277 if (src.gori ()->condexpr_adjust (range1, range2, s, cond, op1, op2, src))
1283 range2.dump(dump_file);
1292 r = range2;
    [all...]
  /src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
test_location.py 100 range2 = SourceRange.from_locations(location1, location2)
101 self.assertEqual(range1, range2)
  /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())
845 if (range2.empty
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
setops.d 80 range2 = The second 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))
118 return joiner(map!((ElementType!R1 a) => zip(repeat(a), range2.save))
125 (range2));
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 533 CXSourceRange range2);

Completed in 61 milliseconds