/frameworks/base/core/java/android/hardware/camera2/params/ |
ReprocessFormatsMap.java | 77 int left = entry.length; local 81 left--; 84 if (left < 1) { 90 left--; 99 if (left < length) { 103 "expected: %d)", inputFormat, left, length)); 107 left -= length; 132 int left = mEntry.length; local 136 left--; 139 if (left < 1) 180 int left = mEntry.length; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLEntitySearch.cpp | 33 static const HTMLEntityTableEntry* halfway(const HTMLEntityTableEntry* left, const HTMLEntityTableEntry* right) 35 return &left[(right - left) / 2]; 59 const HTMLEntityTableEntry* left = m_first; local 61 if (left == right) 62 return left; 63 CompareResult result = compare(left, nextCharacter); 65 return left; 68 while (left + 1 < right) { 69 const HTMLEntityTableEntry* probe = halfway(left, right) 84 const HTMLEntityTableEntry* left = m_first; local [all...] |
/device/asus/fugu/dumpstate/ |
dumpstate.c | 55 int left = 0; local 58 int ret = read(fd, &buffer[left], sizeof(buffer) - left); 62 left += ret; 64 while (left > 2) { 66 left -= 3; 74 if (left) { 75 memmove(buffer, &buffer[ofs], left); 80 if (!left) { 86 count = left; [all...] |
/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...] |
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...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/ |
SelectionRenderer.java | 24 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom, 26 canvas.drawRect(left, top, right, top + stroke, paint); 27 canvas.drawRect(left, bottom - stroke, right, bottom, paint); 28 canvas.drawRect(left, top, left + stroke, bottom, paint); 32 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom, 34 canvas.drawRect(left, top, right, top + stroke, selectPaint); 35 canvas.drawRect(left, bottom - stroke, right, bottom, selectPaint); 36 canvas.drawRect(left, top, left + stroke, bottom, selectPaint) [all...] |
/frameworks/base/graphics/java/android/graphics/ |
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). 34 public int left; field in class:Rect 61 * checking is performed, so the caller must ensure that left <= right and 64 * @param left The X coordinate of the left side of the rectangle 69 public Rect(int left, int top, int right, int bottom) { 70 this.left = left; 78 * rectangle (which is left unmodified) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/ |
jquery.isonscreen.js | 17 left: $(window).scrollLeft(), 24 if( box.left+box.width-container.left > 0 && 25 box.left < container.width+container.left && 39 left: $(window).scrollLeft(), 46 if( $(this).offset().left+$(this).width()-container.left > 0 && 47 $(this).offset().left < container.width+container.left & [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/ |
BitReaderBuffer.java | 19 int left = 8 - position % 8; 21 if (i <= left) { 22 rc = (v << (position % 8) & 0xFF) >> ((position % 8) + (left - i)); 25 int now = left; 26 int then = i - left; 40 int left = 8 - position % 8; 41 if (left == 8) { 42 left = 0; 44 readBits(left); 45 return left; [all...] |
/libcore/luni/src/main/native/ |
canonicalize_path.cpp | 60 // Iterate over path components in 'left'. 62 std::string left(path + 1); 63 while (!left.empty()) { 65 size_t nextSlash = left.find('/'); 66 std::string nextPathComponent = left.substr(0, nextSlash); 68 left.erase(0, nextSlash + 1); 70 left.clear(); 111 if (!left.empty()) { 113 left = symlink + maybeSlash + left; [all...] |
/external/chromium_org/remoting/base/ |
typed_buffer_unittest.cc | 51 TypedBuffer<Data> left; local 54 EXPECT_FALSE(left.get()); 55 EXPECT_EQ(left.length(), 0u); 60 left = right.Pass(); 64 EXPECT_EQ(left.get(), raw_ptr); 65 EXPECT_EQ(left.length(), sizeof(int)); 74 TypedBuffer<Data> left(sizeof(int)); 77 EXPECT_TRUE(left.get()); 78 EXPECT_EQ(left.length(), sizeof(int)); 82 Data* raw_left = left.get() [all...] |
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/ |
drive_backend_test_util.cc | 22 void ExpectEquivalentDetails(const FileDetails& left, 25 for (int i = 0; i < left.parent_folder_ids_size(); ++i) 26 EXPECT_TRUE(parents.insert(left.parent_folder_ids(i)).second); 29 EXPECT_EQ(1u, parents.erase(left.parent_folder_ids(i))); 32 EXPECT_EQ(left.title(), right.title()); 33 EXPECT_EQ(left.file_kind(), right.file_kind()); 34 EXPECT_EQ(left.md5(), right.md5()); 35 EXPECT_EQ(left.etag(), right.etag()); 36 EXPECT_EQ(left.creation_time(), right.creation_time()); 37 EXPECT_EQ(left.modification_time(), right.modification_time()) [all...] |
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
SortingCursorWrapper.java | 177 int left = 0; local 180 while (left < right) { 181 int mid = (left + right) >>> 1; 190 left = mid + 1; 194 int n = start - left; 197 position[left + 2] = position[left + 1]; 198 value[left + 2] = value[left + 1]; 200 position[left + 1] = position[left] 223 int left = 0; local [all...] |
/external/clang/test/CodeGenCXX/ |
microsoft-abi-multiple-nonvirtual-inheritance.cpp | 3 struct Left { 4 virtual void left(); 11 struct ChildNoOverride : Left, Right { 14 struct ChildOverride : Left, Right { 15 virtual void left(); 25 child->left(); 26 // Only need to cast 'this' to Left*. 27 // CHECK: %[[LEFT:.*]] = bitcast %struct.ChildNoOverride* %[[CHILD]] to %struct.Left* 28 // CHECK: %[[VFPTR:.*]] = bitcast %struct.Left* %[[LEFT]] to void (%struct.Left*)** 36 void ChildOverride::left() { function in class:ChildOverride [all...] |
/external/javassist/src/main/javassist/compiler/ast/ |
Pair.java | 25 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; }
|
/frameworks/base/core/java/android/animation/ |
RectEvaluator.java | 59 * (left, top, right, and bottom). 73 int left = startValue.left + (int) ((endValue.left - startValue.left) * fraction); local 78 return new Rect(left, top, right, bottom); 80 mRect.set(left, top, right, bottom);
|
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
Utilities.java | 9 int left = x - w / 2; local 11 int right = left + w; 13 d.setBounds(left, top, right, bottom);
|
/bionic/libc/upstream-openbsd/lib/libc/stdlib/ |
tsearch.c | 20 struct node_t *left, *right; member in struct:node_t 40 &(*rootp)->left : /* T3: follow left branch */ 47 q->left = q->right = (struct node_t *)0; 69 &(*rootp)->left : /* follow left branch */ 75 if ((q = (*rootp)->left) == (struct node_t *)0) /* Left (struct node_t *)0? */ 78 if (r->left == (struct node_t *)0) { /* D2: Find successor */ 79 r->left = q [all...] |
/external/chromium_org/chrome/browser/resources/ |
profile_signin_confirmation.css | 7 margin-left: 0; 15 margin-left: 0;
|
/external/chromium_org/third_party/skia/tests/ |
CanvasStateHelpers.h | 22 void complex_layers_draw(SkCanvas* canvas, float left, float top, 32 float left, float top, float right, float bottom, int32_t spacer); 38 void complex_clips_draw(SkCanvas* canvas, int32_t left, int32_t top, 48 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp,
|
/external/libunwind/scripts/ |
kernel-diff.sh | 6 left=$(eval echo $l) 8 # echo $left $right 9 diff -up $left $right
|
/prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/android/ |
rect.h | 26 int32_t left; member in struct:ARect
|
/prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/android/ |
rect.h | 26 int32_t left; member in struct:ARect
|
/prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/android/ |
rect.h | 26 int32_t left; member in struct:ARect
|
/prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/android/ |
rect.h | 26 int32_t left; member in struct:ARect
|