| /frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/ |
| DividerItemDecoration.java | 35 * {@link #setDivider(android.graphics.drawable.Drawable)} as the divider in between each item by 36 * default, and the behavior of whether the divider is shown can be customized by subclassing 52 * Returns whether divider is allowed above this item. A divider will be shown only if both 53 * items immediately above and below it allows this divider. 58 * Returns whether divider is allowed below this item. A divider will be shown only if both 59 * items immediately above and below it allows this divider. 94 final Drawable divider = a.getDrawable( local 103 setDivider(divider); [all...] |
| /device/linaro/bootloader/arm-trusted-firmware/include/drivers/ |
| delay_timer.h | 16 * multiplier/divider. The ratio of the multiplier and the divider is
|
| /external/mesa3d/src/compiler/glsl/glcpp/tests/ |
| 147-define-macro-no-space.c.expected | 38 / divider
|
| /frameworks/base/core/java/android/view/ |
| IDockedStackListener.aidl | 20 * Listener for showing/hiding of the dock divider. Will fire when an app is shown in side by side 21 * mode and a divider should be shown. 28 * Will fire when an app is shown in side by side mode and a divider should be shown. 38 * Called when window manager decides to minimize the docked stack. The divider should make 44 * will be shown with the divider 50 * Called when window manager decides to adjust the divider for IME. Like the minimized state, 51 * the divider should make itself not interactable and shrink a bit, but in a different way.s
|
| /external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
| TensorIntDiv.h | 110 static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE uint32_t computeMultiplier(const int log_div, const T divider) { 112 return static_cast<uint32_t>((static_cast<uint64_t>(1) << (N+log_div)) / divider - (static_cast<uint64_t>(1) << N) + 1); 118 static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE uint64_t computeMultiplier(const int log_div, const T divider) { 120 return static_cast<uint64_t>((static_cast<__uint128_t>(1) << (64+log_div)) / static_cast<__uint128_t>(divider) - (static_cast<__uint128_t>(1) << 64) + 1); 123 TensorUInt128<uint64_t, uint64_t> result = TensorUInt128<uint64_t, static_val<0> >(shift, 0) / TensorUInt128<static_val<0>, uint64_t>(divider) 142 // Must have 0 < divider < 2^31. This is relaxed to 143 // 0 < divider < 2^63 when using 64-bit indices on platforms that support 145 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorIntDivisor(const T divider) { 147 eigen_assert(static_cast<typename UnsignedTraits<T>::type>(divider) < NumTraits<UnsignedType>::highest()/2); 148 eigen_assert(divider > 0) [all...] |
| /frameworks/base/tests/RenderThreadTest/res/layout/ |
| activity_main.xml | 10 android:divider="@null" />
|
| /packages/apps/TV/src/com/android/tv/ui/ |
| GuidedActionsStylistWithDivider.java | 25 /** Extended stylist class used for {@link GuidedStepFragment} with divider support. */ 27 /** ID used mark a divider. */ 49 * Creates a divider for {@link GuidedStepFragment}, targeted fragments must use {@link 50 * GuidedActionsStylistWithDivider} as its actions' stylist for divider to work.
|
| /external/nanohttpd/core/src/test/java/fi/iki/elonen/ |
| HttpPostRequestTest.java | 73 String divider = UUID.randomUUID().toString(); local 74 String header = "POST " + HttpServerTest.URI + " HTTP/1.1\nContent-Type: " + "multipart/form-data, boundary=" + divider + "\r\n"; 76 "--" + divider + "\r\n" + "Content-Disposition: form-data; name=\"" + HttpPostRequestTest.FIELD + "\"; filename=\"" + fileName + "\"\r\n" 77 + "Content-Type: image/jpeg\r\n" + "\r\n" + fileContent + "\r\n" + "--" + divider + "--\r\n"; 117 String divider = UUID.randomUUID().toString(); local 118 String header = "POST " + HttpServerTest.URI + " HTTP/1.1\nContent-Type: " + "multipart/form-data; boundary=" + divider + "\n"; 120 "--" + divider + "\r\n" + "Content-Disposition: form-data; name=\"" + HttpPostRequestTest.FIELD + "\"\r\n" + "\r\n" + HttpPostRequestTest.VALUE + "\r\n" 121 + "--" + divider + "\r\n" + "Content-Disposition: form-data; name=\"" + HttpPostRequestTest.FIELD2 + "\"\r\n" + "\r\n" + HttpPostRequestTest.VALUE2 122 + "\r\n" + "--" + divider + "--\r\n"; 136 String divider = UUID.randomUUID().toString() local 155 String divider = UUID.randomUUID().toString(); local [all...] |
| /external/eigen/unsupported/test/ |
| cxx11_tensor_intdiv.cpp | 100 Eigen::internal::TensorIntDivisor<int32_t> divider = local 103 int32_t result_op = divider.divide(num); 119 Eigen::internal::TensorIntDivisor<int64_t> divider(div); 121 int64_t result_op = divider.divide(num); 132 Eigen::internal::TensorIntDivisor<int64_t> divider(div); 134 int64_t result_op = divider.divide(num);
|
| /frameworks/base/core/res/res/layout/ |
| text_edit_suggestion_container.xml | 29 android:divider="@null"> 34 android:divider="?android:attr/dividerHorizontal"> 42 android:divider="?android:attr/dividerHorizontal"
|
| /frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/template/ |
| RecyclerMixin.java | 160 // Update divider in case layout direction has just been resolved 196 * Sets the start inset of the divider. This will use the default divider drawable set in the 199 * @param start The number of pixels to inset on the "start" side of the list divider. Typically 202 * @param end The number of pixels to inset on the "end" side of the list divider. 211 * @return The number of pixels inset on the start side of the divider. 220 * @return The number of pixels inset on the start side of the divider. 227 * @return The number of pixels inset on the end side of the divider. 254 * @return The drawable used as the divider. 261 * Sets the divider item decoration directly. This is a low level method which should be use [all...] |
| /frameworks/opt/setupwizard/library/recyclerview/test/instrumentation/src/com/android/setupwizardlib/test/ |
| DividerItemDecorationTest.java | 51 Drawable divider = new ColorDrawable(); local 52 decoration.setDivider(divider); 53 assertSame("Divider should be same as set", divider, decoration.getDivider()); 60 assertEquals("Divider height should be 123", 123, decoration.getDividerHeight()); 65 // Set up the item decoration, with 1px red divider line 67 Drawable divider = new ColorDrawable(Color.RED); local 68 decoration.setDivider(divider); 91 // last item should not have a divider below it now 108 // Set up the item decoration, with 1px green divider lin 110 Drawable divider = new ColorDrawable(Color.GREEN); local [all...] |
| GlifRecyclerLayoutTest.java | 116 assertEquals("Divider inset should be 10", 10, layout.getDividerInset()); 118 final Drawable divider = layout.getDivider(); local 119 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable); 131 assertEquals("Divider inset start should be 10", 10, layout.getDividerInsetStart()); 132 assertEquals("Divider inset end should be 15", 15, layout.getDividerInsetEnd()); 134 final Drawable divider = layout.getDivider(); local 135 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
|
| SetupWizardRecyclerLayoutTest.java | 117 assertEquals("Divider inset should be 10", 10, layout.getDividerInset()); 119 final Drawable divider = layout.getDivider(); local 120 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable); 132 assertEquals("Divider inset start should be 10", 10, layout.getDividerInsetStart()); 133 assertEquals("Divider inset end should be 15", 15, layout.getDividerInsetEnd()); 135 final Drawable divider = layout.getDivider(); local 136 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
|
| /external/sl4a/ScriptingLayerForAndroid/res/layout/ |
| api_prompt.xml | 12 android:divider="#00000000" />
|
| /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/ |
| ListMixin.java | 115 // Update divider in case layout direction has just been resolved 157 * Sets the start inset of the divider. This will use the default divider drawable set in the 160 * @param start The number of pixels to inset on the "start" side of the list divider. Typically 163 * @param end The number of pixels to inset on the "end" side of the list divider. 172 * @return The number of pixels inset on the start side of the divider. 181 * @return The number of pixels inset on the start side of the divider. 188 * @return The number of pixels inset on the end side of the divider. 219 * @return The drawable used as the divider.
|
| /frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/ |
| GlifListLayoutTest.java | 116 assertEquals("Divider inset should be 10", 10, layout.getDividerInset()); 118 final Drawable divider = layout.getDivider(); local 119 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable); 131 assertEquals("Divider inset should be 10", 10, layout.getDividerInsetStart()); 132 assertEquals("Divider inset should be 15", 15, layout.getDividerInsetEnd()); 134 final Drawable divider = layout.getDivider(); local 135 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
|
| SetupWizardListLayoutTest.java | 103 assertEquals("Divider inset should be 10", 10, layout.getDividerInset()); 105 final Drawable divider = layout.getDivider(); local 106 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable); 118 assertEquals("Divider inset start should be 10", 10, layout.getDividerInsetStart()); 119 assertEquals("Divider inset end should be 15", 15, layout.getDividerInsetEnd()); 121 final Drawable divider = layout.getDivider(); local 122 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
|
| /prebuilts/go/darwin-x86/src/runtime/ |
| os_plan9_arm.go | 7 var hardDiv bool // TODO: set if a hardware divider is available
|
| /prebuilts/go/linux-x86/src/runtime/ |
| os_plan9_arm.go | 7 var hardDiv bool // TODO: set if a hardware divider is available
|
| /prebuilts/sdk/current/support/v7/preference/res/values-v17/ |
| values-v17.xml | 6 <item name="android:divider">?android:attr/listDivider</item>
|
| /hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/ |
| and_constructor.c | 295 unsigned char divider; local 308 divider = 4; // 4 means 200Hz DMP 311 inv_set_gyro_sample_rate(1000L*(divider+1)*(fifo_divider+1)); 314 inv_set_quat_sample_rate(1000L*(divider+1)*(fifo_divider+1)); 317 inv_set_compass_sample_rate(1000L*(divider+1)*(fifo_divider+1)); 320 inv_set_accel_sample_rate(1000L*(divider+1)*(fifo_divider+1)); 329 divider = fifo_dmp_cfg.sample_divider; 346 divider = 9; 348 inv_set_gyro_sample_rate(1000L*(divider+1)); 350 inv_set_compass_sample_rate(1000L*(divider+1)) [all...] |
| /frameworks/data-binding/integration-tests/TestApp/app/src/main/res/layout/ |
| linear_layout_adapter_test.xml | 26 android:divider="@{obj.divider}"
|
| tab_widget_adapter_test.xml | 24 android:divider="@{obj.divider}"
|
| /frameworks/opt/setupwizard/library/recyclerview/test/instrumentation/src/com/android/setupwizardlib/template/ |
| RecyclerMixinTest.java | 105 final Drawable divider = mixin.getDivider(); local 106 InsetDrawable insetDrawable = (InsetDrawable) divider; 121 final Drawable divider = mixin.getDivider(); local 122 InsetDrawable insetDrawable = (InsetDrawable) divider; 139 final Drawable divider = mixin.getDivider(); local 140 InsetDrawable insetDrawable = (InsetDrawable) divider; 160 final Drawable divider = mixin.getDivider(); local 161 InsetDrawable insetDrawable = (InsetDrawable) divider;
|