HomeSort by relevance Sort by last modified time
    Searched defs:MODE (Results 1 - 7 of 7) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/app/
SearchSuggestionSampleProvider.java 22 * To create a search suggestions provider using the built-in recent queries mode,
24 * a unique authority and the mode you with to use. For more information, see
36 * These flags determine the operating mode of the suggestions provider. This value should
40 final static int MODE = DATABASE_MODE_QUERIES;
48 setupSuggestions(AUTHORITY, MODE);
  /cts/tests/src/android/content/cts/
MockSRSProvider.java 22 final static int MODE = DATABASE_MODE_QUERIES + DATABASE_MODE_2LINES;
29 setupSuggestions(AUTHORITY, MODE);
37 public void setupSuggestions(String authority, int mode) {
39 super.setupSuggestions(authority, mode);
  /frameworks/base/media/libdrm/mobile2/include/rights/
Constraint.h 33 enum MODE {NONE, MOVE, COPY}; /**< export mode type. */
162 * set export mode.
163 * @param mode the mode type of export.
165 void setExportMode(MODE mode);
168 * Get the export mode.
169 * @return the export mode.
171 MODE getExportMode() const
    [all...]
  /external/ipsec-tools/src/libipsec/
policy_parse.h 49 MODE = 265,
68 #define MODE 265
  /frameworks/base/core/tests/coretests/src/android/content/
SearchRecentSuggestionsProviderTest.java 31 final static int MODE = DATABASE_MODE_QUERIES + DATABASE_MODE_2LINES;
35 setupSuggestions(AUTHORITY, MODE);
70 TestProvider.AUTHORITY, TestProvider.MODE);
  /cts/tools/host/src/com/android/cts/
TestHost.java 53 * <li> RUN: For this mode, the TestHost will run the plan or
55 * <li> CONSOLE: For this mode, the TestHost will start the UI
59 enum MODE {
72 static MODE sMode = MODE.UNINITIALIZED;
88 if (sMode == MODE.RUN) {
93 * start the the mode of no console UI.
103 } else if (sMode == MODE.CONSOLE) {
120 * Extract mode from the options used to activating CTS.
123 * @return The mode
    [all...]
  /external/icu4c/tools/pkgdata/
pkgdata.cpp 105 static int32_t pkg_createWindowsDLL(const char mode, const char *gencFilePath, UPKGOptions *o);
112 static int32_t pkg_createWithoutAssemblyCode(UPKGOptions *o, const char *targetDir, const char mode);
115 static int32_t pkg_createWithAssemblyCode(const char *targetDir, const char mode, const char *gencFilePath);
116 static int32_t pkg_generateLibraryFile(const char *targetDir, const char mode, const char *objectFile, char *command = NULL);
125 MODE,
165 /*02*/ UOPTION_DEF( "mode", 'm', UOPT_REQUIRES_ARG),
226 "Specify the mode of building (see below; default: common)",
238 "Specify a version when packaging in DLL or static mode",
241 "Quite mode. (e.g. Do not output a readme file for static libraries)"
262 options[MODE].value = "common"
476 const char mode = o->mode[0]; local
    [all...]

Completed in 1823 milliseconds