/external/chromium_org/ui/native_theme/ |
native_theme_aura.cc | 126 gfx::ImageSkia* left = rb.GetImageSkiaNamed( local 128 DrawTiledImage(canvas, *left, 130 rect.x(), rect.y(), left->width(), left->height()); 131 center_offset += left->width(); 132 center_width -= left->width(); 199 gfx::ImageSkia* left = rb.GetImageSkiaNamed(left_resource_id); local 200 DrawTiledImage(canvas, *left, 202 rect.x(), rect.y(), left->width(), left->height()) [all...] |
/frameworks/base/libs/hwui/ |
Snapshot.cpp | 81 clipRegion->setRect(clipRect->left, clipRect->top, clipRect->right, clipRect->bottom); 98 bool Snapshot::clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op) { 100 tmp.set(left, top, right, bottom); 114 bool Snapshot::clip(float left, float top, float right, float bottom, SkRegion::Op op) { 115 Rect r(left, top, right, bottom); 127 clipped = clipRegionOp(r.left, r.top, r.right, r.bottom, SkRegion::kIntersect_Op); 138 setClip(r.left, r.top, r.right, r.bottom); 144 clipped = clipRegionOp(r.left, r.top, r.right, r.bottom, op); 156 void Snapshot::setClip(float left, float top, float right, float bottom) { 157 clipRect->set(left, top, right, bottom) [all...] |
/system/extras/tests/sdcard/ |
sdcard_perf_test.cpp | 307 size_t left = testCase->dataSize(); local 309 while (left > 0) 314 if (chunk_size > left) 316 chunk_size = left; 317 left = 0; 321 left -= chunk_size; 378 size_t left = size; local 379 while (left > 0) 381 if (chunk_size > left) 383 chunk_size = left; 440 size_t left = testCase->dataSize(); local 571 size_t left = testCase->dataSize(); local [all...] |
/external/wpa_supplicant_8/src/common/ |
wpa_common.c | 400 int left; local 439 left = rsn_ie_len - sizeof(*hdr); 441 if (left >= RSN_SELECTOR_LEN) { 451 left -= RSN_SELECTOR_LEN; 452 } else if (left > 0) { 454 __func__, left); 458 if (left >= 2) { 462 left -= 2; 463 if (count == 0 || left < count * RSN_SELECTOR_LEN) { 465 "count %u left %u", __func__, count, left) 587 int left; local [all...] |
/device/lge/mako/camera/inc/ |
omx_jpeg_ext.h | 96 int left; member in struct:omx_jpeg_thumbnail 111 int32_t left; member in struct:omx_jpeg_region
|
/external/chromium/webkit/glue/ |
cpp_bound_class_unittest.cc | 128 // Constructs a JavaScript snippet that evaluates and compares the left and 135 std::string BuildJSCondition(std::string left, std::string right) { 136 return "var leftval = " + left + ";" + 142 left + " [\" + leftval + \"] != " + 191 // The property on the left will be set to the value on the right, then 202 std::string left = tests[i]; local 204 // left = right; 205 std::string js = left; 209 js.append(BuildJSCondition(left, right)); 234 // The expression on the left is expected to return the value on the right 262 std::string left = tests[i]; local [all...] |
/external/chromium_org/chrome/browser/resources/ |
gesture_config.css | 31 float: left; 40 text-align: left; 55 text-align: left; 64 text-align: left;
|
/external/chromium_org/chrome/browser/resources/ntp_android/ |
bookmarks_tablet.css | 10 padding-left: 36px;
|
/external/chromium_org/chrome/browser/resources/options/ |
certificate_manager.css | 15 /* Force tab strip to extend to the left and right edges of the window. */ 21 padding-left: 28px;
|
password_manager.css | 17 left: 0;
|
subpages_tab_controls.css | 15 border-top-left-radius: 3px; 31 left: 9px; 55 left top, 56 left bottom,
|
/external/chromium_org/chrome/browser/resources/print_preview/search/ |
search_box.css | 14 left: 8px;
|
/external/chromium_org/chrome/browser/resources/print_preview/settings/ |
copies_settings.css | 50 border-bottom-left-radius: 0; 52 border-top-left-radius: 0; 57 border-bottom-left-radius: 3px; 59 border-top-left-radius: 3px;
|
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/ |
metadata_database_unittest.cc | 29 void ExpectEquivalent(const ServiceMetadata* left, 31 if (!left) { 37 EXPECT_EQ(left->largest_change_id(), right->largest_change_id()); 38 EXPECT_EQ(left->sync_root_tracker_id(), right->sync_root_tracker_id()); 39 EXPECT_EQ(left->next_tracker_id(), right->next_tracker_id()); 42 void ExpectEquivalent(const FileDetails* left, const FileDetails* right) { 43 if (!left) { 50 for (int i = 0; i < left->parent_folder_ids_size(); ++i) 51 EXPECT_TRUE(parents.insert(left->parent_folder_ids(i)).second); 54 EXPECT_EQ(1u, parents.erase(left->parent_folder_ids(i))) [all...] |
tracker_set.cc | 14 bool TrackerSet::TrackerComparator::operator()(const FileTracker* left, 16 return left->tracker_id() < right->tracker_id();
|
/external/chromium_org/chrome/browser/ui/window_sizer/ |
window_sizer_win.cc | 21 gfx::Point corner(area.left, area.top); 29 std::min(browser_rect.left + kWindowTilePixels, 34 // Adjust corner to now overflow the work area left and top edges, so
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/ |
feed.css | 26 float: left; 27 clear: left; 44 padding-left: 15px; 60 margin-left: auto;
|
/external/chromium_org/content/browser/resources/accessibility/ |
accessibility.css | 16 float: left;
|
/external/chromium_org/printing/ |
page_setup.cc | 16 left(0), 25 left = 0; 34 left == rhs.left && 125 effective_margins_.left = std::max(requested_margins_.left, 140 overlay_area_.set_x(effective_margins_.left); 153 content_area_.set_x(effective_margins_.left);
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
FilterOperationsTest.cpp | 45 EXPECT_EQ(57, outsets.left()); 57 EXPECT_EQ(54, outsets.left());
|
/external/chromium_org/ui/views/ |
focus_border.cc | 49 int left, int top, int right, int bottom) { 50 return new DashedFocusBorder(left, top, right, bottom);
|
/external/chromium_org/ui/webui/resources/css/ |
butter_bar.css | 24 margin-left: 0.45em;
|
/external/openfst/src/include/fst/extensions/far/ |
info.h | 82 cout << std::left << setw(50) << "far type" 84 cout << std::left << setw(50) << "arc type" << Arc::Type() << endl; 85 cout << std::left << setw(50) << "fst type"; 94 cout << std::left << setw(50) << "# of FSTs" << nfst << endl; 95 cout << std::left << setw(50) << "total # of states" << nstate << endl; 96 cout << std::left << setw(50) << "total # of arcs" << narc << endl; 112 cout << std::left << setw(wkey) << "key" << setw(wtype) << "type" 118 cout << std::left << setw(wkey) << info.key << setw(wtype) << info.type
|
/external/wpa_supplicant_8/src/tls/ |
tlsv1_client_read.c | 34 size_t left, len, i; local 47 left = *in_len; 49 if (left < 4) 65 left -= 4; 67 if (len > left) 218 size_t left, len, list_len, cert_len, idx; local 232 left = *in_len; 234 if (left < 4) { 236 "(len=%lu)", (unsigned long) left); 244 left -= 4 482 size_t left, len; local 571 size_t left, len; local 635 size_t left, len; local 693 size_t left; local 763 size_t left, len, hlen; local 895 size_t left; local [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
EvenlySpacedLayout.java | 83 int left = mKeepEndSpace ? spacing : 0; local 90 child.layout(left, top, left + w, top + h); 91 left += w; 92 left += spacing; 111 int left = 0; local 117 child.layout(left, top, left + w, top + h);
|