のねのBlog

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

2013-05-01から1ヶ月間の記事一覧

CP_BOOTというのは、なんだろう?

05-26 10:00:24.534: D/(1801): [CP BOOT] __boot_6260: START CP BOOT 05-26 10:00:24.675: D/(1801): [CP BOOT] __boot_6260: CP POWER ON DONE 05-26 10:00:24.675: D/(1801): [CP BOOT] mipi_xmit_atat: SENT ATAT 0 05-26 10:00:24.769: D/(1801): [CP …

floatWidthForComplexText > setupPaint

341 float Font::floatWidthForComplexText(const TextRun& run, HashSet<const SimpleFontData*>*, GlyphOverflow*) const 342 { 343 SkPaint paint; 344 345 primaryFont()->platformData().setupPaint(&paint); 346 347 //printf("--------- complext measure %d chars\n", run.t</const>…

GC::drawText

378 void GraphicsContext::drawText(const Font& font, const TextRun& run, const FloatPoint& point, int from, int to) 379 { 380 if (paintingDisabled()) 381 return; 382 383 font.drawText(this, run, point, from, to); 384 } 127 void Font::drawT…

webkit debug

gdbclient app_process :5039 browser

set stop-on-solib-events 1

set stop-on-solib-events 1

SimpleText

============================================================================================= 353 void Font::drawSimpleText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, int from, int to) const 354 { 355 // This gl…

complextext

323 void Font::drawComplexText(GraphicsContext* gc, TextRun const& run, 324 FloatPoint const& point, int, int) const 325 { 326 SkCanvas* canvas = gc->platformContext()->mCanvas; 327 SkPaint paint; 328 329 if (!setupForText(&paint, gc, prim…

css

2326 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(TextRenderingMode e) 2327 : m_type(CSS_IDENT) 2328 , m_hasCachedCSSText(false) 2329 { 2330 switch (e) { 2331 case AutoTextRendering: 2332 m_value.ident = CSSValueAuto; 2333 break;…

optimizelegibility

117 TypesettingFeatures typesettingFeatures() const 118 { 119 TextRenderingMode textRenderingMode = m_fontDescription.textRenderingMode(); 120 return textRenderingMode == OptimizeLegibility || textRenderingMode == GeometricPrecision ? Kern…

browser db sqlite3

たっきーのブログ Androidのブラウザが使用するファイルについて

chrome usb debug

Chromeのリモートデバッグ機能がすごい! - Hacking My Way ? itogのhack日記

no rect-based-test nodes found

1285 HTMLElement* WebViewCore::retrieveElement(int x, int y, 1286 const QualifiedName& tagName) 1287 { 1288 HitTestResult hitTestResult = m_mainFrame->eventHandler() 1289 ->hitTestResultAtPoint(IntPoint(x, y), false, false, 1290 DontHitTes…

Console: Viewport argument value

334 static const char* viewportErrorMessageTemplate(ViewportErrorCode errorCode) 335 { 336 static const char* const errors[] = { 337 "Viewport argument key \"%replacement1\" not recognized and ignored.", 338 "Viewport argument value \"%rep…

drawBidiText >> width > floatWidthForComplexText > widthOfFullRun > nextScriptRun > setupFontForScriptRun

148 void RenderEmbeddedObject::paintReplaced(PaintInfo& paintInfo, int tx, int ty) 149 { 150 if (!pluginCrashedOrWasMissing()) 151 return; 152 153 if (paintInfo.phase == PaintPhaseSelection) 154 return; 155 156 GraphicsContext* context = p…

0x00000124

0x00000124頻発 HDDが勝手に再起動 - Windows 7 - 教えて!goo 0x00000124 WHEA_UNCORRECTABLE_ERROR

windows8が再起動する。

コンピューターが不意に再起動する (Windows 8) | HP〓 サポート

Open Dynamics EngineのVisualStudio2008用プロジェクトの作り方

cd c:\ode-0.11.1\build c:\ode-0.11.1\build> premake4 --with-demos vs2008 vs2008というVisual C++2008用のディレクトリが生成されます。 c:\ode-0.12\buildにプロジェクトを作成する。 Win32用コンソールアプリケーションを選択する。 テンプレート: Wi…

CPU用ファンがうるさくなった

SY1025SL12M(風拾・静音) JAN:4560143269079 回転数:1500rpm±10% 風量:42.69CFM ノイズ:22.0dBA 定格:12V/0.11A

fBaseGlyphCount

148 SkScalerContext* SkScalerContext::getNextContext() { 149 SkScalerContext* next = fNextContext; 150 // if next is null, then either it isn't cached yet, or we're at the 151 // end of our possible chain 152 if (NULL == next) { 153 next =…

GlyphMapAndroid::fill

91 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData) 92 { 93 if (SkUTF16_IsHighSurrogate(buffer[bufferLength-1])) { 94 SkDebugf("%s last char is high-surrogate", __…

SkGlyphCache

34 class SkGlyphCache { 35 public: 197 198 private: 231 SkGlyphCache* fNext, *fPrev; 232 SkDescriptor* fDesc; 233 SkScalerContext* fScalerContext; 234 SkPaint::FontMetrics fFontMetricsY; 235 241 SkGlyph* fGlyphHash[kHashCount]; 242 SkTDArr…

CharGlyphRec

248 struct CharGlyphRec { 249 uint32_t fID; // unichar + subpixel 250 SkGlyph* fGlyph; 251 }; 37 struct SkGlyph { 38 void* fImage; 39 SkPath* fPath; 40 SkFixed fAdvanceX, fAdvanceY; 41 42 uint32_t fID; 43 uint16_t fWidth, fHeight; 44 int16…

SkScalerContext

164 class SkScalerContext { 165 public: 207 322 protected: 323 Rec fRec; 324 unsigned fBaseGlyphCount; 325 339 private: 342 SkPathEffect* fPathEffect; 343 SkMaskFilter* fMaskFilter; 344 SkRasterizer* fRasterizer; 345 SkScalar fDevFrameWidt…

platformWidthForGlyph

127 float SimpleFontData::platformWidthForGlyph(Glyph glyph) const 128 { 129 SkASSERT(sizeof(glyph) == 2); // compile-time assert 130 131 SkPaint paint; 132 133 m_platformData.setupPaint(&paint); 134 135 float advanceWidth; 136 if (EmojiFo…

GlyphPage::fill

91 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData) 92 { 93 if (SkUTF16_IsHighSurrogate(buffer[bufferLength-1])) { 94 SkDebugf("%s last char is high-surrogate", __…

UnicharToGlyph

145 uint16_t EmojiFont::UnicharToGlyph(int32_t unichar) { 146 // do a quick range check before calling the search routine 147 if (unichar >= GMOJI_PUA_MIN && unichar <= GMOJI_PUA_MAX) { 148 // our table is stored relative to GMOJI_PUA_MIN …

glyphData

73 GlyphPage* page; 74 if (variant == NormalVariant) { 75 // Fastest loop, for the common case (normal variant). 76 while (true) { 77 page = node->page(); 78 if (page) { 79 GlyphData data = page->glyphDataForCharacter(c); 80 if (data.fontD…

classes

class SimpleFontData Cross Reference: /external/webkit/Source/WebCore/platform/graphics/SimpleFontData.hclass FontPlatformData Cross Reference: /external/webkit/Source/WebCore/platform/graphics/FontPlatformData.h class GlyphPage Cross Refe…

GlyphPage

71 class GlyphPage : public RefCounted<GlyphPage> { 72 public: 78 static const size_t size = 256; // Covers Latin-1 in a single page. 79 136 private: 143 Glyph m_glyphs[size]; 144 const SimpleFontData* m_glyphFontData[size]; 145 146 GlyphPageTreeNode</glyphpage>…

getUnicharMetrics

905 SkScalar SkPaint::measure_text(SkGlyphCache* cache, 906 const char* text, size_t byteLength, 907 int* count, SkRect* bounds) const { 908 SkASSERT(count); 909 if (byteLength == 0) { 910 *count = 0; 911 if (bounds) { 912 bounds->setEmpty…