HomeSort by relevance Sort by last modified time
    Searched refs:tv (Results 201 - 225 of 606) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/linux/
ktime.h 27 } tv; member in union:__anon39549
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/linux/
ktime.h 27 } tv; member in union:__anon39997
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/
ktime.h 27 } tv; member in union:__anon40358
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/
ktime.h 27 } tv; member in union:__anon40716
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/
ktime.h 27 } tv; member in union:__anon41074
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/
ktime.h 27 } tv; member in union:__anon41435
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/
ktime.h 27 } tv; member in union:__anon41828
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/
ktime.h 27 } tv; member in union:__anon42274
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/
ktime.h 27 } tv; member in union:__anon42722
  /system/core/fastboot/
usbtest.c 43 struct timeval tv; local
44 gettimeofday(&tv, 0);
46 return (((long long) tv.tv_sec) * ((long long) 1000000)) +
47 (((long long) tv.tv_usec));
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentAlertDialog.java 43 View tv = findViewById(R.id.text); local
44 ((TextView)tv).setText("Example of displaying an alert dialog with a DialogFragment");
FragmentDialogOrActivity.java 76 View tv = v.findViewById(R.id.text); local
77 ((TextView)tv).setText("This is an instance of MyDialogFragment");
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentAlertDialogSupport.java 44 View tv = findViewById(R.id.text); local
45 ((TextView)tv).setText("Example of displaying an alert dialog with a DialogFragment");
FragmentDialogOrActivitySupport.java 75 View tv = v.findViewById(R.id.text); local
76 ((TextView)tv).setText("This is an instance of MyDialogFragment");
  /external/dropbear/libtomcrypt/
build.sh 8 ((./test >test_std.txt 2>test_err.txt && ./tv_gen > tv.txt) && echo "$1 test passed." && echo "y" > testok.txt) || (echo "$1 test failed" && cat test_err.txt && exit 1)
  /external/replicaisland/src/com/replica/replicaisland/
ConversationDialogActivity.java 76 TypewriterTextView tv = (TypewriterTextView)findViewById(R.id.typewritertext); local
77 tv.setParentActivity(this);
153 TypewriterTextView tv = (TypewriterTextView)findViewById(R.id.typewritertext); local
155 if (tv.getRemainingTime() > 0) {
156 tv.snapToEnd();
176 TypewriterTextView tv = (TypewriterTextView)findViewById(R.id.typewritertext); local
177 tv.setTypewriterText(page.text);
182 tv.setOkArrow(mOkArrow);
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedRotateDrawable.java 228 TypedValue tv = a.peekValue(R.styleable.AnimatedRotateDrawable_pivotX); local
229 final boolean pivotXRel = tv.type == TypedValue.TYPE_FRACTION;
230 final float pivotX = pivotXRel ? tv.getFraction(1.0f, 1.0f) : tv.getFloat();
232 tv = a.peekValue(R.styleable.AnimatedRotateDrawable_pivotY);
233 final boolean pivotYRel = tv.type == TypedValue.TYPE_FRACTION;
234 final float pivotY = pivotYRel ? tv.getFraction(1.0f, 1.0f) : tv.getFloat();
  /frameworks/base/core/java/android/preference/
PreferenceActivity.java 796 TypedValue tv = sa.peekValue( local
798 if (tv != null && tv.type == TypedValue.TYPE_STRING) {
799 if (tv.resourceId != 0) {
800 header.titleRes = tv.resourceId;
802 header.title = tv.string;
805 tv = sa.peekValue(
807 if (tv != null && tv.type == TypedValue.TYPE_STRING) {
808 if (tv.resourceId != 0)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
BaseAdapter.java 158 TextView tv = new TextView(context); local
159 tv.setText("Unable to find layout: " + dataBindingItem.getViewReference().getName());
160 view = tv;
186 TextView tv = (TextView) view; local
192 resolvedRef, ViewAttribute.TEXT, tv.getText().toString());
199 tv.setText((String) value);
  /external/strace/
util.c 119 tv_float(tv)
120 struct timeval *tv;
122 return tv->tv_sec + tv->tv_usec/1000000.0;
126 tv_add(tv, a, b)
127 struct timeval *tv, *a, *b;
129 tv->tv_sec = a->tv_sec + b->tv_sec;
130 tv->tv_usec = a->tv_usec + b->tv_usec;
131 if (tv->tv_usec >= 1000000) {
132 tv->tv_sec++
    [all...]
  /external/v8/src/
platform-posix.cc 180 struct timeval tv; local
181 if (gettimeofday(&tv, NULL) < 0) return 0.0;
182 return (static_cast<double>(tv.tv_sec) * 1000) +
183 (static_cast<double>(tv.tv_usec) / 1000);
189 struct timeval tv; local
190 if (gettimeofday(&tv, NULL) < 0)
192 return (static_cast<int64_t>(tv.tv_sec) * 1000000) + tv.tv_usec;
198 time_t tv = static_cast<time_t>(floor(time/msPerSecond));
199 struct tm* t = localtime(&tv);
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
RecentApplicationsDialog.java 305 final TextView tv = mIcons[index]; local
306 tv.setText(title);
308 tv.setCompoundDrawables(null, icon, null, null);
312 tv.setTag(tag);
313 tv.setVisibility(View.VISIBLE);
314 tv.setPressed(false);
315 tv.clearFocus();
  /external/libnfc-nxp/Linux_x86/
phDal4Nfc_uart.c 300 struct timeval tv; local
321 ptv = &tv;
325 ptv = &tv;
335 tv = timeval_remaining(timeout);
336 ptv = &tv;
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
OMX_AacEnc_CompThread.c 78 struct timespec tv; local
108 tv.tv_sec = 1;
109 tv.tv_nsec = 0;
115 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set);
117 status = select (fdmax+1, &rfds, NULL, NULL, &tv);
  /external/chromium/third_party/libevent/
evutil.h 169 #define evutil_gettimeofday(tv, tz) gettimeofday((tv), (tz))
172 int evutil_gettimeofday(struct timeval *tv, struct timezone *tz);

Completed in 313 milliseconds

1 2 3 4 5 6 7 891011>>