Searched defs:tf (Results 1 - 18 of 18) sorted by relevance

/external/bluetooth/bluez/audio/
H A Dgstbluetooth.c46 static void sbc_typefind(GstTypeFind *tf, gpointer ignore) argument
51 guint8 *data = gst_type_find_peek(tf, 0, 32);
65 gst_type_find_suggest(tf, GST_TYPE_FIND_POSSIBLE, caps);
/external/webkit/WebCore/platform/graphics/android/
H A DFontCacheAndroid.cpp113 SkTypeface* tf = SkTypeface::CreateFromName(name, (SkTypeface::Style)style); local
115 FontPlatformData* result = new FontPlatformData(tf,
117 (style & SkTypeface::kBold) && !tf->isBold(),
118 (style & SkTypeface::kItalic) && !tf->isItalic());
119 tf->unref();
H A DFontPlatformDataAndroid.cpp89 FontPlatformData::FontPlatformData(SkTypeface* tf, float textSize, bool fakeBold, bool fakeItalic) argument
90 : mTypeface(tf), mTextSize(textSize), mFakeBold(fakeBold), mFakeItalic(fakeItalic)
/external/webkit/WebCore/platform/graphics/chromium/
H A DFontCacheLinux.cpp142 SkTypeface* tf = SkTypeface::CreateFromName(name, static_cast<SkTypeface::Style>(style)); local
143 if (!tf)
147 new FontPlatformData(tf,
149 (style & SkTypeface::kBold) && !tf->isBold(),
150 (style & SkTypeface::kItalic) && !tf->isItalic());
151 tf->unref();
H A DFontPlatformDataLinux.cpp77 FontPlatformData::FontPlatformData(SkTypeface* tf, float textSize, bool fakeBold, bool fakeItalic) argument
78 : m_typeface(tf)
/external/webkit/WebKit/android/plugins/
H A DANPTypefaceInterface.cpp32 SkTypeface* tf = SkTypeface::CreateFromName(name, local
34 return reinterpret_cast<ANPTypeface*>(tf);
39 SkTypeface* tf = SkTypeface::CreateFromTypeface(family, local
41 return reinterpret_cast<ANPTypeface*>(tf);
44 static int32_t anp_getRefCount(const ANPTypeface* tf) { argument
45 return tf ? tf->getRefCnt() : 0;
48 static void anp_ref(ANPTypeface* tf) { argument
49 tf->safeRef();
52 static void anp_unref(ANPTypeface* tf) { argument
56 anp_getStyle(const ANPTypeface* tf) argument
61 anp_getFontPath(const ANPTypeface* tf, char fileName[], int32_t length, int32_t* index) argument
[all...]
H A DANPPaintInterface.cpp139 static void anp_setTypeface(ANPPaint* paint, ANPTypeface* tf) { argument
140 paint->setTypeface(tf);
/external/chromium/third_party/icu/source/test/intltest/
H A Ddcfmapts.cpp242 UBool tf = pat.isDecimalSeparatorAlwaysShown(); local
243 logln((UnicodeString)"DecimalSeparatorIsAlwaysShown (should be TRUE) is " + (UnicodeString) (tf ? "TRUE" : "FALSE"));
244 if(tf != TRUE) {
/external/chromium/third_party/icu/source/test/perf/unisetperf/
H A Dunisetperf.cpp99 UBool tf=FALSE; local
101 i=span(s, length, i, tf);
102 tf=(UBool)(!tf);
106 int32_t span(const UChar *s, int32_t length, int32_t start, UBool tf) const {
111 if(tf!=set.contains(c)) {
181 UBool tf=FALSE; local
183 i+=span(set, s+i, length-i, tf);
184 tf=(UBool)(!tf);
192 span(const UnicodeSet &set, const UChar *s, int32_t length, UBool tf) argument
243 UBool tf=FALSE; local
298 UBool tf=(UBool)((testcase.spanCount&1)==0); local
344 UBool tf=FALSE; local
394 UBool tf=(UBool)((testcase.spanCount&1)==0); local
[all...]
/external/icu4c/test/intltest/
H A Ddcfmapts.cpp249 UBool tf = pat.isDecimalSeparatorAlwaysShown(); local
250 logln((UnicodeString)"DecimalSeparatorIsAlwaysShown (should be TRUE) is " + (UnicodeString) (tf ? "TRUE" : "FALSE"));
251 if(tf != TRUE) {
/external/icu4c/test/perf/unisetperf/
H A Dunisetperf.cpp99 UBool tf=FALSE; local
101 i=span(s, length, i, tf);
102 tf=(UBool)(!tf);
106 int32_t span(const UChar *s, int32_t length, int32_t start, UBool tf) const {
111 if(tf!=set.contains(c)) {
181 UBool tf=FALSE; local
183 i+=span(set, s+i, length-i, tf);
184 tf=(UBool)(!tf);
192 span(const UnicodeSet &set, const UChar *s, int32_t length, UBool tf) argument
243 UBool tf=FALSE; local
298 UBool tf=(UBool)((testcase.spanCount&1)==0); local
344 UBool tf=FALSE; local
394 UBool tf=(UBool)((testcase.spanCount&1)==0); local
[all...]
/external/fdlibm/
H A De_lgamma_r.c106 tf = -1.21486290535849611461e-01, /* 0xBFBF19B9, 0xBCC38A42 */ variable
107 /* tt = -(tail of tf) */
269 r += (tf + p); break;
/external/skia/src/ports/
H A DSkFontHost_android.cpp471 SkTypeface* tf = SkNEW_ARGS(FileTypeface, local
482 // rec[i].fFileName, fallbackCount, tf->uniqueID());
483 gFallbackFonts[fallbackCount++] = tf->uniqueID();
486 firstInFamily = tf;
487 FamilyRec* family = find_family(tf);
566 SkTypeface* tf = NULL; local
569 tf = find_typeface(familyFace, style);
572 tf = find_typeface(familyName, style);
575 if (NULL == tf) {
576 tf
593 FamilyTypeface* tf = (FamilyTypeface*)find_from_uniqueID(fontID); local
607 FamilyTypeface* tf = (FamilyTypeface*)find_from_uniqueID(fontID); local
[all...]
/external/webkit/WebCore/css/
H A DCSSComputedStyleDeclaration.cpp499 const TimingFunction& tf = animList->animation(i)->timingFunction(); local
500 list->append(CSSTimingFunctionValue::create(tf.x1(), tf.y1(), tf.x2(), tf.y2()));
504 const TimingFunction& tf = Animation::initialAnimationTimingFunction(); local
505 list->append(CSSTimingFunctionValue::create(tf.x1(), tf.y1(), tf.x2(), tf
[all...]
/external/grub/stage2/
H A Diso9660.h189 } tf; member in union:rock_ridge::__anon2213
/external/bluetooth/glib/glib/
H A Dgslice.c1421 double tf, bf; local
1438 tf = MAX (t, 1.0); /* max(1) to be a valid divisor */
1442 b / tf,
1443 100.0 - (SMC_BRANCH_COUNT - b / tf) / (0.01 * SMC_BRANCH_COUNT));
/external/kernel-headers/original/linux/
H A Data.h335 static inline int is_atapi_taskfile(const struct ata_taskfile *tf) argument
337 return (tf->protocol == ATA_PROT_ATAPI) ||
338 (tf->protocol == ATA_PROT_ATAPI_NODATA) ||
339 (tf->protocol == ATA_PROT_ATAPI_DMA);
342 static inline int is_multi_taskfile(struct ata_taskfile *tf) argument
344 return (tf->command == ATA_CMD_READ_MULTI) ||
345 (tf->command == ATA_CMD_WRITE_MULTI) ||
346 (tf->command == ATA_CMD_READ_MULTI_EXT) ||
347 (tf->command == ATA_CMD_WRITE_MULTI_EXT) ||
348 (tf
[all...]
/external/webkit/WebCore/rendering/
H A DRenderLayerBacking.cpp1094 const TimingFunction* tf = keyframeStyle->hasAnimations() ? &((*keyframeStyle->animations()).animation(0)->timingFunction()) : 0; local
1097 transformVector.insert(new TransformAnimationValue(key, &(keyframeStyle->transform()), tf));
1100 opacityVector.insert(new FloatAnimationValue(key, keyframeStyle->opacity(), tf));

Completed in 576 milliseconds