HomeSort by relevance Sort by last modified time
    Searched refs:LEFT (Results 1 - 25 of 436) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/
macros_left.h 2 #define LEFT unsigned long
  /external/guava/guava/src/com/google/common/collect/
BstSide.java 26 LEFT {
35 return LEFT;
BstNode.java 19 import static com.google.common.collect.BstSide.LEFT;
46 * The key on which this binary search tree is ordered. All descendants of the left subtree of
52 * The left child of this node. A null value indicates that this node has no left child.
55 private final N left; field in class:BstNode
63 BstNode(@Nullable K key, @Nullable N left, @Nullable N right) {
65 this.left = left;
83 case LEFT:
84 return left;
    [all...]
BstCountBasedBalancePolicies.java 22 import static com.google.common.collect.BstSide.LEFT;
52 BstNodeFactory<N> nodeFactory, N source, @Nullable N left, @Nullable N right) {
53 return checkNotNull(nodeFactory).createNode(source, left, right);
58 public N combine(BstNodeFactory<N> nodeFactory, @Nullable N left, @Nullable N right) {
59 if (left == null) {
62 return left;
63 } else if (countAggregate.treeValue(left) > countAggregate.treeValue(right)) {
65 left, left.childOrNull(LEFT), combine(nodeFactory, left.childOrNull(RIGHT), right))
    [all...]
  /art/test/115-native-bridge/
run 26 LEFT=$(echo ${ARGS} | sed -r 's/-Djava.library.path.*//')
28 MODARGS="${LEFT} -Djava.library.path=`pwd` ${RIGHT}"
  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_AlignTest.java 26 assertEquals(Align.LEFT, Align.valueOf("LEFT"));
36 assertEquals(Align.LEFT, actual[0]);
44 assertEquals(Align.LEFT, p.getTextAlign());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
TextAlignment.java 26 LEFT(0x0),
  /external/clang/test/Modules/
macros.c 53 #ifdef LEFT
54 # error LEFT should not be visible
65 // Import left module (which also imports top)
68 #ifndef LEFT
69 # error LEFT should be visible
97 #ifndef LEFT
98 # error LEFT should be visible
  /external/droiddriver/src/com/google/android/droiddriver/scroll/
Direction.java 19 import static com.google.android.droiddriver.scroll.Direction.PhysicalDirection.LEFT;
68 LEFT {
82 return LEFT;
97 private final PhysicalDirection[] directions = {LEFT, RIGHT};
118 * override this for RTL (right-to-left) views, for example.
122 /** Follows standard convention: up-to-down, left-to-right */
135 /** Follows RTL convention: up-to-down, right-to-left */
139 return LEFT;
  /frameworks/base/core/java/android/database/
CursorJoiner.java 32 * case LEFT:
59 /** The row currently pointed to by the left cursor is unique */
62 LEFT,
68 * Initializes the CursorJoiner and resets the cursors to the first row. The left and right
70 * @param cursorLeft The left cursor to compare
71 * @param columnNamesLeft The column names to compare from the left cursor
80 "you must have the same number of columns on the left and right, "
126 case LEFT:
152 * @return LEFT, if the row pointed to by the left cursor is unique, RIGH
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintType.java 22 import static com.android.ide.common.api.SegmentType.LEFT;
63 ALIGN_LEFT(ATTR_LAYOUT_ALIGN_LEFT, LEFT, null, LEFT, null, false, false, true, false),
65 LAYOUT_LEFT_OF(ATTR_LAYOUT_TO_LEFT_OF, RIGHT, null, LEFT, null, false, false, true, true),
66 LAYOUT_RIGHT_OF(ATTR_LAYOUT_TO_RIGHT_OF, LEFT, null, RIGHT, null, false, false, true, true),
70 ALIGN_PARENT_LEFT(ATTR_LAYOUT_ALIGN_PARENT_LEFT, LEFT, null, LEFT, null, true, false, true,
184 case LEFT:
219 case LEFT:
221 case LEFT
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
BstTesting.java 18 import static com.google.common.collect.BstSide.LEFT;
39 SimpleNode(Character key, @Nullable SimpleNode left, @Nullable SimpleNode right) {
40 super(key, left, right);
53 && Objects.equal(childOrNull(LEFT), node.childOrNull(LEFT))
61 return Objects.hashCode(getKey(), childOrNull(LEFT), childOrNull(RIGHT));
68 SimpleNode source, @Nullable SimpleNode left, @Nullable SimpleNode right) {
69 return new SimpleNode(source.getKey(), left, right);
76 @Nullable SimpleNode left, @Nullable SimpleNode right) {
77 return checkNotNull(nodeFactory).createNode(source, left, right)
    [all...]
BstInOrderPathTest.java 17 import static com.google.common.collect.BstSide.LEFT;
52 BstInOrderPath<SimpleNode> path = extension(factory, d, LEFT, LEFT);
86 assertFalse(path.hasNext(LEFT));
103 BstInOrderPath<SimpleNode> path = extension(factory, d, LEFT, LEFT);
132 assertFalse(path.hasNext(LEFT));
148 BstInOrderPath<SimpleNode> path = extension(factory, d, LEFT);
176 assertFalse(path.hasNext(LEFT));
189 assertTrue(path.hasNext(LEFT));
    [all...]
  /external/chromium_org/chrome/browser/ui/views/toolbar/
toolbar_button_test.cc 76 ui_controls::LEFT,
97 ui_controls::LEFT,
107 ui_controls::LEFT,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 17 from Tkconstants import RIGHT, LEFT, Y, BOTH
27 self.pack(side=LEFT, fill=BOTH, expand=True)
50 stext.pack(fill=BOTH, side=LEFT, expand=True)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 17 from Tkconstants import RIGHT, LEFT, Y, BOTH
27 self.pack(side=LEFT, fill=BOTH, expand=True)
50 stext.pack(fill=BOTH, side=LEFT, expand=True)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
aboutDialog.py 53 labelDesc = Label(frameBg, text=byline, justify=LEFT,
57 justify=LEFT, fg=self.fg, bg=self.bg)
61 justify=LEFT, fg=self.fg, bg=self.bg)
78 buttonLicense.pack(side=LEFT, padx=10, pady=10)
82 buttonCopyright.pack(side=LEFT, padx=10, pady=10)
86 buttonCredits.pack(side=LEFT, padx=10, pady=10)
98 idle_about_b.pack(side=LEFT, padx=10, pady=10)
102 idle_news_b.pack(side=LEFT, padx=10, pady=10)
106 idle_credits_b.pack(side=LEFT, padx=10, pady=10)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
aboutDialog.py 53 labelDesc = Label(frameBg, text=byline, justify=LEFT,
57 justify=LEFT, fg=self.fg, bg=self.bg)
61 justify=LEFT, fg=self.fg, bg=self.bg)
78 buttonLicense.pack(side=LEFT, padx=10, pady=10)
82 buttonCopyright.pack(side=LEFT, padx=10, pady=10)
86 buttonCredits.pack(side=LEFT, padx=10, pady=10)
98 idle_about_b.pack(side=LEFT, padx=10, pady=10)
102 idle_news_b.pack(side=LEFT, padx=10, pady=10)
106 idle_credits_b.pack(side=LEFT, padx=10, pady=10)
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_framedecoder.cpp 214 pChVars[ LEFT] = &pVars->perChan[ LEFT];
334 pv_memset((void*)pChVars[LEFT]->work_buf_int32,
336 SUBBANDS_NUMBER*FILTERBANK_BANDS*sizeof(pChVars[LEFT]->work_buf_int32[0]));
339 pv_memset((void*)&pChVars[ LEFT]->circ_buffer[576],
341 480*sizeof(pChVars[ LEFT]->circ_buffer[0]));
346 pChVars[ LEFT]->used_freq_lines = 575;
408 int32 used_freq_lines = (pChVars[ LEFT]->used_freq_lines >
410 pChVars[ LEFT]->used_freq_lines :
413 pChVars[ LEFT]->used_freq_lines = used_freq_lines
    [all...]
  /external/chromium_org/media/base/
channel_mixer.cc 41 DCHECK((ChannelOrder(layout, LEFT) >= 0 &&
174 for (Channels ch = LEFT; ch < CHANNELS_MAX + 1;
192 // If all input channels are accounted for, there's nothing left to do.
199 if (IsUnaccounted(LEFT)) {
206 Mix(LEFT, CENTER, scale);
215 MixWithoutAccounting(CENTER, LEFT, scale);
233 Mix(BACK_LEFT, LEFT, kEqualPowerScale);
256 Mix(SIDE_LEFT, LEFT, kEqualPowerScale);
278 MixWithoutAccounting(BACK_CENTER, LEFT, kEqualPowerScale);
289 if (HasOutputChannel(LEFT)) {
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
StatusBarController.java 50 labelText.setHorizontalTextPosition(JLabel.LEFT);
56 layout.setAlignment(FlowLayout.LEFT);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/
constants.js 26 LEFT: 37,
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListOfTouchablesTest.java 63 TouchUtils.dragViewBy(this, lastChild, Gravity.TOP | Gravity.LEFT,
80 Gravity.TOP | Gravity.LEFT, mListView.getTop());
  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
LayoutInsetsTest.java 17 static int[] GRAVITIES = {Gravity.LEFT, Gravity.LEFT, Gravity.CENTER_HORIZONTAL, Gravity.RIGHT, Gravity.RIGHT};
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_drag_controller_interactive_uitest_win.cc 57 ui_controls::LEFT, ui_controls::DOWN));
61 ui_controls::LEFT, ui_controls::UP));
89 ui_controls::LEFT, ui_controls::DOWN));
104 ui_controls::LEFT, ui_controls::UP));
123 ui_controls::LEFT, ui_controls::DOWN));
127 ui_controls::LEFT, ui_controls::UP));
154 ui_controls::LEFT, ui_controls::DOWN));
181 ui_controls::LEFT, ui_controls::DOWN));
211 ui_controls::LEFT, ui_controls::DOWN));
236 ui_controls::LEFT, ui_controls::DOWN))
    [all...]

Completed in 609 milliseconds

1 2 3 4 5 6 7 8 91011>>