/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
SwipableView.java | 17 package com.android.gallery3d.filtershow.category;
|
/frameworks/base/core/java/com/android/internal/logging/ |
MetricsLogger.java | 34 public static void visible(Context context, int category) throws IllegalArgumentException { 35 if (Build.IS_DEBUGGABLE && category == VIEW_UNKNOWN) { 36 throw new IllegalArgumentException("Must define metric category"); 38 EventLogTags.writeSysuiViewVisibility(category, 100); 41 public static void hidden(Context context, int category) throws IllegalArgumentException { 42 if (Build.IS_DEBUGGABLE && category == VIEW_UNKNOWN) { 43 throw new IllegalArgumentException("Must define metric category"); 45 EventLogTags.writeSysuiViewVisibility(category, 0); 48 public static void visibility(Context context, int category, boolean visibile) 51 visible(context, category); [all...] |
/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);
|
/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...] |
/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);
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/ |
default.pass.cpp | 23 assert(ec.category() == std::system_category());
|
int_error_category.pass.cpp | 24 assert(ec.category() == std::system_category()); 29 assert(ec.category() == std::generic_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());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/ |
default.pass.cpp | 23 assert(ec.category() == std::system_category());
|
/ndk/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());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/ |
default.pass.cpp | 23 assert(ec.category() == std::generic_category());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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/TV/common/src/com/android/tv/common/ui/setup/ |
OnActionClickListener.java | 26 * @param category action category. 29 void onActionClick(String category, int id);
|
/frameworks/base/core/java/android/nfc/cardemulation/ |
AidGroup.java | 49 final String category; field in class:AidGroup 56 * @param category The category of this group, e.g. {@link CardEmulation#CATEGORY_PAYMENT} 58 public AidGroup(List<String> aids, String category) { 70 if (isValidCategory(category)) { 71 this.category = category; 73 this.category = CardEmulation.CATEGORY_OTHER; 82 AidGroup(String category, String description) { 84 this.category = category 148 String category = null; local [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/timeline/ |
flow_event.py | 12 def __init__(self, category, event_id, name, start, args=None): 14 category, name, start, duration=0, args=args)
|
sample.py | 17 def __init__(self, parent_thread, category, name, timestamp, args=None): 19 category, name, timestamp, 0, args=args)
|
/external/e2fsprogs/intl/ |
dcgettext.c | 44 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY 47 DCGETTEXT (const char *domainname, const char *msgid, int category) 49 return DCIGETTEXT (domainname, msgid, NULL, 0, 0, category);
|
dcngettext.c | 44 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY 49 int category) 51 return DCIGETTEXT (domainname, msgid1, msgid2, 1, n, category);
|