/dalvik/libcore/xml/src/main/java/org/apache/xpath/operations/ |
NotEquals.java | 37 * @param left non-null reference to the evaluated left operand. 44 public XObject operate(XObject left, XObject right) 47 return (left.notEquals(right)) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|
Quo.java | 40 * @param left non-null reference to the evaluated left operand. 47 public XObject operate(XObject left, XObject right) 50 return new XNumber((int) (left.num() / right.num()));
|
/development/samples/BrowserPlugin/jni/navigation/ |
NavigationPlugin.cpp | 59 inval.left = rnd16(r.left, inset); 102 clipR.left = clip.left; 125 m_navUp.left = Wm - 15; 127 m_navUp.right = m_navUp.left + 30; 132 m_navDown.left = Wm - 15; 134 m_navDown.right = m_navDown.left + 30; 138 // draw the nav left box (5 px from the left edge [all...] |
/development/simulator/app/assets/motorola-q/ |
layout.xml | 20 <button keyCode="soft-left" src="menu-left.png" x="35" y="385"/> 26 <button keyCode="dpad-left" src="left.png" x="158" y="406"/>
|
/external/e2fsprogs/lib/ext2fs/ |
imager.c | 46 int left = blocksize; local 48 while (left > 0) { 51 left--; 63 unsigned int group, left, c, d; local 79 left = fs->inode_blocks_per_group; 80 while (left) { 82 if (c > left) 83 c = left; 97 left--; 118 left -= d 137 unsigned int group, c, left; local [all...] |
/external/kernel-headers/original/asm-arm/ |
ipcbuf.h | 9 * Pad space is left for:
|
/external/kernel-headers/original/asm-x86/ |
ipcbuf.h | 9 * Pad space is left for:
|
/external/skia/src/svg/ |
SkSVGCircle.cpp | 38 SkScalar left, top, right, bottom; local 39 left = cx - r; 44 sprintf(scratch, "%g", left); 45 parser._addAttribute("left", scratch);
|
SkSVGEllipse.cpp | 40 SkScalar left, top, right, bottom; local 41 left = cx - rx; 46 sprintf(scratch, "%g", left); 47 parser._addAttribute("left", scratch);
|
/external/srec/tools/grxmlcompile/ |
netw_arc.h | 42 left= -1; 55 left= -1; 69 left= arcsrc->left; 89 left= -1; 123 /* Assign left context 125 void AssignLeft (int leftData) { left= leftData; }; 152 /* Get left context 154 int GetLeft() { return left; }; 270 else if (left > test->left 336 int left; \/* left context *\/ member in class:NUANArc [all...] |
/external/webkit/WebCore/manual-tests/ |
computed-transform-value.html | 32 <div class="box" style="position: absolute; left: 100px; top: 200px; -webkit-transform: scale(1.5, 0.75)"> 36 <div class="box" style="position: absolute; left: 400px; top: 200px; -webkit-transform: rotate(30deg)"> 40 <div class="box" style="position: absolute; left: 100px; top: 400px; -webkit-transform: translate(50px, 80px)"> 44 <div class="box" style="position: absolute; left: 400px; top: 400px; -webkit-transform: translate(10px, 50px) scale(0.8) rotate(-10deg)">
|
word-spacing-highlight.html | 11 <p style="margin-left:1em;">
|
containing-block-position-change.html | 5 #t { position: absolute; width: 100px; height: 100px; background: green; left: -120px; } 15 target.style.left = "0"; 28 There should be a green square below, aligned with the left margin of the page.
|
mask-composite-missing-images.html | 10 -webkit-mask-position: top left, top right, bottom left, bottom right, top center, center right, bottom center, center left, center;
|
/external/webkit/WebKitTools/iExploder/htdocs/ |
htmlvalues.in | 14 left
|
/packages/apps/Browser/res/layout-land/ |
ssl_certificate.xml | 74 android:gravity="left" 81 android:gravity="left" 94 android:gravity="left" 101 android:gravity="left" 114 android:gravity="left" 121 android:gravity="left" 147 android:gravity="left" 154 android:gravity="left" 167 android:gravity="left" 174 android:gravity="left" [all...] |
/cts/tools/dx-tests/ |
dx-tests.css | 36 margin-left: 48px; 43 text-align: left; 54 padding-left: 4px;
|
/cts/tools/vm-tests/ |
vm-tests.css | 36 margin-left: 48px; 43 text-align: left; 54 padding-left: 4px;
|
/dalvik/docs/ |
dalvik-constraints.css | 36 margin-left: 48px; 43 text-align: left; 54 padding-left: 4px;
|
java-constraints.css | 36 margin-left: 48px; 43 text-align: left; 54 padding-left: 4px;
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
weight.h | 26 // A left semiring distributes on the left; a right semiring is 29 // A Weight class is required to be (at least) a left or right semiring. 41 // --> b = Divide(c, a, DIVIDE_LEFT) if a left semiring and b.Member() 48 // Typically the same type as Weight for a (both left and right) semiring. 49 // For the left string semiring, it is the right string semiring. 54 // Typically the identity mapping in a (both left and right) semiring. 55 // In the left string semiring, it maps to the reverse string 58 // LeftSemiring: indicates weights form a left semiring. 105 enum DivideType { DIVIDE_LEFT, // left divisio [all...] |
/external/webkit/WebCore/manual-tests/inspector/ |
dom-mutation.html | 28 <div style="float: left"> 31 <div style="float: left; margin-left: 10px;" id="test2"></div>
|
/external/wpa_supplicant/ |
eap_tlv.c | 109 size_t left, tlv_len; local 116 left = be_to_host16(hdr->length) - sizeof(struct eap_hdr) - 1; 119 wpa_hexdump(MSG_DEBUG, "EAP-TLV: Received TLVs", pos, left); 120 while (left >= 4) { 126 left -= 4; 127 if (tlv_len > left) { 129 "(tlv_len=%lu left=%lu)", 131 (unsigned long) left); 155 left -= tlv_len; 157 if (left) { [all...] |
/frameworks/policies/base/phone/com/android/internal/policy/impl/ |
RecentApplicationsBackground.java | 61 protected boolean setFrame(int left, int top, int right, int bottom) { 63 if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) { 66 return super.setFrame(left, top, right, bottom); 100 int left, right; local 103 left = chld.left - bkg.left; 107 left = 0; 110 background.setBounds(left, top, right, bottom); 139 r.left = r.top = Integer.MAX_VALUE [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);
|