HomeSort by relevance Sort by last modified time
    Searched refs:category (Results 1 - 25 of 1545) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/analytics/
MetricsLoggerWrapper.java 39 * @param category Metrics category to be logged.
42 public void logAction(Context context, int category, String value) {
43 logd("MetricsLoggerWrapper, category:" + category + ", value: " + value);
44 if (category != VIEW_UNKNOWN) {
45 MetricsLogger.action(context, category, value);
53 * @param category Metrics category to be logged.
56 public void logAction(Context context, int category, int value)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
SwipableView.java 17 package com.android.gallery3d.filtershow.category;
  /cts/tests/tests/opengl/src/android/opengl/cts/
GL2JniLibOne.java 24 public static native void init(int category, int subcategory, int width, int height);
26 public static native float[] draw(int category, int subcategory, float[] color);
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
setlocale1.c 55 setlocale(int category, const char *locale)
60 return __setlocale(category, locale);
setlocale32.c 40 __setlocale_mb_len_max_32(int category, const char *locale)
45 return __setlocale(category, locale);
setlocale.c 94 /** Category names for getenv(). **/
105 /** Current locales for each category. **/
131 __setlocale(int category, const char *locale)
141 if (category < 0 || category >= _LC_LAST)
145 return (category ?
146 current_categories[category] : currentlocale());
159 if (category == LC_ALL) {
167 env = __get_locale_env(category);
168 (void)strncpyX(new_categories[category], env,
    [all...]
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_log.h 59 * By default the application category is enabled at the INFO level,
60 * the assert category is enabled at the WARN level, test is enabled
120 * \brief Set the priority of a particular log category
122 extern DECLSPEC void SDLCALL SDL_LogSetPriority(int category,
126 * \brief Get the priority of a particular log category
128 extern DECLSPEC SDL_LogPriority SDLCALL SDL_LogGetPriority(int category);
145 extern DECLSPEC void SDLCALL SDL_LogVerbose(int category, const char *fmt, ...);
150 extern DECLSPEC void SDLCALL SDL_LogDebug(int category, const char *fmt, ...);
155 extern DECLSPEC void SDLCALL SDL_LogInfo(int category, const char *fmt, ...);
160 extern DECLSPEC void SDLCALL SDL_LogWarn(int category, const char *fmt, ...)
    [all...]
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_log.h 59 * By default the application category is enabled at the INFO level,
60 * the assert category is enabled at the WARN level, test is enabled
120 * \brief Set the priority of a particular log category
122 extern DECLSPEC void SDLCALL SDL_LogSetPriority(int category,
126 * \brief Get the priority of a particular log category
128 extern DECLSPEC SDL_LogPriority SDLCALL SDL_LogGetPriority(int category);
145 extern DECLSPEC void SDLCALL SDL_LogVerbose(int category, const char *fmt, ...);
150 extern DECLSPEC void SDLCALL SDL_LogDebug(int category, const char *fmt, ...);
155 extern DECLSPEC void SDLCALL SDL_LogInfo(int category, const char *fmt, ...);
160 extern DECLSPEC void SDLCALL SDL_LogWarn(int category, const char *fmt, ...)
    [all...]
  /prebuilts/misc/windows/sdl2/include/
SDL_log.h 59 * By default the application category is enabled at the INFO level,
60 * the assert category is enabled at the WARN level, test is enabled
120 * \brief Set the priority of a particular log category
122 extern DECLSPEC void SDLCALL SDL_LogSetPriority(int category,
126 * \brief Get the priority of a particular log category
128 extern DECLSPEC SDL_LogPriority SDLCALL SDL_LogGetPriority(int category);
145 extern DECLSPEC void SDLCALL SDL_LogVerbose(int category, const char *fmt, ...);
150 extern DECLSPEC void SDLCALL SDL_LogDebug(int category, const char *fmt, ...);
155 extern DECLSPEC void SDLCALL SDL_LogInfo(int category, const char *fmt, ...);
160 extern DECLSPEC void SDLCALL SDL_LogWarn(int category, const char *fmt, ...)
    [all...]
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_log.h 59 * By default the application category is enabled at the INFO level,
60 * the assert category is enabled at the WARN level, test is enabled
120 * \brief Set the priority of a particular log category
122 extern DECLSPEC void SDLCALL SDL_LogSetPriority(int category,
126 * \brief Get the priority of a particular log category
128 extern DECLSPEC SDL_LogPriority SDLCALL SDL_LogGetPriority(int category);
145 extern DECLSPEC void SDLCALL SDL_LogVerbose(int category, const char *fmt, ...);
150 extern DECLSPEC void SDLCALL SDL_LogDebug(int category, const char *fmt, ...);
155 extern DECLSPEC void SDLCALL SDL_LogInfo(int category, const char *fmt, ...);
160 extern DECLSPEC void SDLCALL SDL_LogWarn(int category, const char *fmt, ...)
    [all...]
  /packages/apps/Settings/src/com/android/settings/core/instrumentation/
LogWriter.java 29 void visible(Context context, int source, int category);
34 void hidden(Context context, int category);
39 void action(Context context, int category, Pair<Integer, Object>... taggedData);
44 void actionWithSource(Context context, int source, int category);
49 void action(Context context, int category, int value);
54 void action(Context context, int category, boolean value);
59 void action(Context context, int category, String pkg, Pair<Integer, Object>... taggedData);
  /frameworks/base/core/java/com/android/internal/logging/
MetricsLogger.java 57 public void visible(int category) throws IllegalArgumentException {
58 if (Build.IS_DEBUGGABLE && category == VIEW_UNKNOWN) {
59 throw new IllegalArgumentException("Must define metric category");
61 EventLogTags.writeSysuiViewVisibility(category, 100);
62 saveLog(new LogMaker(category)
67 public void hidden(int category) throws IllegalArgumentException {
68 if (Build.IS_DEBUGGABLE && category == VIEW_UNKNOWN) {
69 throw new IllegalArgumentException("Must define metric category");
71 EventLogTags.writeSysuiViewVisibility(category, 0);
72 saveLog(new LogMaker(category)
    [all...]
  /external/webrtc/webrtc/base/
trace_event.h 80 // TRACE_EVENT_ASYNC_BEGIN0("category", "MyTracedClass", this);
83 // TRACE_EVENT_ASYNC_END0("category", "MyTracedClass", this);
116 // in for category, name, and arg_names. Thus, the following code will
124 // Notes: The category must always be in a long-lived char* (i.e. static const).
130 // TRACE_EVENT1("category", "name",
133 // TRACE_EVENT1("category", "name",
136 // TRACE_EVENT1("category", "name",
160 // scope, with 0, 1 or 2 associated arguments. If the category is not
162 // - category and name strings must have application lifetime (statics or
164 #define TRACE_EVENT0(category, name)
    [all...]
  /toolchain/binutils/binutils-2.25/intl/
dcgettext.c 44 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
47 DCGETTEXT (domainname, msgid, category)
50 int category;
52 return DCIGETTEXT (domainname, msgid, NULL, 0, 0, category);
dcngettext.c 44 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
47 DCNGETTEXT (domainname, msgid1, msgid2, n, category)
52 int category;
54 return DCIGETTEXT (domainname, msgid1, msgid2, 1, n, category);
  /cts/tests/tests/preference2/src/android/preference2/cts/
PreferenceParentGroupTest.java 65 PreferenceCategory category = new PreferenceCategory(mActivity); local
66 assertNull(category.getParent());
71 screen.addPreference(category);
72 assertEquals(screen, category.getParent());
74 category.addPreference(pref);
75 assertEquals(category, pref.getParent());
77 screen.removePreference(category);
78 assertNull(category.getParent());
80 category.removePreference(pref);
93 PreferenceCategory category = (PreferenceCategory) screen.findPreference("pref_category") local
122 PreferenceCategory category = new PreferenceCategory(mActivity); local
    [all...]
  /external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
default.pass.cpp 23 assert(ec.category() == std::system_category());
  /external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
category.pass.cpp 14 // const error_category& category() const;
22 assert(ec.category() == std::generic_category());
  /external/libcxx/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/
default.pass.cpp 23 assert(ec.category() == std::generic_category());
  /external/libcxx/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/
category.pass.cpp 14 // const error_category& category() const;
22 assert(ec.category() == std::generic_category());
  /packages/apps/PackageInstaller/tests/src/com/android/packageinstaller/shadows/
ShadowMetricsLogger.java 53 public static void action(Context context, int category, String pkg) {
54 sLogs.add(new Log(context, category, pkg));
59 public final int category; field in class:ShadowMetricsLogger.Log
62 public Log(Context context, int category, String pkg) {
64 this.category = category;
75 return Objects.equal(otherLog.context, context) && otherLog.category == category
82 return ((context == null) ? 0 : context.hashCode()) + category + ((pkg == null) ? 0
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/
SetupActionHelper.java 34 public static boolean onActionClick(Fragment fragment, String category, int actionId) {
35 return onActionClick(fragment, category, actionId, null);
41 public static boolean onActionClick(Fragment fragment, String category, int actionId,
44 return ((OnActionClickListener) fragment.getActivity()).onActionClick(category,
47 Log.e(TAG, "Activity can't handle the action: {category=" + category + ", actionId="
55 public static OnClickListener createOnClickListenerForAction(Fragment fragment, String category,
57 return new OnActionClickListenerForAction(fragment, category, actionId, params);
72 OnActionClickListenerForAction(Fragment fragment, String category, int actionId,
75 mCategory = category;
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
default.pass.cpp 23 assert(ec.category() == std::system_category());
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
category.pass.cpp 14 // const error_category& category() const;
22 assert(ec.category() == std::generic_category());
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/
default.pass.cpp 23 assert(ec.category() == std::generic_category());

Completed in 826 milliseconds

1 2 3 4 5 6 7 8 91011>>