HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 301 - 325 of 4228) sorted by null

<<11121314151617181920>>

  /external/webrtc/webrtc/modules/video_render/mac/
video_render_mac_carbon_impl.cc 123 const float right,
137 AGLChannel = _ptrCocoaRender->CreateNSGLChannel(streamId, zOrder, left, top, right, bottom);
160 float& right,
164 return _ptrCarbonRender->GetChannelProperties(streamId, zOrder, left, top, right, bottom);
231 const float right,
241 const float right,
260 const float right,
271 const float right,
  /external/webrtc/webrtc/voice_engine/
voe_volume_control_impl.h 46 int SetOutputVolumePan(int channel, float left, float right) override;
48 int GetOutputVolumePan(int channel, float& left, float& right) override;
  /frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/
CustomLayout.java 30 public LayoutParams(int left, int top, int right, int bottom) {
34 mRight = right;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
WindowLocationUtil.java 98 sTmpFloat4[2] = rect.right;
103 rect.right = sTmpFloat4[2];
126 sTmpFloat8[2] = clippedBounds.right;
130 sTmpFloat8[6] = unclippedBitmapRect.right;
135 clippedBounds.right = sTmpFloat8[2];
139 unclippedBitmapRect.right = sTmpFloat8[6];
145 sTmpFloat4[2] = clippedBounds.right;
150 clippedBounds.right = sTmpFloat4[2];
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderListLayout.java 47 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
49 super.onLayout(changed, left, top, right, bottom);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d2dbasetypes.h 41 FLOAT right; member in struct:D2D_RECT_F
48 UINT32 right; member in struct:D2D_RECT_U
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/basic/
shift2.s 3 ; PA 2.0 format shift right instruction tests.
shift3.s 4 ; PA 2.0 shift right instruction tests.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
pseudo-1.d 3 # Check that some pseudos get output right.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/
ambiguousv1.d 7 # Check that we do the right thing with funref.s that doesn't have
ambiguousv1b.d 7 # Check that we do the right thing with funref2.s that doesn't have
ambiguousv2.d 7 # Check that we do the right thing with funref.s that doesn't have
ambiguousv2b.d 7 # Check that we do the right thing with funref2.s that doesn't have
  /frameworks/native/libs/ui/
Region.cpp 129 int right = current->right; local
138 if (prev.right <= left) break;
140 if (prev.right > left && prev.right < right) {
141 dst.add(Rect(prev.right, top, right, bottom));
142 right = prev.right;
    [all...]
  /external/clang/lib/Analysis/
ThreadSafetyLogical.cpp 26 implies(A->right(), LNeg, RHS, RNeg);
30 implies(LHS, LNeg, A->right(), RNeg);
36 implies(A->right(), LNeg, RHS, RNeg);
40 implies(LHS, LNeg, A->right(), RNeg);
43 // Recurse on right.
46 // When performing right recursion:
48 // When performing right recursion (negated):
53 // When performing right recursion:
55 // When performing right recursion (negated):
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawBaseClass.hpp 65 , right (0.3)
72 double right; member in struct:vkt::Draw::ReferenceImageCoordinates
81 , right (0.6)
88 double right; member in struct:vkt::Draw::ReferenceImageInstancedCoordinates
  /external/guava/guava/src/com/google/common/primitives/
SignedBytes.java 158 // For pre-sizing a builder, just get the right order of magnitude
191 public int compare(byte[] left, byte[] right) {
192 int minLength = Math.min(left.length, right.length);
194 int result = SignedBytes.compare(left[i], right[i]);
199 return left.length - right.length;
  /external/webrtc/webrtc/modules/desktop_capture/mac/
desktop_configuration.mm 46 std::max(a.right(), b.right()),
129 desktop_config.displays[0].pixel_bounds.right() * scaling_factor,
154 const MacDisplayConfiguration& right) {
155 return left.id == right.id &&
156 left.bounds.equals(right.bounds) &&
157 left.pixel_bounds.equals(right.pixel_bounds) &&
158 left.dip_to_pixel_scale == right.dip_to_pixel_scale;
  /external/webrtc/webrtc/modules/utility/include/
audio_frame_operations.h 44 // Swap the left and right channels of |frame|. Fails silently if |frame| is
51 static int Scale(float left, float right, AudioFrame& frame);
  /external/webrtc/webrtc/modules/video_render/ios/
video_render_ios_channel.mm 49 const float right,
54 Right:right
video_render_ios_view.h 27 Right:(const float)right
  /frameworks/support/v4/donut/android/support/v4/view/
WindowInsetsCompat.java 60 * Returns the right system window inset in pixels.
66 * @return The right system window inset
127 * <p>A round window's left, top, right and bottom edges reach all the way to the
153 * @param right New right inset in pixels
157 public WindowInsetsCompat replaceSystemWindowInsets(int left, int top, int right, int bottom) {
205 * Returns the right stable inset in pixels.
213 * @return The right stable inset
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherRootView.java 42 mDrawRightInsetBar = insets.right > 0 &&
45 mRightInsetBarWidth = insets.right;
49 // Apply margins on aligned view to handle left/right insets.
51 if (lp.leftMargin != insets.left || lp.rightMargin != insets.right) {
53 lp.rightMargin = insets.right;
65 // If the right inset is opaque, draw a black rectangle to ensure that is stays opaque.
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node_priority_queue.h 103 const DicNode *const right) {
104 return left->compare(right);
108 bool operator ()(const DicNode *left, const DicNode *right) const {
109 return compareDicNode(left, right);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
sigset.h 80 # define __sigandset(dest, left, right) \
84 const sigset_t *__right = (right); \
89 # define __sigorset(dest, left, right) \
93 const sigset_t *__right = (right); \

Completed in 1562 milliseconds

<<11121314151617181920>>