/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
Handshake.java | 33 public static final byte HELLO_REQUEST = 0; 39 public static final byte CLIENT_HELLO = 1; 45 public static final byte SERVER_HELLO = 2; 51 public static final byte CERTIFICATE = 11; 57 public static final byte SERVER_KEY_EXCHANGE = 12; 63 public static final byte CERTIFICATE_REQUEST = 13; 69 public static final byte SERVER_HELLO_DONE = 14; 75 public static final byte CERTIFICATE_VERIFY = 15; 81 public static final byte CLIENT_KEY_EXCHANGE = 16; 87 public static final byte FINISHED = 20 [all...] |
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
Pyramid.h | 40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0); 41 static PyramidShort *allocateImage(real width, real height, real border); 42 static void createPyramid(ImageType image, PyramidShort *pyramid, int last = 3 ); 43 static void freeImage(PyramidShort *image); 45 static unsigned int calcStorage(real width, real height, real border2, int levels, int *lines); 47 static void BorderSpread(PyramidShort *pyr, int left, int right, int top, int bot); 48 static void BorderExpandOdd(PyramidShort *in, PyramidShort *out, PyramidShort *scr, int mode); 49 static int BorderExpand(PyramidShort *pyr, int nlev, int mode); 50 static int BorderReduce(PyramidShort *pyr, int nlev); 51 static void BorderReduceOdd(PyramidShort *in, PyramidShort *out, PyramidShort *scr) [all...] |
/packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic/ |
Pyramid.h | 40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0); 41 static PyramidShort *allocateImage(real width, real height, real border); 42 static void createPyramid(ImageType image, PyramidShort *pyramid, int last = 3 ); 43 static void freeImage(PyramidShort *image); 45 static unsigned int calcStorage(real width, real height, real border2, int levels, int *lines); 47 static void BorderSpread(PyramidShort *pyr, int left, int right, int top, int bot); 48 static void BorderExpandOdd(PyramidShort *in, PyramidShort *out, PyramidShort *scr, int mode); 49 static int BorderExpand(PyramidShort *pyr, int nlev, int mode); 50 static int BorderReduce(PyramidShort *pyr, int nlev); 51 static void BorderReduceOdd(PyramidShort *in, PyramidShort *out, PyramidShort *scr) [all...] |
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
Pyramid.h | 40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0); 41 static PyramidShort *allocateImage(real width, real height, real border); 42 static void createPyramid(ImageType image, PyramidShort *pyramid, int last = 3 ); 43 static void freeImage(PyramidShort *image); 45 static unsigned int calcStorage(real width, real height, real border2, int levels, int *lines); 47 static void BorderSpread(PyramidShort *pyr, int left, int right, int top, int bot); 48 static void BorderExpandOdd(PyramidShort *in, PyramidShort *out, PyramidShort *scr, int mode); 49 static int BorderExpand(PyramidShort *pyr, int nlev, int mode); 50 static int BorderReduce(PyramidShort *pyr, int nlev); 51 static void BorderReduceOdd(PyramidShort *in, PyramidShort *out, PyramidShort *scr) [all...] |
/packages/apps/Stk/src/com/android/stk/ |
StkApp.java | 28 public static final boolean DBG = true; 31 static final int MENU_ID_END_SESSION = android.view.Menu.FIRST; 32 static final int MENU_ID_BACK = android.view.Menu.FIRST + 1; 33 static final int MENU_ID_HELP = android.view.Menu.FIRST + 2; 36 static final int DISP_TEXT_CLEAR_AFTER_DELAY_TIMEOUT = (15 * 1000); 37 static final int DISP_TEXT_WAIT_FOR_USER_TIMEOUT = (60 * 1000); 40 static final int UI_TIMEOUT = (30 * 1000); 43 static final int TONE_DFEAULT_TIMEOUT = (2 * 1000); 45 public static final String TAG = "STK App"; 51 public static int calculateDurationInMilis(Duration duration) [all...] |
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/ |
io_32.h | 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); } 26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inline void out##bwl##_p(unsigned type value, int port) { out##bwl(value, port); slow_down_io(); } static inline unsigned type in##bwl##_p(int port) { unsigned type value = in##bwl(port); slow_down_io(); return value; } static inline void outs##bwl(int port, const void *addr, unsigned long count) { __asm__ __volatile__("rep; outs" #bwl : "+S"(addr), "+c"(count) : "d"(port)); } static inline void ins##bwl(int port, void *addr, unsigned long count) { __asm__ __volatile__("rep; ins (…) [all...] |
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/ |
io_32.h | 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); } 26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inline void out##bwl##_p(unsigned type value, int port) { out##bwl(value, port); slow_down_io(); } static inline unsigned type in##bwl##_p(int port) { unsigned type value = in##bwl(port); slow_down_io(); return value; } static inline void outs##bwl(int port, const void *addr, unsigned long count) { __asm__ __volatile__("rep; outs" #bwl : "+S"(addr), "+c"(count) : "d"(port)); } static inline void ins##bwl(int port, void *addr, unsigned long count) { __asm__ __volatile__("rep; ins (…) [all...] |
/prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/ |
io_32.h | 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); } 26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inline void out##bwl##_p(unsigned type value, int port) { out##bwl(value, port); slow_down_io(); } static inline unsigned type in##bwl##_p(int port) { unsigned type value = in##bwl(port); slow_down_io(); return value; } static inline void outs##bwl(int port, const void *addr, unsigned long count) { __asm__ __volatile__("rep; outs" #bwl : "+S"(addr), "+c"(count) : "d"(port)); } static inline void ins##bwl(int port, void *addr, unsigned long count) { __asm__ __volatile__("rep; ins (…) [all...] |
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/ |
io_32.h | 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); } 26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inline void out##bwl##_p(unsigned type value, int port) { out##bwl(value, port); slow_down_io(); } static inline unsigned type in##bwl##_p(int port) { unsigned type value = in##bwl(port); slow_down_io(); return value; } static inline void outs##bwl(int port, const void *addr, unsigned long count) { __asm__ __volatile__("rep; outs" #bwl : "+S"(addr), "+c"(count) : "d"(port)); } static inline void ins##bwl(int port, void *addr, unsigned long count) { __asm__ __volatile__("rep; ins (…) [all...] |
/prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/ |
io_32.h | 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); } 26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inline void out##bwl##_p(unsigned type value, int port) { out##bwl(value, port); slow_down_io(); } static inline unsigned type in##bwl##_p(int port) { unsigned type value = in##bwl(port); slow_down_io(); return value; } static inline void outs##bwl(int port, const void *addr, unsigned long count) { __asm__ __volatile__("rep; outs" #bwl : "+S"(addr), "+c"(count) : "d"(port)); } static inline void ins##bwl(int port, void *addr, unsigned long count) { __asm__ __volatile__("rep; ins (…) [all...] |
/external/clang/lib/Headers/ |
tmmintrin.h | 33 static __inline__ __m64 __attribute__((__always_inline__, __nodebug__)) 39 static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) 45 static __inline__ __m64 __attribute__((__always_inline__, __nodebug__)) 51 static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) 57 static __inline__ __m64 __attribute__((__always_inline__, __nodebug__)) 63 static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) 79 static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) 85 static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) 91 static __inline__ __m64 __attribute__((__always_inline__, __nodebug__)) 97 static __inline__ __m64 __attribute__((__always_inline__, __nodebug__) [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
Stopwatches.java | 27 public static final String START_STOPWATCH = "start_stopwatch"; 28 public static final String LAP_STOPWATCH = "lap_stopwatch"; 29 public static final String STOP_STOPWATCH = "stop_stopwatch"; 30 public static final String RESET_STOPWATCH = "reset_stopwatch"; 31 public static final String SHARE_STOPWATCH = "share_stopwatch"; 32 public static final String RESET_AND_LAUNCH_STOPWATCH = "reset_and_launch_stopwatch"; 33 public static final String MESSAGE_TIME = "message_time"; 34 public static final String SHOW_NOTIF = "show_notification"; 35 public static final String KILL_NOTIF = "kill_notification"; 36 public static final String PREF_START_TIME = "sw_start_time" [all...] |
/packages/apps/Mms/src/com/android/mms/util/ |
SmileyParser.java | 36 private static SmileyParser sInstance; 37 public static SmileyParser getInstance() { return sInstance; } 38 public static void init(Context context) { 54 static class Smileys { 55 private static final int[] sIconIds = { 79 public static int HAPPY = 0; 80 public static int SAD = 1; 81 public static int WINKING = 2; 82 public static int TONGUE_STICKING_OUT = 3; 83 public static int SURPRISED = 4 [all...] |
/prebuilts/sdk/renderscript/clang-include/ |
tmmintrin.h | 33 static __inline__ __m64 __attribute__((__always_inline__, __nodebug__)) 39 static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) 45 static __inline__ __m64 __attribute__((__always_inline__, __nodebug__)) 51 static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) 57 static __inline__ __m64 __attribute__((__always_inline__, __nodebug__)) 63 static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) 79 static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) 85 static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) 91 static __inline__ __m64 __attribute__((__always_inline__, __nodebug__)) 97 static __inline__ __m64 __attribute__((__always_inline__, __nodebug__) [all...] |
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/generator/ |
CodeGenerator.java | 18 import static com.android.notificationstudio.model.EditableItem.ACTION1_ICON; 19 import static com.android.notificationstudio.model.EditableItem.ACTION1_TEXT; 20 import static com.android.notificationstudio.model.EditableItem.ACTION2_ICON; 21 import static com.android.notificationstudio.model.EditableItem.ACTION2_TEXT; 22 import static com.android.notificationstudio.model.EditableItem.ACTION3_ICON; 23 import static com.android.notificationstudio.model.EditableItem.ACTION3_TEXT; 24 import static com.android.notificationstudio.model.EditableItem.BIG_CONTENT_TITLE; 25 import static com.android.notificationstudio.model.EditableItem.BIG_TEXT; 26 import static com.android.notificationstudio.model.EditableItem.CONTENT_INFO; 27 import static com.android.notificationstudio.model.EditableItem.CONTENT_TEXT [all...] |
/dalvik/tests/021-string2/src/junit/framework/ |
Assert.java | 9 * Protect constructor since it is a static only class 18 static public void assertTrue(String message, boolean condition) { 26 static public void assertTrue(boolean condition) { 33 static public void assertFalse(String message, boolean condition) { 40 static public void assertFalse(boolean condition) { 46 static public void fail(String message) { 52 static public void fail() { 59 static public void assertEquals(String message, Object expected, Object actual) { 70 static public void assertEquals(Object expected, Object actual) { 76 static public void assertEquals(String message, String expected, String actual) [all...] |
/dalvik/tests/082-inline-execute/src/junit/framework/ |
Assert.java | 9 * Protect constructor since it is a static only class 18 static public void assertTrue(String message, boolean condition) { 26 static public void assertTrue(boolean condition) { 33 static public void assertFalse(String message, boolean condition) { 40 static public void assertFalse(boolean condition) { 46 static public void fail(String message) { 52 static public void fail() { 59 static public void assertEquals(String message, Object expected, Object actual) { 70 static public void assertEquals(Object expected, Object actual) { 76 static public void assertEquals(String message, String expected, String actual) [all...] |
/external/junit/src/junit/framework/ |
Assert.java | 9 * Protect constructor since it is a static only class 18 static public void assertTrue(String message, boolean condition) { 26 static public void assertTrue(boolean condition) { 33 static public void assertFalse(String message, boolean condition) { 40 static public void assertFalse(boolean condition) { 46 static public void fail(String message) { 55 static public void fail() { 62 static public void assertEquals(String message, Object expected, Object actual) { 73 static public void assertEquals(Object expected, Object actual) { 79 static public void assertEquals(String message, String expected, String actual) [all...] |
/frameworks/compile/mclinker/include/mcld/LD/ |
ResolveInfo.h | 97 static ResolveInfo* Create(const key_type& pKey); 99 static void Destroy(ResolveInfo*& pInfo); 101 static ResolveInfo* Null(); 215 static const uint32_t GLOBAL_OFFSET = 0; 216 static const uint32_t GLOBAL_MASK = 1; 218 static const uint32_t DYN_OFFSET = 1; 219 static const uint32_t DYN_MASK = 1 << DYN_OFFSET; 221 static const uint32_t DESC_OFFSET = 2; 222 static const uint32_t DESC_MASK = 0x3 << DESC_OFFSET; 224 static const uint32_t LOCAL_OFFSET = 4 [all...] |
/cts/tests/tests/drm/src/android/drm/cts/ |
DrmInfoTest.java | 28 private static final String TAG = "CtsDrmInfoTest"; 29 private static final byte[] DEFAULT_DATA = new byte[1]; 30 private static final String DEFAULT_MIME = "video/"; 31 private static final int DEFAULT_TYPE = 34 public static void testInvalidInfoTypes() throws Exception { 40 public static void testValidInfoTypes() throws Exception { 48 public static void testGetInfoType() throws Exception { 56 public static void testInvalidMimeTypes() throws Exception { 61 public static void testGetMimeType() throws Exception { 67 public static void testInvalidData() throws Exception [all...] |
/development/samples/NotePad/src/com/example/android/notepad/ |
NotePad.java | 29 public static final String AUTHORITY = "com.google.provider.NotePad"; 38 public static final class Notes implements BaseColumns { 46 public static final String TABLE_NAME = "notes"; 55 private static final String SCHEME = "content://"; 64 private static final String PATH_NOTES = "/notes"; 69 private static final String PATH_NOTE_ID = "/notes/"; 74 public static final int NOTE_ID_PATH_POSITION = 1; 79 private static final String PATH_LIVE_FOLDER = "/live_folders/notes"; 84 public static final Uri CONTENT_URI = Uri.parse(SCHEME + AUTHORITY + PATH_NOTES); 90 public static final Uri CONTENT_ID_URI_BAS [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
StringExtensions.cs | 38 public static class StringExtensions 42 public static char charAt( string str, int index ) 48 public static bool endsWith( string str, string value ) 54 public static int indexOf( string str, char value ) 60 public static int indexOf( string str, char value, int startIndex ) 66 public static int indexOf( string str, string value ) 72 public static int indexOf( string str, string value, int startIndex ) 78 public static int lastIndexOf( string str, char value ) 84 public static int lastIndexOf( string str, string value ) 90 public static int length( string str [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
StringExtensions.cs | 39 public static class StringExtensions 43 public static char charAt( this string str, int index ) 49 public static bool endsWith( this string str, string value ) 55 public static int indexOf( this string str, char value ) 61 public static int indexOf( this string str, char value, int startIndex ) 67 public static int indexOf( this string str, string value ) 73 public static int indexOf( this string str, string value, int startIndex ) 79 public static int lastIndexOf( this string str, char value ) 85 public static int lastIndexOf( this string str, string value ) 91 public static int length( this string str [all...] |
/external/chromium/chrome/browser/ |
plugin_carbon_interpose_mac.cc | 16 static bool IsModalWindow(WindowRef window) { 23 static bool IsContainingWindowActive(const OpaquePluginRef delegate) { 27 static CGRect CGRectForWindow(WindowRef window) { 43 static void OnPluginWindowClosed(const WindowInfo& window_info) { 48 static void OnPluginWindowShown(WindowRef window) { 54 static void OnPluginWindowSelected(WindowRef window) { 62 static Boolean ChromePluginIsWindowActive(WindowRef window) { 70 static Boolean ChromePluginIsWindowHilited(WindowRef window) { 78 static void ChromePluginSelectWindow(WindowRef window) { 84 static void ChromePluginShowWindow(WindowRef window) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/system/ |
JmeSystem.java | 45 private static JmeSystemDelegate systemDelegate;
47 public static void setSystemDelegate(JmeSystemDelegate systemDelegate) {
51 public static synchronized File getStorageFolder() {
56 public static String getFullName() {
61 public static InputStream getResourceAsStream(String name) {
66 public static URL getResource(String name) {
71 public static boolean trackDirectMemory() {
76 public static void setLowPermissions(boolean lowPerm) {
81 public static boolean isLowPermissions() {
86 public static void setSoftTextDialogInput(SoftTextDialogInput input) { [all...] |