Searched
full:static (Results
1101 -
1125 of
47082) sorted by null
<<41424344454647484950>>
/dalvik/tests/004-annotations/src/android/test/anno/ |
MissingAnnotation.java | 4 import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
/dalvik/tests/023-many-interfaces/src/ |
Main.java | 2 static public void main(String[] args) throws Exception {
|
/dalvik/tests/024-illegal-access/src/ |
PublicAccess.java | 7 public static void main() {
|
/dalvik/tests/026-access/src/ |
Main.java | 6 public static void main(String[] args) {
|
/dalvik/tests/054-uncaught/src/ |
Main.java | 7 public static void main(String[] args) { 15 private static void testThread(int which) { 26 static void catchTheUncaught(int which) { 52 private static class Helper extends Thread {
|
/dalvik/tests/068-classloader/src/ |
Base.java | 13 public static String doStuff(DoubledExtend dt) {
|
/dalvik/tests/073-mismatched-field/ |
info.txt | 2 compilation) by a static field. The VM is expected to detect the conflict
|
/dalvik/tests/095-switch-MAX_INT/src/ |
Main.java | 2 static public void main(String[] args) throws Exception {
|
/dalvik/vm/native/ |
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cpp | 25 * public static void threadNotify(boolean enable) 29 static void Dalvik_org_apache_harmony_dalvik_ddmc_DdmVmInternal_threadNotify( 40 * public static byte[] getThreadStats() 44 static void Dalvik_org_apache_harmony_dalvik_ddmc_DdmVmInternal_getThreadStats( 55 * public static int heapInfoNotify(int what) 59 static void Dalvik_org_apache_harmony_dalvik_ddmc_DdmVmInternal_heapInfoNotify( 70 * public static boolean heapSegmentNotify(int when, int what, bool native) 74 static void 88 * public static StackTraceElement[] getStackTraceById(int threadId) 93 static voi [all...] |
/development/ndk/platforms/android-18/samples/gles3jni/src/com/android/gles3jni/ |
GLES3JNILib.java | 23 static { 27 public static native void init(); 28 public static native void resize(int width, int height); 29 public static native void step();
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
TreeConstants.as | 6 public static const INVALID_NODE:CommonTree = CommonTree.createFromToken(TokenConstants.INVALID_TOKEN);
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_Jetty.java | 40 public static Server DEFAULT_SERVER = null; 42 public static int DEFAULT_PORT = 0; 44 public static Server DEFAULT_SERVLET = null; 46 public static int DEFAULT_SERVLET_PORT = 0; 48 public static Server SERVER = null; 50 public static int PORT = 0; 52 static { 66 private static class HYDefaultServlet extends HttpServlet 68 private static final long serialVersionUID = -7650071946216123835L; 84 private static class HYDefaultHandler extends AbstractHandle [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ElemDesc.java | 45 static final int EMPTY = (1 << 1); 48 private static final int FLOW = (1 << 2); 51 static final int BLOCK = (1 << 3); 54 static final int BLOCKFORM = (1 << 4); 57 static final int BLOCKFORMFIELDSET = (1 << 5); 60 private static final int CDATA = (1 << 6); 63 private static final int PCDATA = (1 << 7); 66 static final int RAW = (1 << 8); 69 private static final int INLINE = (1 << 9); 72 private static final int INLINEA = (1 << 10) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/ |
ConfigurableProvider.java | 15 static final String THREAD_LOCAL_EC_IMPLICITLY_CA = "threadLocalEcImplicitlyCa"; 20 static final String EC_IMPLICITLY_CA = "ecImplicitlyCa"; 25 static final String THREAD_LOCAL_DH_DEFAULT_PARAMS = "threadLocalDhDefaultParams"; 30 static final String DH_DEFAULT_PARAMS = "DhDefaultParams";
|
/external/chromium/base/threading/ |
thread_local_posix.cc | 15 // static 21 // static 27 // static 32 // static
|
thread_local_win.cc | 15 // static 21 // static 28 // static 33 // static
|
/external/chromium/chrome/browser/ |
power_save_blocker.h | 28 static void ApplyBlock(bool blocked); 31 static void AdjustBlockCount(int delta); 34 static void PostAdjustBlockCount(int delta); 38 static int blocker_count_;
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
v4llookup.h | 20 static bool IsV4L2Device(const std::string& device_path) { 24 static void SetV4LLookup(V4LLookup* v4l_lookup) { 28 static V4LLookup* GetV4LLookup() { 33 static V4LLookup* v4l_lookup_;
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/ |
p6.cpp | 11 static void h() const; // expected-error {{static member function cannot have 'const' qualifier}} 14 static F k; // expected-error {{static member function of type 'F' (aka 'void () const') cannot have 'const' qualifier}}
|
/external/clang/test/CXX/expr/expr.unary/expr.new/ |
p19.cpp | 9 static void* operator new(size_t) { 13 static void operator delete(void*) { 31 static void* operator new[](size_t) { 35 static void operator delete[](void*) {
|
p20.cpp | 8 static void* operator new(size_t); 9 static void operator delete(void*, size_t) { 23 static void* operator new(size_t); 24 static void operator delete(void*) { 38 static void* operator new(size_t, double, double); 39 static void* operator new(size_t, int, int); 41 static void operator delete(void*, const int, int) { 45 static void operator delete(void*, double, double); 56 static void* operator new(size_t, double, double); 59 static void operator delete(void*, T x, T) [all...] |
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/ |
p9.cpp | 7 static const bool value = 0; 12 static const bool value = 1; 19 static const unsigned value = 0; 24 static const unsigned value = 1;
|
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p17.cpp | 16 static int foo; 17 static int bar; 27 static int foo; 28 static int bar;
|
/external/clang/test/CodeGen/ |
2003-08-21-StmtExpr.c | 9 static void foo() {
|
2004-07-06-FunctionCast.c | 3 static int unused_func(void) {
|
Completed in 1025 milliseconds
<<41424344454647484950>>