/dalvik/vm/mterp/mips/ |
OP_CMPL_DOUBLE.S | 4 %verify "left arg NaN"
|
OP_CMPL_FLOAT.S | 4 %verify "left arg NaN"
|
/external/chromium_org/chrome/browser/resources/ |
about_nacl.css | 11 margin-left: 10px;
|
/external/clang/test/Modules/Inputs/ |
category_left.h | 3 @interface Foo(Left) 4 -(void)left; 8 -(void)left;
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
From2iToMS_16x16.c | 33 LVM_INT32 temp1,left,right; local 37 left = (LVM_INT32)*src; 44 temp1 = (left+right)>>1; 49 temp1 = (left-right)>>1;
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
FloatRect.h | 27 float left; member in class:android::FloatRect 34 : left(other.left), top(other.top), right(other.right), bottom(other.bottom) { } 36 inline float getWidth() const { return right - left; }
|
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/ |
IntRectExtent.h | 47 IntRectExtent(int top, int right, int bottom, int left) 51 , m_left(left) 64 int left() const { return m_left; } function in class:WebCore::IntRectExtent 65 void setLeft(int left) { m_left = left; } 67 bool isZero() const { return !left() && !right() && !top() && !bottom(); } 74 rect.move(-left(), -top()); 75 rect.expand(left() + right(), top() + bottom()); 90 && a.left() == b.left(); [all...] |
/external/chromium_org/ui/gfx/ |
insets_f.cc | 15 InsetsF::InsetsF(float top, float left, float bottom, float right) 16 : InsetsBase<InsetsF, float>(top, left, bottom, right) {} 22 return base::StringPrintf("%f,%f,%f,%f", top(), left(), bottom(), right());
|
/external/guava/guava/src/com/google/common/io/ |
LimitInputStream.java | 35 private long left; field in class:LimitInputStream 48 left = limit; 52 return (int) Math.min(in.available(), left); 57 mark = left; 62 if (left == 0) { 68 --left; 74 if (left == 0) { 78 len = (int) Math.min(len, left); 81 left -= result; 95 left = mark [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Insets.java | 31 public final int left; field in class:Insets 36 private Insets(int left, int top, int right, int bottom) { 37 this.left = left; 48 * @param left the left inset 55 public static Insets of(int left, int top, int right, int bottom) { 56 if (left == 0 && top == 0 && right == 0 && bottom == 0) { 59 return new Insets(left, top, right, bottom); 70 return (r == null) ? NONE : of(r.left, r.top, r.right, r.bottom) [all...] |
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 49 * checking is performed, so the caller must ensure that left <= right and 52 * @param left The X coordinate of the left side of the rectangle 57 public Rect(int left, int top, int right, int bottom) { 58 this.left = left; 66 * rectangle (which is left unmodified) [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
AdaptableSlideViewInterface.java | 27 void setTextRegion(int left, int top, int width, int height); 31 void setImageRegion(int left, int top, int width, int height); 35 void setVideoRegion(int left, int top, int width, int height);
|
/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]; 58 const HTMLEntityTableEntry* left = m_first; local 60 if (left == right) 61 return left; 62 CompareResult result = compare(left, nextCharacter); 64 return left; 67 while (left + 1 < right) { 68 const HTMLEntityTableEntry* probe = halfway(left, right) 83 const HTMLEntityTableEntry* left = m_first; local [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...] |
/external/openssh/openbsd-compat/ |
realpath.c | 49 * 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...] |
/frameworks/base/libs/hwui/ |
Rect.h | 31 (r).left, (r).top, (r).right, (r).bottom 39 float left; member in class:android::uirenderer::Rect 51 left(0), 57 inline Rect(float left, float top, float right, float bottom): 58 left(left), 65 left(0.0f), 80 left = top = right = bottom = 0.0f; 86 return !((left < right) && (top < bottom)); 90 left = top = right = bottom = 0.0f [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/ |
realpath.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...] |
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
SortingCursorWrapper.java | 175 int left = 0; local 178 while (left < right) { 179 int mid = (left + right) >>> 1; 195 left = mid + 1; 199 int n = start - left; 202 position[left + 2] = position[left + 1]; 203 value[left + 2] = value[left + 1]; 205 position[left + 1] = position[left] 228 int left = 0; local [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; }
|
/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);
|