HomeSort by relevance Sort by last modified time
    Searched refs:tf (Results 1 - 25 of 189) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/PCH/
headersearch.cpp 11 // RUN: echo 'template <typename T> void tf() { orig_sub2_1(); T::foo(); }' >> %t_orig/sub2/orig_sub2.h
42 tf<int>();
missing-file.cpp 5 // RUN: echo 'template <typename T> void tf() { T::foo(); }' >> %t.h
25 tf<int>();
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
FontRenderingTests.java 64 Typeface tf = Typeface.create("sans-serif", Typeface.NORMAL); local
65 fontTestBody(tf, R.drawable.hello1);
70 Typeface tf = Typeface.create("sans-serif", Typeface.BOLD); local
71 fontTestBody(tf, R.drawable.bold1);
76 Typeface tf = Typeface.create("sans-serif", Typeface.ITALIC); local
77 fontTestBody(tf, R.drawable.italic1);
82 Typeface tf = Typeface.create("sans-serif", Typeface.BOLD | Typeface.ITALIC); local
83 fontTestBody(tf, R.drawable.bolditalic1);
88 Typeface tf = Typeface.create("sans-serif-medium", Typeface.NORMAL); local
89 fontTestBody(tf, R.drawable.medium1)
95 Typeface tf = Typeface.create("sans-serif-medium", Typeface.BOLD); local
101 Typeface tf = Typeface.create("sans-serif-medium", Typeface.ITALIC); local
107 Typeface tf = Typeface.create("sans-serif-medium", Typeface.BOLD | Typeface.ITALIC); local
113 Typeface tf = Typeface.create("sans-serif-light", Typeface.NORMAL); local
120 Typeface tf = Typeface.create("sans-serif-light", Typeface.BOLD); local
126 Typeface tf = Typeface.create("sans-serif-light", Typeface.ITALIC); local
132 Typeface tf = Typeface.create("sans-serif-light", Typeface.BOLD | Typeface.ITALIC); local
138 Typeface tf = Typeface.create("sans-serif-thin", Typeface.NORMAL); local
145 Typeface tf = Typeface.create("sans-serif-thin", Typeface.BOLD); local
151 Typeface tf = Typeface.create("sans-serif-thin", Typeface.ITALIC); local
157 Typeface tf = Typeface.create("sans-serif-thin", Typeface.BOLD | Typeface.ITALIC); local
163 Typeface tf = Typeface.create("sans-serif-black", Typeface.NORMAL); local
170 Typeface tf = Typeface.create("sans-serif-black", Typeface.BOLD); local
176 Typeface tf = Typeface.create("sans-serif-black", Typeface.ITALIC); local
182 Typeface tf = Typeface.create("sans-serif-black", Typeface.BOLD | Typeface.ITALIC); local
190 Typeface tf = Typeface.create("sans-serif-condensed", Typeface.NORMAL); local
196 Typeface tf = Typeface.create("sans-serif-condensed", Typeface.BOLD); local
202 Typeface tf = Typeface.create("sans-serif-condensed", Typeface.ITALIC); local
208 Typeface tf = Typeface.create("sans-serif-condensed", Typeface.BOLD | Typeface.ITALIC); local
214 Typeface tf = Typeface.create("sans-serif-condensed-light", Typeface.NORMAL); local
220 Typeface tf = Typeface.create("sans-serif-condensed-light", Typeface.ITALIC); local
    [all...]
  /bionic/tests/
sys_mman_test.cpp 38 TemporaryFile tf; local
40 void* map = mmap(NULL, 100, PROT_READ, MAP_SHARED, tf.fd, 1);
45 TemporaryFile tf; local
47 void* map = mmap64(NULL, 100, PROT_READ, MAP_SHARED, tf.fd, 1);
57 TemporaryFile tf; local
59 ASSERT_EQ(STR_SSIZE(STRING_MSG), write(tf.fd, STRING_MSG, sizeof(STRING_MSG)));
61 void* map = mmap(NULL, sizeof(STRING_MSG), PROT_READ, MAP_SHARED, tf.fd, 0);
71 TemporaryFile tf; local
73 ASSERT_EQ(STR_SSIZE(INITIAL_MSG), write(tf.fd, INITIAL_MSG, sizeof(INITIAL_MSG)));
74 lseek(tf.fd, 0, SEEK_SET)
98 TemporaryFile tf; local
134 TemporaryFile tf; local
    [all...]
fcntl_test.cpp 74 TemporaryFile tf; local
83 EXPECT_EQ(EINVAL, posix_fadvise(tf.fd, 0, 0, -1));
86 EXPECT_EQ(EINVAL, posix_fadvise64(tf.fd, 0, 0, -1));
89 EXPECT_EQ(0, posix_fadvise(tf.fd, 0, 0, POSIX_FADV_NORMAL));
90 EXPECT_EQ(0, posix_fadvise64(tf.fd, 0, 0, POSIX_FADV_NORMAL));
94 TemporaryFile tf; local
100 ASSERT_EQ(-1, fallocate(tf.fd, 0, 0, -1));
104 ASSERT_EQ(-1, fallocate64(tf.fd, 0, 0, -1));
108 ASSERT_EQ(EINVAL, posix_fallocate(tf.fd, 0, -1));
112 ASSERT_EQ(EINVAL, posix_fallocate64(tf.fd, 0, -1))
117 TemporaryFile tf; local
164 TemporaryFile tf; local
    [all...]
ftw_test.cpp 65 TemporaryFile tf(td.dirname);
71 GenericTemporaryFile<mkstemp64> tf(td.dirname);
77 TemporaryFile tf(td.dirname);
83 GenericTemporaryFile<mkstemp64> tf(td.dirname);
unistd_test.cpp 141 TemporaryFile tf; local
142 ASSERT_EQ(0, close(tf.fd));
143 ASSERT_EQ(0, truncate(tf.filename, 123));
146 ASSERT_EQ(0, stat(tf.filename, &sb));
151 TemporaryFile tf; local
152 ASSERT_EQ(0, close(tf.fd));
153 ASSERT_EQ(0, truncate64(tf.filename, 123));
156 ASSERT_EQ(0, stat(tf.filename, &sb));
161 TemporaryFile tf; local
162 ASSERT_EQ(0, ftruncate(tf.fd, 123))
171 TemporaryFile tf; local
359 TemporaryFile tf; local
    [all...]
  /frameworks/base/core/java/android/text/style/
StyleSpan.java 93 Typeface tf; local
95 tf = Typeface.defaultFromStyle(want);
97 tf = Typeface.create(old, want);
100 int fake = want & ~tf.getStyle();
110 paint.setTypeface(tf);
TextAppearanceSpan.java 75 int tf = a.getInt(com.android.internal.R.styleable.TextAppearance_typeface, 0); local
77 switch (tf) {
220 Typeface tf = ds.getTypeface(); local
223 if (tf != null) {
224 style = tf.getStyle();
230 tf = Typeface.create(mTypeface, style);
231 } else if (tf == null) {
232 tf = Typeface.defaultFromStyle(style);
234 tf = Typeface.create(tf, style)
    [all...]
TypefaceSpan.java 83 Typeface tf = Typeface.create(family, oldStyle); local
84 int fake = oldStyle & ~tf.getStyle();
94 paint.setTypeface(tf);
  /development/tools/findunused/
removeunusedresources 61 xmlstarlet ed -P -S -d "/resources/string[@name='$LINE']" $RESLINE > tf$$
62 mv tf$$ $RESLINE
66 xmlstarlet ed -P -S -d "/resources/*[@name='$LINE']" $RESLINE > tf$$
67 mv tf$$ $RESLINE
  /external/clang/test/SemaCXX/
warn-large-by-value-copy.cpp 35 void tf(TS<size> ts) {} // expected-warning {{ts' is a large (300 bytes) pass-by-value argument}} function in namespace:rdar8548050
39 tf<300>(ts); // expected-note {{instantiation}}
  /external/chromium_org/third_party/icu/source/test/perf/unisetperf/
unisetperf.cpp 99 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);
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/icu/icu4c/source/test/perf/unisetperf/
unisetperf.cpp 99 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);
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/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/
p4.cpp 7 void tf() { function
  /external/clang/test/Sema/
fp16-sema.c 10 typedef void(*tf) (__fp16); // expected-error {{parameters cannot have __fp16 type; did you forget * ?}} typedef
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
GenericSignatureFormatErrorTest.java 25 File tf = File.createTempFile("classes", ".dex"); local
27 // +tf.getAbsolutePath()+", canRead: "+tf.canRead()
28 // +", canWrite: "+tf.canWrite());
56 File tf = File.createTempFile("classes", ".dex"); local
58 // tf.getAbsolutePath() + ", canRead: " + tf.canRead() +
59 // ", canWrite: "+tf.canWrite());
62 OutputStream fos = new FileOutputStream(tf);
69 //System.out.println("file length:"+tf.length())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
FontCacheSkiaWin.cpp 191 static bool typefacesMatchesFamily(const SkTypeface* tf, const AtomicString& family)
193 SkTypeface::LocalizedStrings* actualFamilies = tf->createFamilyNameIterator();
210 tf->getFamilyName(&familyName);
301 RefPtr<SkTypeface> tf = createTypeface(fontDescription, creationParams, name); local
305 if (!tf || !typefacesMatchesFamily(tf.get(), creationParams.family())) {
315 tf = createTypeface(adjustedFontDescription, adjustedParams, name);
316 if (!tf || !typefacesMatchesFamily(tf.get(), adjustedName))
324 tf = createTypeface(adjustedFontDescription, adjustedParams, name)
    [all...]
  /device/asus/deb/
releasetools.py 54 tf = FindRadio(info.target_zip)
55 if not tf:
59 tf = common.File("radio.img", tf)
65 WriteRadio(info, tf.data)
69 if tf.sha1 == sf.sha1:
72 diff = common.Difference(tf, sf, diff_program="bsdiff")
75 if d is None or len(d) > tf.size * common.OPTIONS.patch_threshold:
78 WriteRadio(info, tf.data)
86 sf.size, sf.sha1, tf.size, tf.sha1)
    [all...]
  /device/asus/flo/
releasetools.py 67 tf = FindRadio(info.target_zip)
68 if not tf:
72 tf = common.File("radio.img", tf)
78 WriteRadio(info, tf.data)
82 if tf.sha1 == sf.sha1:
85 diff = common.Difference(tf, sf, diff_program="bsdiff")
88 if d is None or len(d) > tf.size * common.OPTIONS.patch_threshold:
91 WriteRadio(info, tf.data)
99 sf.size, sf.sha1, tf.size, tf.sha1)
    [all...]
  /device/lge/hammerhead/
releasetools.py 54 tf = FindRadio(info.target_zip)
55 if not tf:
59 tf = common.File("radio.img", tf)
65 WriteRadio(info, tf.data)
69 if tf.sha1 == sf.sha1:
72 diff = common.Difference(tf, sf, diff_program="bsdiff")
75 if d is None or len(d) > tf.size * common.OPTIONS.patch_threshold:
78 WriteRadio(info, tf.data)
86 sf.size, sf.sha1, tf.size, tf.sha1)
    [all...]
  /device/lge/mako/
releasetools.py 54 tf = FindRadio(info.target_zip)
55 if not tf:
59 tf = common.File("radio.img", tf)
65 WriteRadio(info, tf.data)
69 if tf.sha1 == sf.sha1:
72 diff = common.Difference(tf, sf, diff_program="bsdiff")
75 if d is None or len(d) > tf.size * common.OPTIONS.patch_threshold:
78 WriteRadio(info, tf.data)
86 sf.size, sf.sha1, tf.size, tf.sha1)
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
table_cache.cc 20 TableAndFile* tf = reinterpret_cast<TableAndFile*>(value); local
21 delete tf->table;
22 delete tf->file;
23 delete tf;
73 TableAndFile* tf = new TableAndFile; local
74 tf->file = file;
75 tf->table = table;
76 *handle = cache_->Insert(key, tf, 1, &DeleteEntry);
  /external/clang/test/CXX/except/except.spec/
p2-dynamic-types.cpp 18 void tf() throw(TEx<int>); // expected-error {{implicit instantiation of undefined template}}
  /libcore/luni/src/test/java/libcore/xml/
XmlPullParserFactoryTest.java 50 TestXmlPullParserFactory tf = new TestXmlPullParserFactory(null, null); local
53 tf.newPullParser();
59 tf.newPullParser();
66 TestXmlPullParserFactory tf = new TestXmlPullParserFactory( local
70 assertTrue(tf.newPullParser() instanceof XmlPullParserStub);
71 assertTrue(tf.newSerializer() instanceof XmlSerializerStub);
75 tf = new TestXmlPullParserFactory(
83 assertTrue(tf.newPullParser() instanceof XmlPullParserStub);
84 assertTrue(tf.newSerializer() instanceof XmlSerializerStub);
89 TestXmlPullParserFactory tf = new TestXmlPullParserFactory local
    [all...]

Completed in 853 milliseconds

1 2 3 4 5 6 7 8