Home
last modified time | relevance | path

Searched refs:make (Results 1 – 25 of 219) sorted by relevance

123456789

/frameworks/wilhelm/tools/hashgen/
DREADME.txt5 * GNU make
14 Type 'make'.
17 its stable location in ../../src/autogen using 'make install'.
18 Build and test the usage of the new IID on host by "make run_test"
21 Then do 'make clean' or 'make distclean' here.
/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
DSnackbarUsage.java48 Snackbar.make(mContentView, "Short snackbar message", Snackbar.LENGTH_SHORT).show(); in showShort()
52 Snackbar.make(mContentView, "Short snackbar message", Snackbar.LENGTH_SHORT) in showAction()
63 Snackbar.make(mContentView, "Long snackbar message which wraps onto another line and" in showLong()
68 Snackbar.make(mContentView, "Long snackbar message which wraps onto another line and" in showLongAction()
80 Snackbar.make(mContentView, "Long snackbar message which wraps onto another line and" in showLongLongAction()
/frameworks/wilhelm/tools/mphtogen/
DREADME.txt5 * GNU make
8 Type 'make'.
11 Then do 'make clean' here.
/frameworks/support/design/tests/src/android/support/design/widget/
DSnackbarTest.java115 Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, Snackbar.LENGTH_SHORT), in testBasicContent()
120 Snackbar.make(mCoordinatorLayout, MESSAGE_ID, Snackbar.LENGTH_LONG), in testBasicContent()
125 Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, Snackbar.LENGTH_INDEFINITE) in testBasicContent()
131 Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, Snackbar.LENGTH_SHORT) in testBasicContent()
137 Snackbar.make(mCoordinatorLayout, MESSAGE_ID, Snackbar.LENGTH_LONG) in testBasicContent()
148 final Snackbar snackbar = Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, length) in verifyDismissCallback()
286 Snackbar.make(mCoordinatorLayout, "A different message", Snackbar.LENGTH_SHORT); in testDismissViaAnotherSnackbar()
310 Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, Snackbar.LENGTH_SHORT) in testActionClickListener()
324 Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, Snackbar.LENGTH_INDEFINITE) in testSetCallback()
340 Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, Snackbar.LENGTH_INDEFINITE) in testSingleCallback()
[all …]
DCoordinatorSnackbarWithFabTest.java111 mSnackbar = Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, Snackbar.LENGTH_INDEFINITE) in testBuiltInSliding()
130 mSnackbar = Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, Snackbar.LENGTH_INDEFINITE) in testBuiltInSlidingFromHiddenFab()
151 mSnackbar = Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, Snackbar.LENGTH_INDEFINITE) in testBehaviorBasedSlidingFromLayoutAttribute()
168 mSnackbar = Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, Snackbar.LENGTH_INDEFINITE) in testBehaviorBasedSlidingFromClassAnnotation()
191 mSnackbar = Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, Snackbar.LENGTH_INDEFINITE) in testBehaviorBasedSlidingFromRuntimeApiCall()
DSnackbarTestWithFAB.java53 final Snackbar snackbar = Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, in testShortSnackbarDodgesFab()
79 final Snackbar snackbar = Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, in testIndefiniteSnackbarDodgesFab()
DSnackbarTestWithTranslucentNavBar.java54 final Snackbar snackbar = Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, in testDrawsAboveNavigationBar()
/frameworks/compile/slang/tests/P_reduce_general_result/
DScriptC_reduce_general_result.java.expect124 mOut = null; // make Java object eligible for garbage collection
130 mTempIns = null; // make Java objects eligible for garbage collection
160 mOut = null; // make Java object eligible for garbage collection
166 mTempIns = null; // make Java objects eligible for garbage collection
201 mOut = null; // make Java object eligible for garbage collection
207 mTempIns = null; // make Java objects eligible for garbage collection
242 mOut = null; // make Java object eligible for garbage collection
248 mTempIns = null; // make Java objects eligible for garbage collection
278 mOut = null; // make Java object eligible for garbage collection
284 mTempIns = null; // make Java objects eligible for garbage collection
[all …]
/frameworks/compile/libbcc/tests/
DREADME.lit2 * Ensure `llvm-rs-as` is built, either by doing a top-level `make
6 * Ensure `opt` is built from external/llvm, either by top-level `make
/frameworks/base/cmds/uiautomator/library/
Dapicheck_msg_current.txt5 To make these errors go away, you have two choices:
10 make update-uiautomator-api
/frameworks/compile/slang/tests/P_reduce_general_examples_halter/
DScriptC_reduce_general_examples_halter.java.expect55 mOut = null; // make Java object eligible for garbage collection
61 mTempIns = null; // make Java objects eligible for garbage collection
91 mOut = null; // make Java object eligible for garbage collection
97 mTempIns = null; // make Java objects eligible for garbage collection
/frameworks/base/core/java/android/text/
DAlteredCharSequence.java34 public static AlteredCharSequence make(CharSequence source, char[] sub, in make() method in AlteredCharSequence
101 return AlteredCharSequence.make(mSource.subSequence(start, end), in subSequence()
/frameworks/compile/mclinker/unittests/
Dtest3.txt38 # the environment to account for automounters. The make variable must not
39 # be called PWDCMD, otherwise the value set here is passed to make
59 make-stds.texi standards.info* configure.texi configure.info* \
63 # When you use `make setup-dirs' or `make taz' you should always redefine
144 # Make links, and run "make diststuff" or "make info" when needed.
167 # of files in the distclean rule. Zack W is planning to make
/frameworks/base/packages/SettingsLib/tests/robotests/
Dreadme.md5 $ make RunSettingsLibRoboTests -j40
/frameworks/support/design/src/android/support/design/widget/
DSnackbar.java133 public static Snackbar make(@NonNull View view, @NonNull CharSequence text, in make() method in Snackbar
169 public static Snackbar make(@NonNull View view, @StringRes int resId, @Duration int duration) { in make() method in Snackbar
170 return make(view, view.getResources().getText(resId), duration); in make()
/frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
DMainActivity.java27 static Map<String,?> make(String name) { in make() method in MainActivity
36 add(make("List Item: " + i));
/frameworks/compile/slang/tests/P_reduce_general_examples_explicit/
DScriptC_reduce_general_examples_explicit.java.expect64 mOut = null; // make Java object eligible for garbage collection
70 mTempIns = null; // make Java objects eligible for garbage collection
100 mOut = null; // make Java object eligible for garbage collection
106 mTempIns = null; // make Java objects eligible for garbage collection
136 mOut = null; // make Java object eligible for garbage collection
142 mTempIns = null; // make Java objects eligible for garbage collection
/frameworks/base/wifi/tests/
Druntests.sh15 make -j32 -C $ANDROID_BUILD_TOP -f build/core/main.mk MODULES-IN-frameworks-base-wifi-tests
/frameworks/base/tools/bit/
DAndroid.mk32 make.cpp \
/frameworks/compile/slang/tests/P_reduce_general_examples/
DScriptC_reduce_general_examples.java.expect66 mOut = null; // make Java object eligible for garbage collection
72 mTempIns = null; // make Java objects eligible for garbage collection
102 mOut = null; // make Java object eligible for garbage collection
108 mTempIns = null; // make Java objects eligible for garbage collection
138 mOut = null; // make Java object eligible for garbage collection
144 mTempIns = null; // make Java objects eligible for garbage collection
174 mOut = null; // make Java object eligible for garbage collection
180 mTempIns = null; // make Java objects eligible for garbage collection
/frameworks/compile/slang/tests/P_reduce_general_examples_backward/
DScriptC_reduce_general_examples_backward.java.expect66 mOut = null; // make Java object eligible for garbage collection
72 mTempIns = null; // make Java objects eligible for garbage collection
102 mOut = null; // make Java object eligible for garbage collection
108 mTempIns = null; // make Java objects eligible for garbage collection
138 mOut = null; // make Java object eligible for garbage collection
144 mTempIns = null; // make Java objects eligible for garbage collection
174 mOut = null; // make Java object eligible for garbage collection
180 mTempIns = null; // make Java objects eligible for garbage collection
/frameworks/base/core/tests/systemproperties/
Drun_core_systemproperties_test.sh17 make -j4 FrameworksCoreSystemPropertiesTests
/frameworks/compile/slang/tests/P_reduce_general_struct/
DScriptC_reduce_general_struct.java.expect55 mOut = null; // make Java object eligible for garbage collection
61 mTempIns = null; // make Java objects eligible for garbage collection
/frameworks/opt/net/wifi/tests/wifitests/
Druntests.sh34 make -j32 -C $ANDROID_BUILD_TOP -f build/core/main.mk MODULES-IN-frameworks-opt-net-wifi-tests
/frameworks/base/tests/Camera2Tests/SmartCamera/
DREADME.txt21 From root: make SmartCamera will build the apk for generic
30 make SmartCamera

123456789