のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

2016-09-26から1日間の記事一覧

addFont

6.0.0_r1 103 bool FontFamily::addFont(MinikinFont* typeface) { 104 AutoMutex _l(gMinikinLock); 105 const uint32_t os2Tag = MinikinFont::MakeTag('O', 'S', '/', '2'); 106 size_t os2Size = 0; 107 bool ok = typeface->GetTable(os2Tag, NULL, &os…

aosp build/envsetup.shのコマンド

Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment: - lunch: lunch <product_name>-<build_variant> - tapas: tapas [<App1> <App2> ...] [arm|x86|mips|armv5|arm64|x86_64|mips64] [eng|userdebug|user] - croot: Changes directory to the top of</app2></app1></build_variant></product_name>…

tapas コマンド

BuildingTrade Federation is set up in a lightweight "unbundled" branch that uses slightly different build commands from the platform source. In particular, unbundled branches use the tapas command to set up the build environment, rather th…

hb_blob_t

53 struct hb_blob_t { 54 hb_object_header_t header; 55 ASSERT_POD (); 56 57 bool immutable; 58 59 const char *data; 60 unsigned int length; 61 hb_memory_mode_t mode; 62 63 void *user_data; 64 hb_destroy_func_t destroy; 65 };Cross Reference…