/external/clang/test/SemaCXX/ |
attr-weakref.cpp | 5 static int a1() __attribute__((weakref ("foo"))); 6 static int a2() __attribute__((weakref, alias ("foo"))); 8 static int a3 __attribute__((weakref ("foo"))); 9 static int a4 __attribute__((weakref, alias ("foo"))); 12 static int a5 __attribute__((alias ("foo"), weakref)); 15 static int a6 __attribute__((weakref)); //expected-error {{weakref declaration of 'a6' must also have an alias attribute}} 19 static int a __attribute__((weakref ("v2"))); // expected-error {{declaration of 'a' must be in a global context}} 24 static int a __attribute__((weakref ("v2"))); // expected-error {{declaration of 'a' must be in a global context}} 25 static int b() __attribute__((weakref ("f3"))); // expected-error {{declaration of 'b' must be in a global context}} 33 static int a10() [all...] |
/external/clang/test/SemaObjC/ |
attr-objc-gc.m | 2 static id __attribute((objc_gc(weak))) a; 3 static id __attribute((objc_gc(strong))) b; 5 static id __attribute((objc_gc())) c; // expected-error{{'objc_gc' attribute requires parameter 1 to be a string}} 6 static id __attribute((objc_gc(123))) d; // expected-error{{'objc_gc' attribute requires parameter 1 to be a string}} 7 static id __attribute((objc_gc(foo, 456))) e; // expected-error{{attribute takes one argument}} 8 static id __attribute((objc_gc(hello))) f; // expected-warning{{'objc_gc' attribute argument not supported: 'hello'}} 10 static int __attribute__((objc_gc(weak))) g; // expected-warning {{'objc_gc' only applies to pointer types; type here is 'int'}} 12 static __weak int h; // expected-warning {{'__weak' only applies to pointer types; type here is 'int'}} 16 static WEAK int h; // expected-warning {{'objc_gc' only applies to pointer types; type here is 'int'}} 18 /* expected-warning {{'__weak' only applies to pointer types; type here is 'int'}}*/ static __we [all...] |
/external/linux-tools-perf/util/ |
usage.c | 8 static void report(const char *prefix, const char *err, va_list params) 15 static NORETURN void usage_builtin(const char *err) 21 static NORETURN void die_builtin(const char *err, va_list params) 27 static void error_builtin(const char *err, va_list params) 32 static void warn_builtin(const char *warn, va_list params) 38 * (ugh), so keep things static. */ 39 static void (*usage_routine)(const char *err) NORETURN = usage_builtin; 40 static void (*die_routine)(const char *err, va_list params) NORETURN = die_builtin; 41 static void (*error_routine)(const char *err, va_list params) = error_builtin; 42 static void (*warn_routine)(const char *err, va_list params) = warn_builtin [all...] |
/external/llvm/include/llvm/ADT/ |
DenseMapInfo.h | 24 //static inline T getEmptyKey(); 25 //static inline T getTombstoneKey(); 26 //static unsigned getHashValue(const T &Val); 27 //static bool isEqual(const T &LHS, const T &RHS); 33 static inline T* getEmptyKey() { 38 static inline T* getTombstoneKey() { 43 static unsigned getHashValue(const T *PtrVal) { 47 static bool isEqual(const T *LHS, const T *RHS) { return LHS == RHS; } 52 static inline char getEmptyKey() { return ~0; } 53 static inline char getTombstoneKey() { return ~0 - 1; [all...] |
/external/smack/src/org/xbill/DNS/ |
Credibility.java | 21 public static final int HINT = 0; 24 public static final int ADDITIONAL = 1; 27 public static final int GLUE = 2; 30 public static final int NONAUTH_AUTHORITY = 3; 33 public static final int NONAUTH_ANSWER = 3; 36 public static final int AUTH_AUTHORITY = 4; 39 public static final int AUTH_ANSWER = 4; 42 public static final int ZONE = 5; 45 public static final int NORMAL = 3; 48 public static final int ANY = 1 [all...] |
DClass.java | 15 public static final int IN = 1; 18 public static final int CH = 3; 21 public static final int CHAOS = 3; 24 public static final int HS = 4; 27 public static final int HESIOD = 4; 30 public static final int NONE = 254; 33 public static final int ANY = 255; 35 private static class DClassMnemonic extends Mnemonic { 48 private static Mnemonic classes = new DClassMnemonic(); 50 static { [all...] |
Flags.java | 13 private static Mnemonic flags = new Mnemonic("DNS Header Flag", 17 public static final byte QR = 0; 20 public static final byte AA = 5; 23 public static final byte TC = 6; 26 public static final byte RD = 7; 29 public static final byte RA = 8; 32 public static final byte AD = 10; 35 public static final byte CD = 11; 38 public static final int DO = ExtendedFlags.DO; 40 static { [all...] |
/libcore/luni/src/main/java/libcore/util/ |
EmptyArray.java | 22 public static final boolean[] BOOLEAN = new boolean[0]; 23 public static final byte[] BYTE = new byte[0]; 24 public static final char[] CHAR = new char[0]; 25 public static final double[] DOUBLE = new double[0]; 26 public static final int[] INT = new int[0]; 28 public static final Class<?>[] CLASS = new Class[0]; 29 public static final Object[] OBJECT = new Object[0]; 30 public static final String[] STRING = new String[0]; 31 public static final Throwable[] THROWABLE = new Throwable[0]; 32 public static final StackTraceElement[] STACK_TRACE_ELEMENT = new StackTraceElement[0] [all...] |
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
PhoneQuery.java | 25 public static final String[] _PROJECTION = new String[] { 36 public static final int PERSON_ID = 0; 37 public static final int NAME = 1; 38 public static final int PHONE_TYPE = 2; 39 public static final int LABEL = 3; 40 public static final int MATCHED_NUMBER = 4; 41 public static final int NORMALIZED_NUMBER = 5; 42 public static final int PHOTO_ID = 6; 43 public static final int LOOKUP_KEY = 7; 44 public static final int PHOTO_URI = 8 [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/ |
JpegHeader.java | 20 public static final short SOI = (short) 0xFFD8; 21 public static final short APP1 = (short) 0xFFE1; 22 public static final short APP0 = (short) 0xFFE0; 23 public static final short EOI = (short) 0xFFD9; 29 public static final short SOF0 = (short) 0xFFC0; 30 public static final short SOF15 = (short) 0xFFCF; 31 public static final short DHT = (short) 0xFFC4; 32 public static final short JPG = (short) 0xFFC8; 33 public static final short DAC = (short) 0xFFCC; 35 public static final boolean isSofMarker(short marker) [all...] |
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
FBConfig.h | 32 static InitConfigStatus initConfigList(FrameBuffer *fb); 33 static const FBConfig *get(int p_config); 34 static int getNumConfigs(); 35 static int getNumAttribs() { return s_numConfigAttribs; } 36 static void packConfigsInfo(GLuint *buffer); 37 static int chooseConfig(FrameBuffer *fb, EGLint * attribs, uint32_t * configs, uint32_t configs_size); 50 static FBConfig **s_fbConfigs; 51 static int s_numConfigs; 52 static const int s_numConfigAttribs; 53 static const GLuint s_configAttribs[] [all...] |
/system/vold/ |
Process.h | 22 static void killProcessesWithOpenFiles(const char *path, int action); 23 static int getPid(const char *s); 24 static int checkSymLink(int pid, const char *path, const char *name); 25 static int checkFileMaps(int pid, const char *path); 26 static int checkFileMaps(int pid, const char *path, char *openFilename, size_t max); 27 static int checkFileDescriptorSymLinks(int pid, const char *mountPoint); 28 static int checkFileDescriptorSymLinks(int pid, const char *mountPoint, char *openFilename, size_t max); 29 static void getProcessName(int pid, char *buffer, size_t max); 31 static int readSymLink(const char *path, char *link, size_t max); 32 static int pathMatchesMountPoint(const char *path, const char *mountPoint) [all...] |
/dalvik/dx/src/com/android/dx/dex/ |
SizeOf.java | 22 public static final int UBYTE = 1; 23 public static final int USHORT = 2; 24 public static final int UINT = 4; 26 public static final int SIGNATURE = UBYTE * 20; 53 public static final int HEADER_ITEM = (8 * UBYTE) + UINT + SIGNATURE + (20 * UINT); // 0x70 58 public static final int STRING_ID_ITEM = UINT; 63 public static final int TYPE_ID_ITEM = UINT; 68 public static final int TYPE_ITEM = USHORT; 75 public static final int PROTO_ID_ITEM = UINT + UINT + UINT; 82 public static final int MEMBER_ID_ITEM = USHORT + USHORT + UINT [all...] |
/external/chromium/chrome/browser/policy/ |
device_management_backend_impl.h | 27 static std::string GetAgentString(); 28 static std::string GetPlatformString(); 31 static const char kParamRequest[]; 32 static const char kParamDeviceType[]; 33 static const char kParamAppType[]; 34 static const char kParamDeviceID[]; 35 static const char kParamAgent[]; 36 static const char kParamPlatform[]; 39 static const char kValueRequestRegister[]; 40 static const char kValueRequestUnregister[] [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/particles/ |
ParticlesHelper.java | 21 private static final Logger LOGGER = Logger.getLogger(ParticlesHelper.class.getName());
24 public static final int PART_EMITTER = 0;
25 public static final int PART_REACTOR = 1;
26 public static final int PART_HAIR = 2;
27 public static final int PART_FLUID = 3;
30 public static final int PART_REACT_STA_END =1;
31 public static final int PART_REACT_MULTIPLE =2;
32 public static final int PART_LOOP =4;
33 //public static final int PART_LOOP_INSTANT =8;
34 public static final int PART_HAIR_GEOMETRY =16; [all...] |
/external/kernel-headers/original/linux/ |
kdev_t.h | 21 static inline int old_valid_dev(dev_t dev) 26 static inline u16 old_encode_dev(dev_t dev) 31 static inline dev_t old_decode_dev(u16 val) 36 static inline int new_valid_dev(dev_t dev) 41 static inline u32 new_encode_dev(dev_t dev) 48 static inline dev_t new_decode_dev(u32 dev) 55 static inline int huge_valid_dev(dev_t dev) 60 static inline u64 huge_encode_dev(dev_t dev) 65 static inline dev_t huge_decode_dev(u64 dev) 70 static inline int sysv_valid_dev(dev_t dev [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
sme.h | 43 static inline void sme_authenticate(struct wpa_supplicant *wpa_s, 49 static inline void sme_event_auth(struct wpa_supplicant *wpa_s, 54 static inline int sme_update_ft_ies(struct wpa_supplicant *wpa_s, const u8 *md, 61 static inline void sme_event_assoc_reject(struct wpa_supplicant *wpa_s, 66 static inline void sme_event_auth_timed_out(struct wpa_supplicant *wpa_s, 71 static inline void sme_event_assoc_timed_out(struct wpa_supplicant *wpa_s, 76 static inline void sme_event_disassoc(struct wpa_supplicant *wpa_s, 81 static inline void sme_event_unprot_disconnect(struct wpa_supplicant *wpa_s, 87 static inline void sme_state_changed(struct wpa_supplicant *wpa_s) 91 static inline voi [all...] |
/frameworks/support/v4/jellybean/android/support/v4/view/accessibility/ |
AccessibilityNodeInfoCompatJellyBean.java | 28 public static void addChild(Object info, View child, int virtualDescendantId) { 32 public static void setSource(Object info, View root, int virtualDescendantId) { 36 public static boolean isVisibleToUser(Object info) { 40 public static void setVisibleToUser(Object info, boolean visibleToUser) { 44 public static boolean performAction(Object info, int action, Bundle arguments) { 48 public static void setMovementGranularities(Object info, int granularities) { 52 public static int getMovementGranularities(Object info) { 56 public static Object obtain(View root, int virtualDescendantId) { 60 public static Object findFocus(Object info, int focus) { 64 public static Object focusSearch(Object info, int direction) [all...] |
/packages/apps/Browser/src/com/android/browser/ |
BookmarksLoader.java | 25 public static final String ARG_ACCOUNT_TYPE = "acct_type"; 26 public static final String ARG_ACCOUNT_NAME = "acct_name"; 28 public static final int COLUMN_INDEX_ID = 0; 29 public static final int COLUMN_INDEX_URL = 1; 30 public static final int COLUMN_INDEX_TITLE = 2; 31 public static final int COLUMN_INDEX_FAVICON = 3; 32 public static final int COLUMN_INDEX_THUMBNAIL = 4; 33 public static final int COLUMN_INDEX_TOUCH_ICON = 5; 34 public static final int COLUMN_INDEX_IS_FOLDER = 6; 35 public static final int COLUMN_INDEX_PARENT = 8 [all...] |
/frameworks/native/opengl/libs/GLES_trace/src/ |
gltrace.pb.h | 664 static const GLMessage_DataType& default_instance(); 694 static const Type VOID = GLMessage_DataType_Type_VOID; 695 static const Type CHAR = GLMessage_DataType_Type_CHAR; 696 static const Type BYTE = GLMessage_DataType_Type_BYTE; 697 static const Type INT = GLMessage_DataType_Type_INT; 698 static const Type FLOAT = GLMessage_DataType_Type_FLOAT; 699 static const Type BOOL = GLMessage_DataType_Type_BOOL; 700 static const Type ENUM = GLMessage_DataType_Type_ENUM; 701 static const Type INT64 = GLMessage_DataType_Type_INT64; 702 static inline bool Type_IsValid(int value) [all...] |
/external/proguard/src/proguard/gui/ |
boilerplate.pro | 4 public static void main(java.lang.String[]); 25 # Also keep - Enumerations. Keep the special static methods that are required in 28 public static **[] values(); 29 public static ** valueOf(java.lang.String); 35 static final long serialVersionUID; 36 static final java.io.ObjectStreamField[] serialPersistentFields; 65 public static javax.swing.plaf.ComponentUI createUI(javax.swing.JComponent); 96 public static long currentTimeMillis(); 97 static java.lang.Class getCallerClass(); 98 public static int identityHashCode(java.lang.Object) [all...] |
/frameworks/base/core/java/android/nfc/ |
ErrorCodes.java | 28 public static boolean isError(int code) { 36 public static String asString(int code) { 65 public static final int SUCCESS = 0; 67 public static final int ERROR_IO = -1; 69 public static final int ERROR_CANCELLED = -2; 71 public static final int ERROR_TIMEOUT = -3; 73 public static final int ERROR_BUSY = -4; 75 public static final int ERROR_CONNECT = -5; 77 public static final int ERROR_DISCONNECT = -5; 79 public static final int ERROR_READ = -6 [all...] |
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/ |
Ease.java | 22 private static final float DOMAIN = 1.0f; 23 private static final float DURATION = 1.0f; 24 private static final float START = 0.0f; 26 static class Linear { 27 public static final TimeInterpolator easeNone = new TimeInterpolator() { 34 static class Cubic { 35 public static final TimeInterpolator easeIn = new TimeInterpolator() { 40 public static final TimeInterpolator easeOut = new TimeInterpolator() { 45 public static final TimeInterpolator easeInOut = new TimeInterpolator() { 54 static class Quad [all...] |
/libcore/luni/src/main/native/ |
java_lang_StrictMath.cpp | 25 static jdouble StrictMath_sin(JNIEnv*, jclass, jdouble a) { 29 static jdouble StrictMath_cos(JNIEnv*, jclass, jdouble a) { 33 static jdouble StrictMath_tan(JNIEnv*, jclass, jdouble a) { 37 static jdouble StrictMath_asin(JNIEnv*, jclass, jdouble a) { 41 static jdouble StrictMath_acos(JNIEnv*, jclass, jdouble a) { 45 static jdouble StrictMath_atan(JNIEnv*, jclass, jdouble a) { 49 static jdouble StrictMath_exp(JNIEnv*, jclass, jdouble a) { 53 static jdouble StrictMath_log(JNIEnv*, jclass, jdouble a) { 57 static jdouble StrictMath_sqrt(JNIEnv*, jclass, jdouble a) { 61 static jdouble StrictMath_IEEEremainder(JNIEnv*, jclass, jdouble a, jdouble b) [all...] |
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
ImageUtils.h | 45 static const int IMAGE_TYPE_NUM_CHANNELS = 3; 50 static const int IMAGE_TYPE_NOIMAGE = 0; 62 static void rgb2yvu(ImageType out, ImageType in, int width, int height); 64 static void rgba2yvu(ImageType out, ImageType in, int width, int height); 76 static void yvu2rgb(ImageType out, ImageType in, int width, int height); 77 static void yvu2bgr(ImageType out, ImageType in, int width, int height); 91 static ImageType rgb2gray(ImageType in, int width, int height); 92 static ImageType rgb2gray(ImageType out, ImageType in, int width, int height); 97 static ImageType readBinaryPPM(const char *filename, int &width, int &height); 102 static void writeBinaryPPM(ImageType image, const char *filename, int width, int height, int numChannels (…) [all...] |