/external/chromium_org/chrome/browser/resources/ntp4/ |
guest_tab.css | 19 float: left; 26 margin-left: auto;
|
/external/chromium_org/chrome/browser/resources/ntp_android/ |
incognito_tab.css | 12 float: left; 20 margin-left: auto;
|
/external/chromium_org/printing/ |
print_settings_initializer_mac.cc | 50 (paper_rect.right - paper_rect.left), 53 (page_rect.left - paper_rect.left), 55 (page_rect.right - page_rect.left),
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
spectrum.css | 5 left: 0; 24 left: 0; 32 left: 2px; 41 left: 170px; 67 left: 15px; 78 background-image: -webkit-linear-gradient(left, white, rgba(204, 154, 129, 0)); 97 left: 0; 107 left: -1px;
|
/external/chromium_org/third_party/skia/include/gpu/ |
GrTextContext.h | 24 virtual void drawPackedGlyph(GrGlyph::PackedID, GrFixed left, GrFixed top,
|
/external/chromium_org/third_party/skia/src/core/ |
SkBlitter_Sprite.cpp | 21 void SkSpriteBlitter::setup(const SkBitmap& device, int left, int top, 24 fLeft = left; 55 int left, int top, 60 a bit of a hack, since we "could" pass in the fractional left/top for the bitmap, 84 blitter->setup(device, left, top, paint);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
inttree.c | 76 it->nil->left = it->nil; 82 it->root->left = it->nil; 108 /* makes the parent of x be to the left of x, x the parent of */ 131 x->right=y->left; 133 if (y->left != it->nil) 134 y->left->parent=x; /* used to use sentinel here */ 142 if (x == x->parent->left) 143 x->parent->left=y; 146 y->left=x; 149 x->maxHigh=ITMax(x->left->maxHigh,ITMax(x->right->maxHigh,x->high)) [all...] |
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/ |
utility.js | 15 var left = 0; 17 while (left <= right) { 18 var mid = Math.floor((left + right) / 2); 20 left = mid + 1; 26 return left; 31 * @param {Array.<*>} left 35 var intersectionOfSorted = function(left, right) { 37 return left.reduce(function(previous, current) {
|
/external/chromium_org/ui/base/cocoa/ |
appkit_utils.h | 18 int left; member in struct:ui::NinePartImageIds
|
/external/chromium_org/ui/gfx/ |
insets_f.h | 20 InsetsF(float top, float left, float bottom, float right);
|
shadow_value.cc | 50 int left = 0; local 61 left = std::max(left, blur - shadow.x()); 67 return Insets(-top, -left, -bottom, -right);
|
/external/clang/include/clang/Basic/ |
TargetCXXABI.h | 262 friend bool operator==(const TargetCXXABI &left, const TargetCXXABI &right) { 263 return left.getKind() == right.getKind(); 266 friend bool operator!=(const TargetCXXABI &left, const TargetCXXABI &right) { 267 return !(left == right);
|
/external/clang/test/CodeGen/ |
2002-02-14-EntryNodePreds.c | 19 QUAD_EDGE left, right; member in struct:__anon16368
|
/external/guava/guava/src/com/google/common/collect/ |
NaturalOrdering.java | 34 @Override public int compare(Comparable left, Comparable right) { 35 checkNotNull(left); // for GWT 37 if (left == right) { 41 return left.compareTo(right);
|
NullsFirstOrdering.java | 34 @Override public int compare(@Nullable T left, @Nullable T right) { 35 if (left == right) { 38 if (left == null) { 44 return ordering.compare(left, right);
|
NullsLastOrdering.java | 34 @Override public int compare(@Nullable T left, @Nullable T right) { 35 if (left == right) { 38 if (left == null) { 44 return ordering.compare(left, right);
|
/external/hyphenation/ |
substrings.c | 27 int left=0, right=max-1;
local 28 while (left <= right) {
29 int mid = ((right-left)/2)+left;
32 left = mid + 1;
63 int left,
70 p = left;
71 for (i=left; i<right; i++) {
87 int left,
90 while (right > left) {
[all...] |
/external/lzma/CPP/7zip/Common/ |
FilePathAutoRename.cpp | 39 name = fullProcessedPath.Left(dotPos);
45 unsigned left = 1, right = (1 << 30);
local 46 while (left != right)
48 unsigned mid = (left + right) / 2;
50 left = mid + 1;
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/ |
HasCompoundDrawablesMatcher.java | 16 public HasCompoundDrawablesMatcher(int left, int top, int right, int bottom) { 17 expectedCompoundDrawables = new ShadowTextView.CompoundDrawables(left, top, right, bottom); 42 public static Matcher<TextView> hasCompoundDrawables(int left, int top, int right, int bottom) { 43 return new HasCompoundDrawablesMatcher(left, top, right, bottom);
|
/external/skia/include/gpu/ |
GrTextContext.h | 24 virtual void drawPackedGlyph(GrGlyph::PackedID, GrFixed left, GrFixed top,
|
/external/skia/src/core/ |
SkBlitter_Sprite.cpp | 21 void SkSpriteBlitter::setup(const SkBitmap& device, int left, int top, 24 fLeft = left; 55 int left, int top, 60 a bit of a hack, since we "could" pass in the fractional left/top for the bitmap, 84 blitter->setup(device, left, top, paint);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_intra_prediction.h | 56 u8 *above, u8 *left, u32 constrainedIntraPred); 58 u8 *above, u8 *left, u32 constrainedIntraPred); 61 u8 *above, u8 *left, u32 predMode, u32 constrainedIntraPred); 63 void h264bsdGetNeighbourPels(image_t *image, u8 *above, u8 *left, u32 mbNum);
|
/frameworks/base/core/java/android/hardware/camera2/impl/ |
MetadataMarshalRect.java | 31 buffer.putInt(value.left); 42 int left = buffer.getInt(); local 47 int right = left + width; 50 return new Rect(left, top, right, bottom);
|
/frameworks/base/core/java/android/text/style/ |
LineBackgroundSpan.java | 26 int left, int right,
|
/frameworks/base/libs/hwui/ |
Snapshot.h | 86 bool clip(float left, float top, float right, float bottom, 105 void setClip(float left, float top, float right, float bottom); 116 void resetClip(float left, float top, float right, float bottom); 237 bool clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op);
|