/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...] |
/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
|
/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}}
|
/cts/tools/vm-tests-tf/ |
Android.mk | 23 LOCAL_JAR_PATH := android.core.vm-tests-tf.jar 27 LOCAL_MODULE := cts-tf-dalvik-buildutil 36 # Buid android.core.vm-tests-tf.jar 39 intermediates := $(call intermediates-dir-for,JAVA_LIBRARIES,vm-tests-tf,HOST) 40 vmteststf_jar := $(intermediates)/android.core.vm-tests-tf.jar 41 vmteststf_dep_jars := $(addprefix $(HOST_OUT_JAVA_LIBRARIES)/, cts-tf-dalvik-buildutil.jar dasm.jar dx.jar cfassembler.jar junit.jar) 44 $(vmteststf_jar): PRIVATE_INTERMEDIATES_CLASSES := $(call intermediates-dir-for,JAVA_LIBRARIES,cts-tf-dalvik-buildutil,HOST)/classes 56 $(HOST_OUT_JAVA_LIBRARIES)/cts-tf-dalvik-buildutil.jar:$(PRIVATE_LIB_FOLDER)/junit.jar:$(HOST_OUT_JAVA_LIBRARIES)/tradefed-prebuilt.jar \ 63 $(hide) cd $(PRIVATE_INTERMEDIATES_HOSTJUNIT_FILES)/classes && zip -q -r ../../android.core.vm-tests-tf.jar . 64 $(hide) cd $(dir $@) && zip -q -r android.core.vm-tests-tf.jar test [all...] |
/device/moto/shamu/ |
releasetools.py | 124 tf = common.File("bootloader.img", target_bootloader_img) 126 WriteIncrementalBootloader(info, tf, sf) 130 tf = FindRadio(info.target_zip) 131 if not tf: 135 tf = common.File("radio.img", tf) 142 WriteRadio(info, tf.data) 146 if tf.size == sf.size and tf.sha1 == sf.sha1: 149 WriteIncrementalRadio(info, tf, sf [all...] |
/cts/tests/tests/text/src/android/text/style/cts/ |
StyleSpanTest.java | 55 Typeface tf = Typeface.defaultFromStyle(Typeface.NORMAL); local 56 tp.setTypeface(tf); 78 Typeface tf = Typeface.defaultFromStyle(Typeface.NORMAL); local 79 tp.setTypeface(tf);
|
/external/clang/test/Index/ |
file-refs.cpp | 28 T tf(T t) { function
|
/external/deqp/modules/gles3/functional/ |
es3fLifetimeTests.cpp | 72 void draw (GLuint vao, GLfloat scale, bool tf, Surface* dst); 126 void ScaleProgram::draw (GLuint vao, GLfloat scale, bool tf, Surface* dst) 143 if (tf) 146 if (tf) 313 void attach (GLuint buffer, GLuint tf); 314 void detach (GLuint buffer, GLuint tf); 316 GLuint getAttachment (GLuint tf); 326 void BufferTfAttacher::attach (GLuint buffer, GLuint tf) 328 glBindTransformFeedback(GL_TRANSFORM_FEEDBACK, tf); 334 void BufferTfAttacher::detach (GLuint buffer, GLuint tf) 469 GLuint tf = 0; local [all...] |