Searched defs:left (Results 51 - 75 of 1025) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/collect/
H A DUsingToStringOrdering.java29 @Override public int compare(Object left, Object right) { argument
30 return left.toString().compareTo(right.toString());
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractBstBalancePolicyTest.java41 private SimpleNode balanceNew(char c, @Nullable SimpleNode left, @Nullable SimpleNode right) { argument
42 return getBalancePolicy().balance(nodeFactory, new SimpleNode(c, null, null), left, right);
/external/javassist/src/main/javassist/compiler/ast/
H A DPair.java25 protected ASTree left, right; field in class:Pair
28 left = _left;
37 sbuf.append(left == null ? "<null>" : left.toString());
44 public ASTree getLeft() { return left; }
48 public void setLeft(ASTree _left) { left = _left; }
/external/libvpx/libvpx/vp9/common/
H A Dvp9_treecoder.c41 unsigned int left, right; local
44 left = num_events[-tree[i]];
46 left = convert_distribution(tree[i], tree, branch_ct, num_events);
53 branch_ct[i >> 1][0] = left;
55 return left + right;
/external/lzma/CPP/7zip/Archive/Common/
H A DMultiStream.cpp17 int left = 0, mid = _streamIndex, right = Streams.Size(); local
24 left = mid + 1;
30 mid = (left + right) / 2;
/external/lzma/CPP/7zip/Common/
H A DFilePathAutoRename.cpp45 unsigned left = 1, right = (1 << 30); local
46 while (left != right)
48 unsigned mid = (left + right) / 2;
50 left = mid + 1;
/external/openssh/openbsd-compat/
H A Drealpath.c49 * in which case the path which caused trouble is left in (resolved).
59 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
69 left_len = strlcpy(left, path + 1, sizeof(left));
76 left_len = strlcpy(left, path, sizeof(left));
78 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) {
84 * Iterate over path components in `left'.
88 * Extract the next path component and adjust `left'
91 p = strchr(left, '/');
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DQuickSorter.java44 // quicksort a[left] to a[right]
45 public void quicksort(Type[] a, int left, int right, Comparator<Type> comparator) { argument
46 if (right <= left) return;
47 int i = partition(a, left, right, comparator);
48 quicksort(a, left, i - 1, comparator);
52 // partition a[left] to a[right], assumes left < right
53 private int partition(Type[] a, int left, int right, Comparator<Type> comparator) { argument
54 int i = left - 1;
57 while (comparator.compare(a[++i], a[right]) < 0) { // find item on left t
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
H A DHasCompoundDrawablesMatcher.java16 public HasCompoundDrawablesMatcher(int left, int top, int right, int bottom) { argument
17 expectedCompoundDrawables = new ShadowTextView.CompoundDrawables(left, top, right, bottom);
42 public static Matcher<TextView> hasCompoundDrawables(int left, int top, int right, int bottom) { argument
43 return new HasCompoundDrawablesMatcher(left, top, right, bottom);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMarginLayoutParams.java20 public void setMargins(int left, int top, int right, int bottom) { argument
21 realMarginLayoutParams.leftMargin = left;
/external/skia/src/svg/
H A DSkSVGCircle.cpp30 SkScalar left, top, right, bottom; local
31 left = cx - r;
36 sprintf(scratch, "%g", SkScalarToDouble(left));
37 parser._addAttribute("left", scratch);
H A DSkSVGEllipse.cpp32 SkScalar left, top, right, bottom; local
33 left = cx - rx;
38 sprintf(scratch, "%g", SkScalarToDouble(left));
39 parser._addAttribute("left", scratch);
/external/skia/tests/
H A DPathOpsDLineTest.cpp20 static const SkDPoint left[] = { variable
39 const SkDPoint& pt = left[index];
43 SkDebugf("%s [%d] expected left\n", __FUNCTION__, index);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-ctr.c28 size_t j, len, left = data_len; local
38 while (left > 0) {
41 len = (left < AES_BLOCK_SIZE) ? left : AES_BLOCK_SIZE;
45 left -= len;
/external/wpa_supplicant_8/src/crypto/
H A Daes-ctr.c28 size_t j, len, left = data_len; local
38 while (left > 0) {
41 len = (left < AES_BLOCK_SIZE) ? left : AES_BLOCK_SIZE;
45 left -= len;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-ctr.c28 size_t j, len, left = data_len; local
38 while (left > 0) {
41 len = (left < AES_BLOCK_SIZE) ? left : AES_BLOCK_SIZE;
45 left -= len;
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/
H A Dtabs_api.js216 'left': parseInt(document.getElementById('new_window_left').value),
223 if (!isInt(args.left))
224 delete args.left;
257 left: parseInt(document.getElementById('left_' + id).value),
262 if (!isInt(retval.left))
263 delete retval.left;
/external/chromium/chrome/browser/prefs/
H A Dpref_service_uitest.cc125 int left = 0; local
126 EXPECT_TRUE(root_dict->GetInteger(kBrowserWindowPlacement + ".left",
127 &left));
128 EXPECT_EQ(left, bounds.x());
187 int left = 0; local
188 EXPECT_TRUE(root_dict->GetInteger(kBrowserWindowPlacement + ".left",
189 &left));
190 EXPECT_EQ(left, bounds.x());
/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar_button_border.h36 SkBitmap* left; member in struct:InfoBarButtonBorder::MBBImageSet
/external/chromium_org/android_webview/native/
H A Daw_picture.cc41 jint left, jint top, jint right, jint bottom) {
46 gfx::Rect(left, top, right - left, bottom - top),
40 Draw(JNIEnv* env, jobject obj, jobject canvas, jint left, jint top, jint right, jint bottom) argument
/external/chromium_org/chrome/browser/prefs/
H A Dpref_service_browsertest.cc153 int left = 0; local
154 EXPECT_TRUE(root_dict->GetInteger(kBrowserWindowPlacement + ".left",
155 &left));
156 EXPECT_EQ(left, bounds.x());
217 int left = 0; local
218 EXPECT_TRUE(root_dict->GetInteger(kBrowserWindowPlacement + ".left",
219 &left));
220 EXPECT_EQ(left, bounds.x());
/external/chromium_org/chrome/browser/ui/webui/chromeos/first_run/
H A Dfirst_run_actor.cc40 FirstRunActor::StepPosition& FirstRunActor::StepPosition::SetLeft(int left) { argument
41 left_ = left;
54 result->SetInteger("left", left_);
/external/chromium_org/chrome/installer/util/
H A Ddelete_tree_work_item.cc18 bool SafeCast(L left, R* right) { argument
20 COMPILE_ASSERT(sizeof(left) == sizeof(right),
22 if (left > static_cast<L>(std::numeric_limits<R>::max()))
24 *right = static_cast<L>(left);
/external/chromium_org/chromeos/ime/
H A Dcandidate_window.cc36 const Entry& left = candidates_[i]; local
38 if (left.value != right.value ||
39 left.label != right.label ||
40 left.annotation != right.annotation ||
41 left.description_title != right.description_title ||
42 left.description_body != right.description_body)
/external/chromium_org/components/dom_distiller/core/
H A Darticle_entry.cc28 bool AreEntriesEqual(const ArticleEntry& left, const ArticleEntry& right) { argument
29 DCHECK(IsEntryValid(left));
31 return left.SerializeAsString() == right.SerializeAsString();

Completed in 743 milliseconds

1234567891011>>