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

1 2 3

  /external/guava/guava-tests/test/com/google/common/collect/
RangeTest.java 307 assertTrue(range.encloses(range));
308 assertTrue(range.encloses(Ranges.open(2, 4)));
309 assertTrue(range.encloses(Ranges.open(3, 5)));
310 assertTrue(range.encloses(Ranges.closed(3, 4)));
312 assertFalse(range.encloses(Ranges.openClosed(2, 5)));
313 assertFalse(range.encloses(Ranges.closedOpen(2, 5)));
314 assertFalse(range.encloses(Ranges.closed(1, 4)));
315 assertFalse(range.encloses(Ranges.closed(3, 6)));
316 assertFalse(range.encloses(Ranges.greaterThan(3)));
317 assertFalse(range.encloses(Ranges.lessThan(3)))
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Range.java 92 * a.encloses(b)}. Likewise, {@code a} is <i>minimal</i> when {@code
93 * b.encloses(a)} for all {@code b} having property <i>P</i>. See, for example,
248 * <li>{@code [3..6]} encloses {@code [4..5]}
249 * <li>{@code (3..6)} encloses {@code (3..6)}
250 * <li>{@code [3..6]} encloses {@code [4..4)} (even though the latter is
259 * Note that if {@code a.encloses(b)}, then {@code b.contains(v)} implies
263 * <p>The encloses relation has the following properties:
266 * <li>reflexive: {@code a.encloses(a)} is always true
267 * <li>antisymmetric: {@code a.encloses(b) && b.encloses(a)} implies {@cod
281 public boolean encloses(Range<C> other) { method in class:Range
    [all...]
  /external/junit/src/org/junit/rules/
RuleChain.java 77 * Create a new {@code RuleChain}, which encloses the {@code nextRule} with
  /external/webkit/Source/WebCore/platform/graphics/chromium/
RenderSurfaceChromium.h 63 // Returns the rect that encloses the RenderSurface including any reflection.
  /external/chromium/webkit/glue/
context_menu.h 49 // This is the URL of the link that encloses the node the context menu was
  /external/webkit/Source/WebCore/rendering/
LayoutState.h 92 int m_pageLogicalHeight; // The current page height for the pagination model that encloses us.
  /dalvik/vm/native/
java_lang_Class.cpp 582 * Get the class that encloses this class (if any).
597 * Get the class that encloses this class (if any).
612 * Get the constructor that encloses this class (if any).
633 * Get the method that encloses this class (if any).
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
DFA.pm 49 # Which recognizer encloses this DFA? Needed to check backtracking
  /external/chromium/chrome/browser/accessibility/
browser_accessibility.cc 147 // most tightly encloses the specified point.
  /external/chromium/chrome/browser/printing/
print_job_worker.h 72 // thread, so this class encloses the necessary information to send the
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DFA.as 25 /** Which recognizer encloses this DFA? Needed to check backtracking */
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DFA.java 52 /** Which recognizer encloses this DFA? Needed to check backtracking */
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
dfa.py 51 ## Which recognizer encloses this DFA? Needed to check backtracking
  /external/clang/lib/CodeGen/
CGCleanup.cpp 374 // As long as Old strictly encloses the scope's enclosing normal
853 assert(Dest.getScopeDepth().encloses(EHStack.stable_begin())
    [all...]
CGCleanup.h 493 bool encloses(iterator other) const { return Ptr >= other.Ptr; }
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DFA.cs 71 /** <summary>Which recognizer encloses this DFA? Needed to check backtracking</summary> */
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DFA.cs 66 /** <summary>Which recognizer encloses this DFA? Needed to check backtracking</summary> */
  /external/chromium/chrome/common/
automation_messages.h 130 // This is the URL of the link that encloses the node the context menu was
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-string.h 123 // Similar to ShowWideCString(), except that this function encloses
  /external/freetype/include/freetype/
ftoutln.h 213 /* Return an outline's `control box'. The control box encloses all */
ftglyph.h 357 /* Return a glyph's `control box'. The control box encloses all the */
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-string.h 142 // Similar to ShowWideCString(), except that this function encloses
  /external/gtest/include/gtest/internal/
gtest-string.h 142 // Similar to ShowWideCString(), except that this function encloses
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-string.h 142 // Similar to ShowWideCString(), except that this function encloses
  /external/protobuf/gtest/include/gtest/internal/
gtest-string.h 140 // Similar to ShowWideCString(), except that this function encloses

Completed in 685 milliseconds

1 2 3