HomeSort by relevance Sort by last modified time
    Searched full:right (Results 51 - 75 of 23064) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
Pair.java 23 private final R right; field in class:Pair
30 public Pair(L left, R right) {
32 this.right = right;
70 return right;
78 public static <L, R> Pair<L, R> create(L left, R right) {
79 return new Pair<L, R>(left, right);
  /external/guava/guava/src/com/google/common/collect/
ComparisonChain.java 67 Comparable left, Comparable right) {
68 return classify(left.compareTo(right));
71 @Nullable T left, @Nullable T right, Comparator<T> comparator) {
72 return classify(comparator.compare(left, right));
74 @Override public ComparisonChain compare(int left, int right) {
75 return classify(Ints.compare(left, right));
77 @Override public ComparisonChain compare(long left, long right) {
78 return classify(Longs.compare(left, right));
80 @Override public ComparisonChain compare(float left, float right) {
81 return classify(Float.compare(left, right));
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnPOS.java 28 /** The part of speech at right side */
29 public int right = 0; field in class:WnnPOS
40 * @param right The part of speech at right side
42 public WnnPOS(int left, int right) {
44 this.right = right;
  /external/chromium_org/chrome/browser/ui/tabs/
tab_resources.cc 17 // Windows and Ash have shadows in the left, right and top parts of the tab.
37 SkScalar right = SkIntToScalar(width) - kTabInset; local
52 path->lineTo(right - kTabCapWidth, 0);
55 // Connect to the right cap.
56 path->lineTo(right - kTabCapWidth, top);
58 // Right end cap.
59 path->lineTo(right - kTabCapWidth + kTabTopCurveWidth,
61 path->lineTo(right - kTabBottomCurveWidth, bottom - kTabBottomCurveWidth);
62 path->lineTo(right, bottom);
  /external/markdown/MarkdownTest/Tests_2004/
Backslash escapes.html 13 <p>Right brace: }</p>
17 <p>Right bracket: ]</p>
21 <p>Right paren: )</p>
47 Right brace: \}
51 Right bracket: \]
55 Right paren: \)
82 <p>Right brace: <code>\}</code></p>
86 <p>Right bracket: <code>\]</code></p>
90 <p>Right paren: <code>\)</code></p>
Backslash escapes.text-out 15 <p>Right brace: }</p>
17 <p>Right bracket: ]</p>
19 <p>Right paren: )</p>
38 Right brace: \}
42 Right bracket: \]
46 Right paren: \)
67 <p>Right brace: <code>\}</code></p>
69 <p>Right bracket: <code>\]</code></p>
71 <p>Right paren: <code>\)</code></p>
Backslash escapes.text-res 15 <p>Right brace: }</p>
17 <p>Right bracket: ]</p>
19 <p>Right paren: )</p>
38 Right brace: \}
42 Right bracket: \]
46 Right paren: \)
67 <p>Right brace: <code>\}</code></p>
69 <p>Right bracket: <code>\]</code></p>
71 <p>Right paren: <code>\)</code></p>
  /external/markdown/tests/markdown-test/
backlash-escapes.html 7 <p>Right brace: }</p>
9 <p>Right bracket: ]</p>
11 <p>Right paren: )</p>
29 Right brace: \}
33 Right bracket: \]
37 Right paren: \)
57 <p>Right brace: <code>\}</code></p>
59 <p>Right bracket: <code>\]</code></p>
61 <p>Right paren: <code>\)</code></p>
  /external/chromium_org/third_party/WebKit/ManualTests/
right-click-crash.html 2 document.onmousedown = function () { alert("Dismiss this and quickly right click again."); };
3 </script></head><body>This page is intended to test crashes caused by repeated right clicks.
4 To try to reproduce the bug, right click and then dismiss the dialog by hitting Return.
  /external/chromium_org/tools/grit/grit/testdata/
status.html 14 <td align=right nowrap><i><font size=-1>Number of items</font></i></td>
15 <td align=right nowrap><i><font size=-1>Time of newest item</font></i></td>
19 <td align=right><b>[TOTAL_COUNT]</b></td>
20 <td align=right><b>[TOTAL_TIME]</b></td>
24 <td align=right><font size=-1>[EMAIL_COUNT]</font></td>
25 <td align=right><font size=-1>[EMAIL_TIME]</font></td>
29 <td align=right><font size=-1>[IM_COUNT]</font></td>
30 <td align=right><font size=-1>[IM_TIME]</font></td>
34 <td align=right><font size=-1>[WEB_COUNT]</font></td>
35 <td align=right><font size=-1>[WEB_TIME]</font></td
    [all...]
  /external/chromium_org/tools/gyp/test/configurations/target_platform/
configurations.gyp 30 'target_name': 'right',
33 'right.c',
52 'dependencies': ['right'],
  /frameworks/base/graphics/java/android/graphics/
RectF.java 28 * represented by the coordinates of its 4 edges (left, top, right bottom).
31 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
36 public float right; field in class:RectF
46 * checking is performed, so the caller must ensure that left <= right and
51 * @param right The X coordinate of the right side of the rectangle
54 public RectF(float left, float top, float right, float bottom) {
57 this.right = right;
70 left = top = right = bottom = 0.0f
    [all...]
Rect.java 28 * represented by the coordinates of its 4 edges (left, top, right bottom).
31 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
36 public int right; field in class:Rect
61 * checking is performed, so the caller must ensure that left <= right and
66 * @param right The X coordinate of the right side of the rectangle
69 public Rect(int left, int top, int right, int bottom) {
72 this.right = right;
85 left = top = right = bottom = 0
    [all...]
  /external/chromium_org/ppapi/cpp/
rect.cc 27 void Rect::Inset(int32_t left, int32_t top, int32_t right, int32_t bottom) {
29 set_width(std::max<int32_t>(width() - left - right, 0));
39 return (point_x >= x()) && (point_x < right()) &&
44 return (rect.x() >= x() && rect.right() <= right() &&
49 return !(rect.x() >= right() || rect.right() <= x() ||
56 int32_t rr = std::min(right(), rect.right());
74 int32_t rr = std::max(right(), rect.right())
    [all...]
  /external/chromium_org/third_party/icu/source/common/
uarrsort.c 31 uprv_uint16Comparator(const void *context, const void *left, const void *right) {
32 return (int32_t)*(const uint16_t *)left - (int32_t)*(const uint16_t *)right;
36 uprv_int32Comparator(const void *context, const void *left, const void *right) {
37 return *(const int32_t *)left - *(const int32_t *)right;
41 uprv_uint32Comparator(const void *context, const void *left, const void *right) {
42 uint32_t l=*(const uint32_t *)left, r=*(const uint32_t *)right;
123 int32_t left, right; local
125 /* start and left are inclusive, limit and right are exclusive */
133 right=limit;
144 while(/* x<array[right-1] *
    [all...]
  /development/samples/browseable/FragmentTransition/
_index.jd 8 <p>This sample demonstrates how to start a transition right after a fragment transaction.</p>
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_backend_test_util.h 29 const ServiceMetadata& right);
30 void ExpectEquivalentDetails(const FileDetails& left, const FileDetails& right);
32 const FileMetadata& right);
34 const FileTracker& right);
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
fixed-position-in-fixed-viewport.html 16 <div id="right-fixed" style="top: 0px; right: 0px; width: 20px; height: 20px"></div>
17 <div id="left-right-fixed" style="top: 0px; left: 0px; right: 0px; height: 20px"></div>
  /external/clang/test/Modules/Inputs/
macros_right.h 2 #define RIGHT unsigned short
  /external/clang/test/Preprocessor/
macro_rparen_scan.c 3 /* Right paren scanning, hard case. Should expand to 3. */
  /external/compiler-rt/SDKs/darwin/
README.txt 2 preprocessor tricks to get the right definitions for the few things which
  /external/lzma/CPP/Common/
MyVector.h 81 int FindInSorted(const T& item, int left, int right) const
83 while (left != right)
85 int mid = (left + right) / 2;
90 right = mid;
99 int left = 0, right = Size(); local
100 while (left != right)
102 int mid = (left + right) / 2;
107 right = mid;
116 int left = 0, right = Size(); local
117 while (left != right)
223 int left = 0, right = Size(); local
239 int left = 0, right = Size(); local
    [all...]
  /external/oprofile/events/i386/core_i7/
events 3 # right now this is only the shared events included for the Nehalem core,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion2-expected-completion13c.txt 4 bottom|right
completionvalues1-expected-completion27.txt 5 right

Completed in 783 milliseconds

1 23 4 5 6 7 8 91011>>