/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...] |
/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);
|
/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:__anon3123 69 template <> void tf<int>() { } // expected-warning{{unused}} function in namespace:__anon3123
|
/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/skia/src/ports/ |
SkFontHost_linux.cpp | 295 SkTypeface* tf = NULL; 298 tf = this->onMatchFamilyStyle(familyName, style); 301 if (NULL == tf) { 302 tf = gDefaultFamily->matchStyle(style); 305 return SkSafeRef(tf); 338 SkTypeface_Custom* tf = SkNEW_ARGS(SkTypeface_File, ( 350 addTo->appendTypeface(tf); 384 SkTypeface* tf = set->matchStyle(SkFontStyle(SkFontStyle::kNormal_Weight, 387 if (NULL == tf) { 392 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/pixman/test/ |
matrix-test.c | 88 pixman_transform_f128_t tf; local 144 tf.m[j][k] = pixman_fixed_to_float128 (ti.matrix[j][k]); 148 if (pixman_transform_point_f128 (&tf, &vf, &result_f))
|
/external/clang/test/SemaTemplate/ |
constructor-template.cpp | 109 X5<X6> tf; local 110 X5<X6> tf2(tf);
|
/frameworks/base/core/java/android/widget/ |
Switch.java | 300 Typeface tf = null; local 303 tf = Typeface.SANS_SERIF; 307 tf = Typeface.SERIF; 311 tf = Typeface.MONOSPACE; 315 setSwitchTypeface(tf, styleIndex); 324 public void setSwitchTypeface(Typeface tf, int style) { 326 if (tf == null) { 327 tf = Typeface.defaultFromStyle(style); 329 tf = Typeface.create(tf, style) [all...] |
/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/protobuf/src/google/protobuf/compiler/ |
zip_output_unittest.sh | 71 jar tf testzip.jar > testzip.list || fail 'jar failed.'
|
/frameworks/base/core/tests/coretests/src/android/text/ |
SpannedTest.java | 99 TypefaceSpan[] tf = s2.getSpans(8, 9, TypefaceSpan.class); local 100 assertEquals(1, tf.length); 101 assertEquals(8, s2.getSpanStart(tf[0])); 102 assertEquals(9, s2.getSpanEnd(tf[0]));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
RefactoringTest.java | 117 TextFileChange tf = (TextFileChange) change; local 118 TextEdit edit = tf.getEdit(); 119 IFile file = tf.getFile(); 153 TextFileChange tf = (TextFileChange) change; local 154 IFile file = tf.getFile(); 169 TextEdit edit = tf.getEdit();
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_subprocess.py | 215 tf = tempfile.TemporaryFile() 216 d = tf.fileno() 227 tf = tempfile.TemporaryFile() 228 tf.write("pear") 229 tf.seek(0) 232 stdin=tf) 246 tf = tempfile.TemporaryFile() 247 d = tf.fileno() 257 tf = tempfile.TemporaryFile() 260 stdout=tf) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_subprocess.py | 215 tf = tempfile.TemporaryFile() 216 d = tf.fileno() 227 tf = tempfile.TemporaryFile() 228 tf.write("pear") 229 tf.seek(0) 232 stdin=tf) 246 tf = tempfile.TemporaryFile() 247 d = tf.fileno() 257 tf = tempfile.TemporaryFile() 260 stdout=tf) [all...] |