HomeSort by relevance Sort by last modified time
    Searched defs:Right (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDetailsMarker.h 32 enum Orientation { Up, Down, Left, Right };
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
left_most_gc_base.h 15 class Right : public A, public B, public GarbageCollected<Right> { }; // Error
18 class DerivedRight : public Right, public Left { }; // Error
19 class DerivedLeft : public Left, public Right { };
  /external/clang/test/CodeGenCXX/
microsoft-abi-multiple-nonvirtual-inheritance.cpp 7 struct Right {
8 virtual void right();
11 struct ChildNoOverride : Left, Right {
14 struct ChildOverride : Left, Right {
16 virtual void right();
68 child->right();
69 // When calling a right base's virtual method, one needs to adjust 'this' at
74 // CHECK: %[[RIGHT:.*]] = bitcast i8* %[[RIGHT_i8]] to %struct.Right*
76 // CHECK: %[[VFPTR:.*]] = bitcast %struct.Right* %[[RIGHT]] to void (%struct.Right*)**
84 void ChildOverride::right() { function in class:ChildOverride
129 void GrandchildOverride::right() { function in class:GrandchildOverride
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
AGC_MIX_VOL_2St1Mon_D32_WRA.c 85 LVM_INT32 Right; /* Right sample */
126 Right = *pStSrc++; /* Get the right sample */
137 Right += Mono;
146 HighWord = (Vol_Mult * (Right >> 16)); /* signed long (Right) by unsigned short (Vol_Mult) multiply */
147 LowWord = (Vol_Mult * (Right & 0xffff));
148 Right = (HighWord + (LowWord >> 16)) << (Vol_Shift);
150 *pDst++ = Right;
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/util/
ListItemFactory.java 80 Right
103 boolean right = false;
112 case Right:
113 right = true;
134 if (right) {
136 button.setText("right");
258 t2.setGravity(Gravity.RIGHT | Gravity.CENTER_VERTICAL);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
heap.h 122 // compute right child of parent
123 int Right(int i) {
151 int r = Right(i);
  /frameworks/base/core/tests/coretests/src/android/util/
ListItemFactory.java 80 Right
103 boolean right = false;
112 case Right:
113 right = true;
134 if (right) {
136 button.setText("right");
259 t2.setGravity(Gravity.RIGHT | Gravity.CENTER_VERTICAL);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
cursslk.h 47 typedef enum { Left=0, Center=1, Right=2 } Justification;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
cursslk.h 47 typedef enum { Left=0, Center=1, Right=2 } Justification;
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTCue.h 132 Right,
  /external/chromium_org/third_party/sqlite/src/contrib/
sqlitecon.tcl 75 pack $w.sb -side right -fill y
77 pack $w.t -side right -fill both -expand 1
106 bind Sqlitecon <Right> {sqlitecon::Right %W}
107 bind Sqlitecon <Control-f> {sqlitecon::Right %W}
165 # Move the cursor one character to the right
167 proc sqlitecon::Right {w} {
171 # Erase the character to the right of the cursor
  /external/pdfium/core/include/fxcrt/
fx_string.h 298 CFX_ByteString Right(FX_STRSIZE count) const;
577 CFX_WideStringC Right(FX_STRSIZE count) const
699 CFX_WideString Right(FX_STRSIZE count) const;
fx_coordinates.h 269 baseType right() const function in class:CFX_RTemplate
304 void Inflate(baseType left, baseType top, baseType right, baseType bottom)
308 FXT_RECT::width += left + right;
326 void Deflate(baseType left, baseType top, baseType right, baseType bottom)
330 FXT_RECT::width -= left + right;
359 return rt.left >= left && rt.right() <= right() && rt.top >= top && rt.bottom() <= bottom();
442 baseType r = right(), b = bottom();
464 baseType r = right(), b = bottom();
468 if (r < rt.right()) {
534 int right; member in struct:FX_RECT
740 FX_FLOAT right; member in class:CFX_FloatRect
    [all...]
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusMetaHeader.h 62 INT16 Right;
84 // Left, Top, Right, and Bottom contain the coordinates of the upper-left
85 // and lower-right corners of the image on the output device. These are
  /external/chromium_org/third_party/skia/experimental/Intersection/
NearestPoint.cpp 201 Point2 Left[W_DEGREE+1], /* New left and right */
202 Right[W_DEGREE+1]; /* control polygons */
229 Bezier(w, degree, 0.5, Left, Right);
231 right_count = FindRoots(Right, degree, right_t, depth+1);
422 * "Right" are non-null.
425 static Point2 Bezier(V, degree, t, Left, Right)
430 Point2 *Right; /* RETURN right half ctl pts */
456 if (Right != NULL) {
458 Right[j] = Vtemp[degree-j][j]
    [all...]
  /external/lzma/CPP/Common/
MyString.h 334 CStringBase Right(int count) const
  /external/skia/experimental/Intersection/
NearestPoint.cpp 201 Point2 Left[W_DEGREE+1], /* New left and right */
202 Right[W_DEGREE+1]; /* control polygons */
229 Bezier(w, degree, 0.5, Left, Right);
231 right_count = FindRoots(Right, degree, right_t, depth+1);
422 * "Right" are non-null.
425 static Point2 Bezier(V, degree, t, Left, Right)
430 Point2 *Right; /* RETURN right half ctl pts */
456 if (Right != NULL) {
458 Right[j] = Vtemp[degree-j][j]
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusmetaheader.h 62 INT16 Right;
  /external/clang/lib/Format/
TokenAnnotator.cpp 148 // categorize it as an unary operator, so set the right type here.
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntddsnd.h 204 ULONG Right;
243 ULONG Right;
298 ULONG Right;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
CodeMirrorTextEditor.js 59 "Right": "goCharRight",
85 "Ctrl-Right": "goGroupRight",
87 "Alt-Right": "goLineEnd",
103 "Alt-Right": "goGroupRight",
105 "Cmd-Right": "goLineEnd",
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
DataGrid.js 155 Right: "right"
761 // This resizer is associated with the column to its right.
860 } else if (event.keyIdentifier === "Right") {
    [all...]
  /external/llvm/include/llvm/ADT/
ImmutableSet.h 60 /// Return a pointer to the right subtree. This value is
61 /// NULL if there is no right subtree.
62 ImutAVLTree *getRight() const { return right; }
91 ImutAVLTree *Right = T->getRight();
92 while (Right) { T = Right; Right = T->getRight(); }
211 "Current value is not less that value of right child");
223 ImutAVLTree *right; member in class:llvm::ImutAVLTree
245 : factory(f), left(l), right(r), prev(nullptr), next(nullptr)
    [all...]
  /external/pdfium/core/src/fxcrt/
fx_basic_bstring.cpp 739 CFX_ByteString CFX_ByteString::Right(FX_STRSIZE nCount) const
    [all...]
fx_basic_wstring.cpp 480 CFX_WideString CFX_WideString::Right(FX_STRSIZE nCount) const
    [all...]

Completed in 907 milliseconds

1 2