/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
imghdr.py | 22 for tf in tests: 23 res = tf(h, f)
|
sndhdr.py | 45 for tf in tests: 46 res = tf(h, f)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
imghdr.py | 22 for tf in tests: 23 res = tf(h, f)
|
sndhdr.py | 45 for tf in tests: 46 res = tf(h, f)
|
/external/svox/pico/lib/ |
picopal.c | 525 LONGLONG dt, tf; 527 tf = GLOB(timerFreq).QuadPart; 528 *sec = (unsigned int) (dt / tf); 529 *usec = (unsigned int) (USEC_PER_SEC * (dt % tf) / tf); 531 double dt, tf; 533 tf = (double)(timerFreq.QuadPart); 534 *sec = (unsigned int) (dt /tf); 535 *usec = (unsigned int) ((double)USEC_PER_SEC * (dt / tf)) % USEC_PER_SEC;
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/ |
FontFallbackWin.cpp | 50 RefPtr<SkTypeface> tf = adoptRef(fontManager->legacyCreateTypeface(family.utf8().data(), SkTypeface::kNormal)); local 51 if (!tf) 54 SkTypeface::LocalizedStrings* actualFamilies = tf->createFamilyNameIterator();
|
/external/chromium_org/third_party/skia/gm/ |
gammatext.cpp | 29 SkTypeface* tf = sk_tool_utils::create_portable_typeface(name, SkTypeface::kNormal); local 30 if (tf) { 31 paint->setTypeface(tf)->unref();
|
/external/skia/gm/ |
gammatext.cpp | 29 SkTypeface* tf = SkTypeface::CreateFromName(name, SkTypeface::kNormal); local 30 if (tf) { 31 paint->setTypeface(tf)->unref();
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
QSDualTileLabel.java | 141 public void setTypeface(Typeface tf) { 142 mFirstLine.setTypeface(tf); 143 mSecondLine.setTypeface(tf);
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
SwitchCompat.java | 267 public void setSwitchTypeface(Typeface tf, int style) { 269 if (tf == null) { 270 tf = Typeface.defaultFromStyle(style); 272 tf = Typeface.create(tf, style); 275 setSwitchTypeface(tf); 277 int typefaceStyle = tf != null ? tf.getStyle() : 0; 284 setSwitchTypeface(tf); 295 public void setSwitchTypeface(Typeface tf) { [all...] |
/external/eigen/bench/ |
bench_norm.cpp | 216 Eigen::BenchTimer tf, td, tcf; tf.reset(); td.reset(); tcf.reset();\ 218 tf.start(); \ 220 tf.stop(); \ 232 std::cout << #NRM << "\t" << tf.value() << " " << td.value() << " " << tcf.value() << "\n"; \
|
/external/mksh/src/ |
histrap.c | 91 struct temp *tf; local 297 tf = maketemp(ATEMP, TT_HIST_EDIT, &e->temps); 298 if (!(shf = tf->shf)) { 300 "create", tf->tffn, cstrerror(errno)); 308 "write", tf->tffn, cstrerror(errno)); 313 setstr(local("_", false), tf->tffn, KSH_RETURN_ERROR); 332 if (!(shf = shf_open(tf->tffn, O_RDONLY, 0, 0))) { 334 "open", tf->tffn, cstrerror(errno)); 338 if (stat(tf->tffn, &statb) < 0) 354 "read", tf->tffn, cstrerror(shf_errno(shf))) [all...] |
/external/chromium_org/chrome/browser/resources/local_ntp/ |
most_visited_util.js | 220 * - tf: specifying a text fade starting position, in pixels. 237 if ('tf' in params) { 238 var tf = parseInt(params.tf, 10); 239 if (isFinite(tf)) 240 styles.textFadePos = tf;
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
probe-finder.c | 1148 struct trace_event_finder *tf = local 1154 if (tf->ntevs == tf->max_tevs) { 1156 tf->max_tevs); 1159 tev = &tf->tevs[tf->ntevs++]; 1162 ret = convert_to_trace_point(&pf->sp_die, tf->mod, pf->addr, 1192 struct trace_event_finder tf = { local 1202 tf.tevs = *tevs; 1203 tf.ntevs = 0 [all...] |
/external/pcre/dist/ |
RunTest | 259 tf=`expr "$1" : '\([0-9]*\)'` 262 if expr \( "$tf" "<" 1 \) \| \( "$tt" ">" "$maxtest" \) >/dev/null; then 265 while expr "$tf" "<=" "$tt" >/dev/null; do 266 eval do${tf}=yes 267 tf=`expr $tf + 1`
|
/external/chromium_org/third_party/ply/ |
lex.py | 176 tf = open(filename,"w") 177 tf.write("# %s.py. This file automatically created by PLY (version %s). Don't edit!\n" % (tabfile,__version__)) 178 tf.write("_tabversion = %s\n" % repr(__version__)) 179 tf.write("_lextokens = %s\n" % repr(self.lextokens)) 180 tf.write("_lexreflags = %s\n" % repr(self.lexreflags)) 181 tf.write("_lexliterals = %s\n" % repr(self.lexliterals)) 182 tf.write("_lexstateinfo = %s\n" % repr(self.lexstateinfo)) 199 tf.write("_lexstatere = %s\n" % repr(tabre)) 200 tf.write("_lexstateignore = %s\n" % repr(self.lexstateignore)) 208 tf.write("_lexstateerrorf = %s\n" % repr(taberr) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
FontPlatformData.cpp | 176 FontPlatformData::FontPlatformData(PassRefPtr<SkTypeface> tf, const char* family, float textSize, bool syntheticBold, bool syntheticItalic, FontOrientation orientation, bool subpixelTextPosition) 177 : m_typeface(tf)
|
/external/chromium_org/third_party/icu/source/config/ |
mh-os400 | 83 CTESTFW_STUBNAME = tf
|
/external/icu/icu4c/source/config/ |
mh-os400 | 83 CTESTFW_STUBNAME = tf
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/ |
AmPmCirclesView.java | 82 Typeface tf = Typeface.create(typefaceFamily, Typeface.NORMAL); local 83 mPaint.setTypeface(tf);
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
BatteryHistoryChart.java | 277 Typeface tf = null; local 280 tf = Typeface.SANS_SERIF; 284 tf = Typeface.SERIF; 288 tf = Typeface.MONOSPACE; 292 setTypeface(paint, tf, styleIndex); 295 public void setTypeface(TextPaint paint, Typeface tf, int style) { 297 if (tf == null) { 298 tf = Typeface.defaultFromStyle(style); 300 tf = Typeface.create(tf, style) [all...] |
/bionic/tests/ |
stdio_test.cpp | 75 TemporaryFile tf; local 77 int rc = dprintf(tf.fd, "hello\n"); 80 lseek(tf.fd, SEEK_SET, 0); 81 FILE* tfile = fdopen(tf.fd, "r"); 647 TemporaryFile tf; local 648 FILE* fp = fdopen(tf.fd, "w+"); 663 fp = fopen(tf.filename, "r");
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_triangle.c | 279 * unused variables (for instance tf,sf,ti,si in case of GL_NEAREST). 289 sample[RCOMP] = ilerp_2d(sf, tf, tex00[2], tex01[2], tex10[2], tex11[2]);\ 290 sample[GCOMP] = ilerp_2d(sf, tf, tex00[1], tex01[1], tex10[1], tex11[1]);\ 291 sample[BCOMP] = ilerp_2d(sf, tf, tex00[0], tex01[0], tex10[0], tex11[0]);\ 301 sample[RCOMP] = ilerp_2d(sf, tf, tex00[3], tex01[3], tex10[3], tex11[3]);\ 302 sample[GCOMP] = ilerp_2d(sf, tf, tex00[2], tex01[2], tex10[2], tex11[2]);\ 303 sample[BCOMP] = ilerp_2d(sf, tf, tex00[1], tex01[1], tex10[1], tex11[1]);\ 304 sample[ACOMP] = ilerp_2d(sf, tf, tex00[0], tex01[0], tex10[0], tex11[0]) 384 const GLfixed tf = span->intTex[1] & FIXED_FRAC_MASK; \ 615 * unused variables (for instance tf,sf,ti,si in case of GL_NEAREST) [all...] |
/external/mesa3d/src/mesa/swrast/ |
s_triangle.c | 279 * unused variables (for instance tf,sf,ti,si in case of GL_NEAREST). 289 sample[RCOMP] = ilerp_2d(sf, tf, tex00[2], tex01[2], tex10[2], tex11[2]);\ 290 sample[GCOMP] = ilerp_2d(sf, tf, tex00[1], tex01[1], tex10[1], tex11[1]);\ 291 sample[BCOMP] = ilerp_2d(sf, tf, tex00[0], tex01[0], tex10[0], tex11[0]);\ 301 sample[RCOMP] = ilerp_2d(sf, tf, tex00[3], tex01[3], tex10[3], tex11[3]);\ 302 sample[GCOMP] = ilerp_2d(sf, tf, tex00[2], tex01[2], tex10[2], tex11[2]);\ 303 sample[BCOMP] = ilerp_2d(sf, tf, tex00[1], tex01[1], tex10[1], tex11[1]);\ 304 sample[ACOMP] = ilerp_2d(sf, tf, tex00[0], tex01[0], tex10[0], tex11[0]) 384 const GLfixed tf = span->intTex[1] & FIXED_FRAC_MASK; \ 615 * unused variables (for instance tf,sf,ti,si in case of GL_NEAREST) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/ |
r200_tex.c | 318 if ( rmesa->hw.tf.cmd[TF_TFACTOR_0 + unit] != envColor ) { 319 R200_STATECHANGE( rmesa, tf ); 320 rmesa->hw.tf.cmd[TF_TFACTOR_0 + unit] = envColor;
|