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

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/utils/ffsb-6.0-rc2/
ffsb_thread.c 23 void init_ffsb_thread(ffsb_thread_t * ft, struct ffsb_tg *tg, unsigned bufsize,
26 memset(ft, 0, sizeof(ffsb_thread_t));
28 ft->tg = tg;
29 ft->tg_num = tg_num;
30 ft->thread_num = thread_num;
33 ft_alter_bufsize(ft, bufsize);
35 init_random(&ft->rd, MAX_RANDBUF_SIZE);
38 void destroy_ffsb_thread(ffsb_thread_t * ft)
40 free(ft->mallocbuf);
41 destroy_random(&ft->rd)
53 ffsb_thread_t *ft = (ffsb_thread_t *) data; local
    [all...]
fileops.c 35 ffsb_thread_t * ft, ffsb_fs_t * fs, syscall_t sys)
40 if (!ft && !fs)
47 if (ft && ft_needs_stats(ft, sys))
48 ft_add_stat(ft, sys, value);
64 char *buf, ffsb_thread_t * ft, ffsb_fs_t * fs)
73 fhread(fd, buf, blocksize, ft, fs);
75 fhread(fd, buf, last, ft, fs);
89 void ffsb_readfile(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum)
97 char *buf = ft_getbuf(ft);
    [all...]
fh.c 51 ffsb_thread_t * ft, ffsb_fs_t * fs, syscall_t sys)
56 if (!ft && !fs)
63 if (ft && ft_needs_stats(ft, sys))
64 ft_add_stat(ft, sys, value);
70 ffsb_thread_t * ft, ffsb_fs_t * fs)
74 int need_stats = ft_needs_stats(ft, SYS_OPEN) ||
90 do_stats(&start, &end, ft, fs, SYS_OPEN);
96 int fhopenread(char *filename, ffsb_thread_t * ft, ffsb_fs_t * fs)
103 return fhopenhelper(filename, "r", flags, ft, fs)
    [all...]
  /external/python/cpython2/Demo/turtle/
tdemo_fractalcurves.py 79 ft = CurvesTurtle()
81 ft.reset()
82 ft.speed(0)
83 ft.ht()
84 ft.tracer(1,0)
85 ft.pu()
88 ft.setpos(-33*size, -32*size)
89 ft.pd()
92 ft.fillcolor("red")
93 ft.fill(True
    [all...]
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
CompatTabListener.java 29 public void onTabSelected(CompatTab tab, FragmentTransaction ft);
35 public void onTabUnselected(CompatTab tab, FragmentTransaction ft);
41 public void onTabReselected(CompatTab tab, FragmentTransaction ft);
CompatTabHoneycomb.java 84 FragmentTransaction ft = mActivity.getSupportFragmentManager().beginTransaction(); local
85 ft.disallowAddToBackStack();
86 mCallback.onTabReselected(this, ft);
87 ft.commit();
92 FragmentTransaction ft = mActivity.getSupportFragmentManager().beginTransaction(); local
93 ft.disallowAddToBackStack();
94 mCallback.onTabSelected(this, ft);
95 ft.commit();
100 FragmentTransaction ft = mActivity.getSupportFragmentManager().beginTransaction(); local
101 ft.disallowAddToBackStack()
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/
SmsStorageLowWarningActivity.java 30 FragmentTransaction ft = getFragmentManager().beginTransaction(); local
33 ft.add(fragment, null/*tag*/);
34 ft.commit();
  /external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/
JCLLoggerAdapter.java 89 FormattingTuple ft = MessageFormatter.format(format, arg); local
90 log.trace(ft.getMessage(), ft.getThrowable());
112 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
113 log.trace(ft.getMessage(), ft.getThrowable());
131 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); local
132 log.trace(ft.getMessage(), ft.getThrowable());
185 FormattingTuple ft = MessageFormatter.format(format, arg) local
208 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
227 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); local
280 FormattingTuple ft = MessageFormatter.format(format, arg); local
304 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
323 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); local
375 FormattingTuple ft = MessageFormatter.format(format, arg); local
398 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
417 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); local
470 FormattingTuple ft = MessageFormatter.format(format, arg); local
493 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
512 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); local
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/graphics/tests/
FlatlandTestFuncTest.java 48 FlatlandTest ft = new FlatlandTest(); local
49 ft.parseResult(output);
51 String t = ft.mResultMap.get("16:10 Single Static Window 1280 x 800");
54 t = ft.mResultMap.get("16:10 Single Static Window 1920 x 1200");
57 t = ft.mResultMap.get("16:10 App -> Home Transition 1280 x 800");
60 t = ft.mResultMap.get("16:10 SurfaceView -> Home Transition 1280 x 800");
63 for(Map.Entry<String, String> entry: ft.mResultMap.entrySet()) {
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupActivity.java 40 final FragmentTransaction ft = getFragmentManager().beginTransaction(); local
41 ft.add(mSetupData, SETUP_DATA_FRAGMENT_TAG);
42 ft.commit();
52 final FragmentTransaction ft = getFragmentManager().beginTransaction(); local
53 ft.add(mSetupData, SETUP_DATA_FRAGMENT_TAG);
54 ft.commit();
  /external/valgrind/none/tests/amd64/
fma.c 7 } ft __attribute__((aligned (32))); variable in typeref:struct:float_test
31 __asm __volatile__ ("vfmadd132ss %2, %3, %0" : "=x" (w) : "0" (ft.x[i]), "x" (ft.y[i]), "x" (ft.z[i]));
32 thisres |= testf( w, ft.expected[i] );
33 __asm __volatile__ ("vfmadd132ss %2, %3, %0" : "=x" (w) : "0" (ft.x[i]), "m" (ft.y[i]), "x" (ft.z[i]));
34 thisres |= testf( w, ft.expected[i] );
35 __asm __volatile__ ("vfmadd213ss %3, %2, %0" : "=x" (w) : "0" (ft.x[i]), "x" (ft.y[i]), "x" (ft.z[i]))
    [all...]
  /external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
Log4jLoggerAdapter.java 128 FormattingTuple ft = MessageFormatter.format(format, arg); local
129 logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, ft.getMessage(), ft.getThrowable());
151 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
152 logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, ft.getMessage(), ft.getThrowable());
172 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); local
173 logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, ft.getMessage(), ft.getThrowable());
224 FormattingTuple ft = MessageFormatter.format(format, arg) local
247 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
267 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); local
318 FormattingTuple ft = MessageFormatter.format(format, arg); local
341 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
362 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); local
415 FormattingTuple ft = MessageFormatter.format(format, arg); local
438 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
459 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); local
512 FormattingTuple ft = MessageFormatter.format(format, arg); local
535 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
556 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); local
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
DialogFragment.java 143 FragmentTransaction ft = getContentFragmentTransaction(fragment); local
144 ft.commit();
163 FragmentTransaction ft = addActionFragmentToTransaction(fragment, null, addToBackStack, local
165 ft.commit();
195 FragmentTransaction ft = getContentFragmentTransaction(contentFragment); local
196 ft = addActionFragmentToTransaction(actionFragment, ft, addToBackStack,
198 ft.commit();
207 FragmentTransaction ft = fm.beginTransaction(); local
210 addAnimations(ft);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentMenuFragment.java 54 FragmentTransaction ft = fm.beginTransaction(); local
58 ft.add(mFragment1, "f1");
63 ft.add(mFragment2, "f2");
65 ft.commit();
88 FragmentTransaction ft = getChildFragmentManager().beginTransaction(); local
89 if (mCheckBox1.isChecked()) ft.show(mFragment1);
90 else ft.hide(mFragment1);
91 if (mCheckBox2.isChecked()) ft.show(mFragment2);
92 else ft.hide(mFragment2);
93 ft.commit()
    [all...]
FragmentMenu.java 56 FragmentTransaction ft = fm.beginTransaction(); local
60 ft.add(mFragment1, "f1");
65 ft.add(mFragment2, "f2");
67 ft.commit();
88 FragmentTransaction ft = getFragmentManager().beginTransaction(); local
89 if (mCheckBox1.isChecked()) ft.show(mFragment1);
90 else ft.hide(mFragment1);
91 if (mCheckBox2.isChecked()) ft.show(mFragment2);
92 else ft.hide(mFragment2);
93 ft.commit()
    [all...]
FragmentStackFragment.java 40 FragmentTransaction ft = getChildFragmentManager().beginTransaction(); local
41 ft.add(R.id.simple_fragment, newFragment).commit();
83 FragmentTransaction ft = getChildFragmentManager().beginTransaction(); local
84 ft.replace(R.id.simple_fragment, newFragment);
85 ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
86 ft.addToBackStack(null);
87 ft.commit();
FragmentNestingTabs.java 92 FragmentTransaction ft = mActivity.getFragmentManager().beginTransaction(); local
93 ft.detach(mFragment);
94 ft.commit();
98 public void onTabSelected(Tab tab, FragmentTransaction ft) {
101 ft.add(android.R.id.content, mFragment, mTag);
103 ft.attach(mFragment);
107 public void onTabUnselected(Tab tab, FragmentTransaction ft) {
109 ft.detach(mFragment);
113 public void onTabReselected(Tab tab, FragmentTransaction ft) {
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentMenuFragmentSupport.java 56 FragmentTransaction ft = fm.beginTransaction(); local
60 ft.add(mFragment1, "f1");
65 ft.add(mFragment2, "f2");
67 ft.commit();
90 FragmentTransaction ft = getChildFragmentManager().beginTransaction(); local
91 if (mCheckBox1.isChecked()) ft.show(mFragment1);
92 else ft.hide(mFragment1);
93 if (mCheckBox2.isChecked()) ft.show(mFragment2);
94 else ft.hide(mFragment2);
95 ft.commit()
    [all...]
FragmentMenuSupport.java 57 FragmentTransaction ft = fm.beginTransaction(); local
61 ft.add(mFragment1, "f1");
66 ft.add(mFragment2, "f2");
68 ft.commit();
89 FragmentTransaction ft = getSupportFragmentManager().beginTransaction(); local
90 if (mCheckBox1.isChecked()) ft.show(mFragment1);
91 else ft.hide(mFragment1);
92 if (mCheckBox2.isChecked()) ft.show(mFragment2);
93 else ft.hide(mFragment2);
94 ft.commit()
    [all...]
  /external/lzma/CPP/Windows/
TimeUtils.cpp 19 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &ft) throw()
22 return BOOLToBool(::DosDateTimeToFileTime((UInt16)(dosTime >> 16), (UInt16)(dosTime & 0xFFFF), &ft));
24 ft.dwLowDateTime = 0;
25 ft.dwHighDateTime = 0;
31 ft.dwLowDateTime = (UInt32)res;
32 ft.dwHighDateTime = (UInt32)(res >> 32);
44 bool FileTimeToDosTime(const FILETIME &ft, UInt32 &dosTime) throw()
49 if (!::FileTimeToDosDateTime(&ft, &datePart, &timePart))
51 dosTime = (ft.dwHighDateTime >= 0x01C00000) ? kHighDosTime : kLowDosTime;
59 UInt64 v64 = ft.dwLowDateTime | ((UInt64)ft.dwHighDateTime << 32);
    [all...]
  /external/libcxx/test/std/numerics/complex.number/cmplx.over/
UDT_is_rejected.fail.cpp 24 UDT<float> ft; variable
33 std::real(ft); // expected-error {{no matching function}}
40 std::imag(ft); // expected-error {{no matching function}}
47 std::arg(ft); // expected-error {{no matching function}}
54 std::norm(ft); // expected-error {{no matching function}}
61 std::conj(ft); // expected-error {{no matching function}}
68 std::proj(ft); // expected-error {{no matching function}}
  /external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
JDK14LoggerAdapter.java 96 FormattingTuple ft = MessageFormatter.format(format, arg); local
97 log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable());
119 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
120 log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable());
140 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); local
141 log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable());
195 FormattingTuple ft = MessageFormatter.format(format, arg) local
218 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
239 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); local
294 FormattingTuple ft = MessageFormatter.format(format, arg); local
317 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
338 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); local
396 FormattingTuple ft = MessageFormatter.format(format, arg); local
419 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
440 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); local
497 FormattingTuple ft = MessageFormatter.format(format, arg); local
520 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); local
541 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); local
    [all...]
  /external/libvncserver/compat/msvc/sys/
time.h 34 FILETIME ft; local
40 GetSystemTimeAsFileTime(&ft);
42 tmpres |= ft.dwHighDateTime;
44 tmpres |= ft.dwLowDateTime;
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.mptr/
p3.cpp 11 template<typename T> void ft(T& t) { function
23 ft(a); // expected-note{{in instantiation of function template specialization 'ft<A>' requested here}}
  /external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
MessageFormatterTest.java 274 FormattingTuple ft; local
279 ft = MessageFormatter.arrayFormat("Value {} is smaller than {} and {}.", ia);
280 assertEquals("Value 1 is smaller than 2 and 3.", ft.getMessage());
281 assertTrue(Arrays.equals(iaWitness, ft.getArgArray()));
282 assertEquals(t, ft.getThrowable());
284 ft = MessageFormatter.arrayFormat("{}{}{}", ia);
285 assertEquals("123", ft.getMessage());
286 assertTrue(Arrays.equals(iaWitness, ft.getArgArray()));
287 assertEquals(t, ft.getThrowable());
289 ft = MessageFormatter.arrayFormat("Value {} is smaller than {}.", ia)
    [all...]

Completed in 1098 milliseconds

1 2 3 4 5 6 7 8 91011>>