/bionic/tests/ |
sys_time_test.cpp | 47 TemporaryFile tf; local 48 ASSERT_EQ(0, utimes(tf.filename, NULL));
|
sys_stat_test.cpp | 63 TemporaryFile tf; local 64 path = tf.filename;
|
stdlib_test.cpp | 166 TemporaryFile tf; local 168 ASSERT_EQ(0, fstat(tf.fd, &sb)); 172 GenericTemporaryFile<mkstemp64> tf; local 174 ASSERT_EQ(0, fstat64(tf.fd, &sb)); 175 ASSERT_EQ(O_LARGEFILE, fcntl(tf.fd, F_GETFL) & O_LARGEFILE);
|
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/tools/page_cycler/common/ |
head.js | 74 "&ts=" + ts + "&td=" + __td + "&tf=" + __tf; 85 var ts = 0, td = 0, te = (new Date()).getTime(), tf = 0; 111 case 'tf': 112 tf = (f[1] - 0); 120 __tf = tf; // record t-fudge
|
/external/clang/test/SemaCXX/ |
warn-unused-filescoped.cpp | 68 void tf() { } function in namespace:__anon24036 69 template <> void tf<int>() { } // expected-warning{{unused}} function in namespace:__anon24036
|
/build/tools/releasetools/ |
ota_from_target_files | [all...] |
common.py | 909 def __init__(self, tf, sf, diff_program=None): 910 self.tf = tf 917 tf. Returns the same tuple as GetPatch().""" 919 tf = self.tf 925 ext = os.path.splitext(tf.name)[1] 928 ttemp = tf.WriteToTemp() 931 ext = os.path.splitext(tf.name)[1] 970 return self.tf, self.sf, self.patc [all...] |
/external/chromium_org/third_party/skia/src/ports/ |
SkFontHost_linux.cpp | 302 SkTypeface* tf = NULL; 305 tf = this->onMatchFamilyStyle(familyName, style); 308 if (NULL == tf) { 309 tf = gDefaultFamily->matchStyle(style); 312 return SkSafeRef(tf); 345 SkTypeface_Custom* tf = SkNEW_ARGS(SkTypeface_File, ( 357 addTo->appendTypeface(tf); 390 SkTypeface* tf = set->matchStyle(SkFontStyle(SkFontStyle::kNormal_Weight, 393 if (NULL == tf) { 398 gDefaultNormal = tf; [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/ |
FontCacheSkia.cpp | 246 RefPtr<SkTypeface> tf(createTypeface(fontDescription, creationParams, name)); 247 if (!tf) 250 FontPlatformData* result = new FontPlatformData(tf, 253 (fontDescription.weight() >= FontWeight600 && !tf->isBold()) || fontDescription.isSyntheticBold(), 254 (fontDescription.style() && !tf->isItalic()) || fontDescription.isSyntheticItalic(),
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
TypefaceTest.java | 52 Typeface tf = Typeface.create(family, style); local 53 if (tf.getStyle() == style) { 54 return tf;
|
/external/clang/test/SemaTemplate/ |
constructor-template.cpp | 109 X5<X6> tf; local 110 X5<X6> tf2(tf);
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
zip_output_unittest.sh | 77 jar tf $TEST_TMPDIR/testzip.jar > $TEST_TMPDIR/testzip.list || fail 'jar failed.'
|
/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/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/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
|
/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...] |