/frameworks/support/design/src/android/support/design/widget/ |
CollapsingToolbarLayout.java | [all...] |
/frameworks/base/core/java/android/widget/ |
LinearLayout.java | 807 final int margin = lp.leftMargin + lp.rightMargin; local 808 final int measuredWidth = child.getMeasuredWidth() + margin; 819 matchWidthLocally ? margin : measuredWidth); 822 matchWidthLocally ? margin : measuredWidth); 918 final int margin = lp.leftMargin + lp.rightMargin; local 1152 final int margin = lp.topMargin + lp.bottomMargin; local 1314 final int margin = lp.topMargin + lp .bottomMargin; local [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/ |
TmxMapLoader.java | 302 * <li><em>margin</em>, (int, defaults to 0) the tileset margin</li> 320 int margin = element.getIntAttribute("margin", 0); local 338 margin = element.getIntAttribute("margin", 0); 381 props.put("margin", margin); 389 for (int y = margin; y <= stopHeight; y += tileheight + spacing) { 390 for (int x = margin; x <= stopWidth; x += tilewidth + spacing) [all...] |
TideMapLoader.java | 148 String margin = alignment.getAttribute("Margin");
local 159 String[] marginParts = margin.split(" x ");
163 String[] spacingParts = margin.split(" x ");
|
/external/autotest/server/cros/network/ |
netperf_runner.py | 229 margin = '' 231 margin = '+-%0.2f' % dev 233 ret[prefix + measurement + suffix] = '%0.2f%s' % (value, margin)
|
/external/opencv3/modules/core/src/ |
kmeans.cpp | 54 float margin = 1.f/dims; local 56 center[j] = ((float)rng*(1.f+margin*2.f)-margin)*(box[j][1] - box[j][0]) + box[j][0];
|
/external/pdfium/xfa/src/fxfa/src/app/ |
xfa_ffcheckbutton.cpp | 165 CXFA_Margin margin = borderUI.GetMargin();
local 166 if (margin.IsExistInXML()) {
167 XFA_RectWidthoutMargin(m_rtUI, margin);
|
/external/skia/src/views/ |
SkWidgets.cpp | 386 void SkStaticTextView::getMargin(SkPoint* margin) const 388 if (margin) 389 *margin = fMargin; 483 if (dom.findScalars(node, "margin", s, 2)) 486 assert_no_attr(dom, node, "margin");
|
/external/selinux/policycoreutils/gui/ |
html_util.py | 50 def new_margin(self, margin, level):
|
/external/skia/include/views/animated/ |
SkWidgetViews.h | 175 void getMargin(SkPoint* margin) const;
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/ |
btDbvt.cpp | 529 bool btDbvt::update(btDbvtNode* leaf,btDbvtVolume& volume,const btVector3& velocity,btScalar margin) 532 volume.Expand(btVector3(margin,margin,margin)); 548 bool btDbvt::update(btDbvtNode* leaf,btDbvtVolume& volume,btScalar margin) 551 volume.Expand(btVector3(margin,margin,margin)); [all...] |
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/ |
btSparseSDF.h | 161 btScalar margin) 238 return(Lerp(d0,d1,iz.f)-margin);
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/ |
Softbody.java | 153 public static btDbvtAabbMm VolumeOf(btSoftBody.Face f, float margin) { 154 return new btDbvtAabbMm(SoftbodyJNI.VolumeOf__SWIG_0(btSoftBody.Face.getCPtr(f), f, margin), true);
|
btSparseSdf3.java | 321 public float Evaluate(Vector3 x, btCollisionShape shape, Vector3 normal, float margin) { 322 return SoftbodyJNI.btSparseSdf3_Evaluate(swigCPtr, this, x, btCollisionShape.getCPtr(shape), shape, normal, margin);
|
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/ |
NotificationStudioActivity.java | 88 final int margin = ((ViewGroup.MarginLayoutParams) preview.getLayoutParams()).bottomMargin; local 95 final int y = bottom + margin;
|
/system/media/camera/docs/ |
html.mako | 71 .entry ul { margin: 0 0 0 0; list-style-position: inside; padding-left: 0.5em; } 72 .entry ul li { padding: 0 0 0 0; margin: 0 0 0 0;} 80 text-align: center; font-size: 1.1em; margin-left: 0em; margin-right: 0em; }
|
/tools/test/connectivity/acts/tests/google/wifi/ |
WifiScannerMultiScanTest.py | 68 margin = expected_interval * 0.20 # 20% of the expected_interval 69 assert delta < margin, ("The difference in time between scan %s and "
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/ |
ImageViewer.java | 87 private static final int MARGIN = 5; 390 int margin = getZoomedPixelSize(MARGIN); local 395 mPadding.x = margin; 401 mPadding.y = margin; 420 int margin = getZoomedPixelSize(MARGIN) * 2; local 426 int max = horizontalScroll + verticalBarSize + margin; 446 int max = verticalScroll + horizontalBarSize + margin;
|
/external/speex/libspeex/ |
nb_celp.c | 767 int margin; local 768 margin = SUBMODE(lbr_pitch); 769 if (margin) 771 if (ol_pitch < st->min_pitch+margin-1) 772 ol_pitch=st->min_pitch+margin-1; 773 if (ol_pitch > st->max_pitch-margin) 774 ol_pitch=st->max_pitch-margin; 775 pit_min = ol_pitch-margin+1; 776 pit_max = ol_pitch+margin; 1327 int margin; local [all...] |
/packages/apps/Settings/src/com/android/settings/widget/ |
MatchParentShrinkingLinearLayout.java | 754 final int margin = lp.leftMargin + lp.rightMargin; local 755 final int measuredWidth = child.getMeasuredWidth() + margin; 766 matchWidthLocally ? margin : measuredWidth); 769 matchWidthLocally ? margin : measuredWidth); 891 final int margin = lp.leftMargin + lp.rightMargin; local [all...] |
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/ |
btGImpactCollisionAlgorithm.cpp | 750 btScalar margin = shape0->getMargin() + planeshape->getMargin(); local 759 btScalar distance = vertex.dot(plane) - plane[3] - margin; 794 btScalar margin; member in class:btGImpactTriangleCallback 799 tri1.setMargin(margin); 854 tricallback.margin = shape1->getMargin();
|
/external/opencv/cv/src/ |
cvsurf.cpp | 193 int margin = 5*scaleCache[k+1]/scale; local 194 for( i = margin; i < hessian_rows-margin; i++ ) 198 for( j = margin; j < hessian_cols-margin; j++ )
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
inspect.py | 380 margin = sys.maxint 385 margin = min(margin, indent) 389 if margin < sys.maxint: 390 for i in range(1, len(lines)): lines[i] = lines[i][margin:] [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
inspect.py | 380 margin = sys.maxint 385 margin = min(margin, indent) 389 if margin < sys.maxint: 390 for i in range(1, len(lines)): lines[i] = lines[i][margin:] [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
inspect.py | 380 margin = sys.maxint 385 margin = min(margin, indent) 389 if margin < sys.maxint: 390 for i in range(1, len(lines)): lines[i] = lines[i][margin:] [all...] |