上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页
摘要: 1 View Code 阅读全文
posted @ 2013-08-29 10:01 iDragon 阅读(527) 评论(0) 推荐(0)
摘要: http://www.ecmascript.org/docs.phphttp://coolshell.cn/articles/9749.htmlhttp://coolshell.cn/tag/javascripthttp://www.cnblogs.com/hema/archive/2010/01/27/1657587.htmlhttp://www.cnblogs.com/lhb25/category/146074.html 阅读全文
posted @ 2013-08-29 10:00 iDragon 阅读(152) 评论(0) 推荐(0)
摘要: Native Service and Android Service Native Service:In every main() method of NativeService, which is called by init process through parseing init.rc, t 阅读全文
posted @ 2013-08-28 11:11 iDragon 阅读(3974) 评论(0) 推荐(0)
摘要: Native Service and Android ServiceNative Service:In every main() method of NativeService, which is called by init process through parseing init.rc, the globale object of ProcessState will be createdby calling ProcessState::self(),and then startThreadPool and created main thread by calling IPCThreadP 阅读全文
posted @ 2013-08-27 17:20 iDragon 阅读(1296) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2013-08-27 08:03 iDragon 阅读(174) 评论(0) 推荐(0)
摘要: MediaService.Main 1 #include 2 #include 3 #include 4 5 #include 6 #include 7 #include 8 #include 9 10 #include 11 #include 12 #include 13 #include 14 #include 15 16 using namespace android;17 18 int main(int argc, char** argv)19 {20 sp proc(ProcessState::self());21 sp sm = defaultSer... 阅读全文
posted @ 2013-08-26 16:52 iDragon 阅读(680) 评论(0) 推荐(0)
摘要: ParcelWords with same meaning: package,bunch,bundle,pack,packet, make into a wrapped container,a wrapped container, a collection of things wrapped or boxed togetherThe implementation of Parcel, write or read data from data memoryParcel.cppThe header of Parcel 1 #ifndef ANDROID_PARCEL_H 2 #define A.. 阅读全文
posted @ 2013-08-23 10:08 iDragon 阅读(1100) 评论(0) 推荐(0)
摘要: Programming for thread in JavaOverride Annotation 1 package java.lang; 2 import java.lang.annotation.ElementType; 3 import java.lang.annotation.Retention; 4 import java.lang.annotation.RetentionPolicy; 5 import java.lang.annotation.Target; 6 7 /** 8 * Annotation type used to mark methods that over.. 阅读全文
posted @ 2013-08-21 14:05 iDragon 阅读(545) 评论(0) 推荐(0)
摘要: Exception 1 Try 2 { 3 ... ... 4 } 5 catch (Exception ex) 6 { 7 …; 8 throw new Throwable(ex); 9 }10 catch (Throwable ex)11 {12 …;13 }14 finally15 {16 17 } 1 /* 2 * Licensed to the Apache Software Foundation (ASF) under one or more 3 * contributor license agreements. See the... 阅读全文
posted @ 2013-08-21 11:00 iDragon 阅读(533) 评论(0) 推荐(0)
摘要: Implementation with JavaFrom:http://jcsc.sourceforge.netIn general, follow the Sun coding conventions.These are available at java.sun.com/docs/codeconv/index.html (the code in this book follows these conventions as much as I was able). These are used for what constitutes arguably the largest body of 阅读全文
posted @ 2013-08-21 09:31 iDragon 阅读(285) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页