HomeSort by relevance Sort by last modified time
    Searched defs:bob (Results 1 - 24 of 24) sorted by null

  /external/clang/test/CodeGen/
2006-03-03-MissingInitializer.c 8 struct X bob = { &nate, 14 }; local
9 bar(&bob);
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
Player.java 123 MediaMetadataCompat.Builder bob = new MediaMetadataCompat.Builder(); local
124 bob.putString(MediaMetadataCompat.METADATA_KEY_DISPLAY_TITLE, currentItem.getTitle());
125 bob.putString(MediaMetadataCompat.METADATA_KEY_DISPLAY_SUBTITLE, "Subtitle of the thing");
126 bob.putString(MediaMetadataCompat.METADATA_KEY_DISPLAY_DESCRIPTION,
128 bob.putBitmap(MediaMetadataCompat.METADATA_KEY_DISPLAY_ICON, getSnapshot());
129 mMediaSession.setMetadata(bob.build());
136 PlaybackStateCompat.Builder bob = new PlaybackStateCompat.Builder(); local
137 bob.setActions(PLAYBACK_ACTIONS);
140 bob.setState(PlaybackStateCompat.STATE_PLAYING, -1, 1);
144 bob.setState(PlaybackStateCompat.STATE_PAUSED, -1, 0)
    [all...]
  /external/guice/core/test/com/google/inject/spi/
ProviderMethodsTest.java 67 * @author crazybob@google.com (Bob Lee)
75 Bob bob = injector.getInstance(Bob.class); local
76 assertEquals("A Bob", bob.getName());
78 Bob clone = injector.getInstance(Bob.class);
79 assertEquals("A Bob", clone.getName());
81 assertNotSame(bob, clone)
    [all...]
  /external/clang/test/Sema/
warn-shadow.c 52 extern int bob; // expected-note {{previous declaration is here}}
56 extern int bob; // don't warn for shadowing.
60 int bob; // expected-warning {{declaration shadows a variable in the global scope}} local
  /external/libbrillo/brillo/
osrelease_reader_unittest.cc 42 string bob = "bob"; local
43 string osreleasecontent = "TEST_KEY=bonjour\nNAME=bob\n";
71 ASSERT_EQ(bob, name_value);
  /external/clang/test/SemaCXX/
warn-shadow.cpp 90 extern int bob; // expected-note {{previous declaration is here}}
94 extern int bob; // don't warn for shadowing.
98 int bob; // expected-warning {{declaration shadows a variable in the global namespace}} local
  /device/sample/apps/LeanbackCustomizer/src/com/google/android/leanbacklauncher/partnercustomizer/
PartnerReceiver.java 121 Notification.Builder bob = new Notification.Builder(mContext); local
125 bob.setContentTitle(mContext.getString(titleId))
135 mNotifMan.notify(id, bob.build());
  /frameworks/base/tests/OneMedia/src/com/android/onemedia/
PlayerSession.java 141 PlaybackState.Builder bob = new PlaybackState.Builder(mPlaybackState); local
142 bob.setState(newState, position, rate, SystemClock.elapsedRealtime());
143 bob.setErrorMessage(null);
144 mPlaybackState = bob.build();
167 PlaybackState.Builder bob = new PlaybackState.Builder(mPlaybackState); local
168 bob.setState(PlaybackState.STATE_ERROR, -1, 0, 0);
170 bob.setErrorMessage(error.getLocalizedMessage());
172 mPlaybackState = bob.build();
212 PlaybackState.Builder bob = new PlaybackState.Builder(mPlaybackState); local
213 bob.setState(pbState, position, rate, SystemClock.elapsedRealtime())
230 PlaybackState.Builder bob = new PlaybackState.Builder(mPlaybackState); local
    [all...]
PlayerController.java 117 RequestUtils.ContentBuilder bob = new RequestUtils.ContentBuilder(); local
118 bob.setSource(source);
120 mBinder.sendRequest(RequestUtils.ACTION_SET_CONTENT, bob.build(), null);
127 RequestUtils.ContentBuilder bob = new RequestUtils.ContentBuilder(); local
128 bob.setSource(source);
130 mBinder.sendRequest(RequestUtils.ACTION_SET_NEXT_CONTENT, bob.build(), null);
  /frameworks/support/media/api21/android/support/v4/media/session/
MediaSessionCompatApi21.java 77 AudioAttributes.Builder bob = new AudioAttributes.Builder(); local
78 bob.setLegacyStreamType(stream);
79 ((MediaSession) sessionObj).setPlaybackToLocal(bob.build());
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/newavrcp/
BrowserPlayerWrapperTest.java 163 MediaDescription.Builder bob = new MediaDescription.Builder(); local
164 bob.setTitle("test_song1");
165 bob.setMediaId("ts1");
166 items.add(new MediaItem(bob.build(), 0));
167 bob.setTitle("test_song2");
168 bob.setMediaId("ts2");
169 items.add(new MediaItem(bob.build(), 0));
  /frameworks/base/media/java/android/media/
RemoteControlClient.java 688 PlaybackState.Builder bob = new PlaybackState.Builder(mSessionPlaybackState); local
689 bob.setState(pbState, position, playbackSpeed, SystemClock.elapsedRealtime());
690 bob.setErrorMessage(null);
691 mSessionPlaybackState = bob.build();
719 PlaybackState.Builder bob = new PlaybackState.Builder(mSessionPlaybackState); local
720 bob.setActions(
722 mSessionPlaybackState = bob.build();
    [all...]
MediaMetadata.java 602 MediaDescription.Builder bob = new MediaDescription.Builder(); local
603 bob.setMediaId(mediaId);
604 bob.setTitle(text[0]);
605 bob.setSubtitle(text[1]);
606 bob.setDescription(text[2]);
607 bob.setIconBitmap(icon);
608 bob.setIconUri(iconUri);
609 bob.setMediaUri(mediaUri);
614 bob.setExtras(bundle);
616 mDescription = bob.build()
    [all...]
MediaRouter.java 2371 AudioAttributes.Builder bob = new AudioAttributes.Builder(); local
    [all...]
  /frameworks/base/media/java/android/media/session/
PlaybackState.java 327 StringBuilder bob = new StringBuilder("PlaybackState {"); local
328 bob.append("state=").append(mState);
329 bob.append(", position=").append(mPosition);
330 bob.append(", buffered position=").append(mBufferedPosition);
331 bob.append(", speed=").append(mSpeed);
332 bob.append(", updated=").append(mUpdateTime);
333 bob.append(", actions=").append(mActions);
334 bob.append(", custom actions=").append(mCustomActions);
335 bob.append(", active item id=").append(mActiveItemId);
336 bob.append(", error=").append(mErrorMessage)
    [all...]
  /frameworks/support/media/src/main/java/android/support/v4/media/
MediaDescriptionCompat.java 331 Object bob = MediaDescriptionCompatApi21.Builder.newInstance(); local
332 MediaDescriptionCompatApi21.Builder.setMediaId(bob, mMediaId);
333 MediaDescriptionCompatApi21.Builder.setTitle(bob, mTitle);
334 MediaDescriptionCompatApi21.Builder.setSubtitle(bob, mSubtitle);
335 MediaDescriptionCompatApi21.Builder.setDescription(bob, mDescription);
336 MediaDescriptionCompatApi21.Builder.setIconBitmap(bob, mIcon);
337 MediaDescriptionCompatApi21.Builder.setIconUri(bob, mIconUri);
350 MediaDescriptionCompatApi21.Builder.setExtras(bob, extras);
352 MediaDescriptionCompatApi23.Builder.setMediaUri(bob, mMediaUri);
354 mDescriptionObj = MediaDescriptionCompatApi21.Builder.build(bob);
373 Builder bob = new Builder(); local
    [all...]
MediaMetadataCompat.java 529 MediaDescriptionCompat.Builder bob = new MediaDescriptionCompat.Builder(); local
530 bob.setMediaId(mediaId);
531 bob.setTitle(text[0]);
532 bob.setSubtitle(text[1]);
533 bob.setDescription(text[2]);
534 bob.setIconBitmap(icon);
535 bob.setIconUri(iconUri);
536 bob.setMediaUri(mediaUri);
548 bob.setExtras(bundle);
550 mDescription = bob.build()
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
AddressedMediaPlayer.java 141 MediaDescription.Builder bob = new MediaDescription.Builder(); local
145 bob.setMediaId(desc.getMediaId());
146 bob.setTitle(desc.getTitle());
147 bob.setSubtitle(desc.getSubtitle());
148 bob.setDescription(desc.getDescription());
150 bob.setExtras(fillBundle(metadata, desc.getExtras()));
153 MediaSession.QueueItem current = new QueueItem(bob.build(), SINGLE_QID);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
AttentionManagementVerifierActivity.java 64 private static final String BOB = "Bob";
66 private static final String BOB_EMAIL = "bob@_foo._bar";
194 insertSingleContact(BOB, BOB_PHONE, BOB_EMAIL, false);
215 Log.i("InsertContactsTest", "Bob is: " + mBobUri);
283 } else if (BOB.equals(tag)) {
284 found.add(BOB);
343 } else if (BOB.equals(tag)) {
344 found.add(BOB);
402 } else if (BOB.equals(tag))
1008 Notification.Builder bob = new Notification.Builder(mContext, channelId) local
1060 Notification.Builder bob = new Notification.Builder(mContext, channelId) local
1099 Notification.Builder bob = new Notification.Builder(mContext, local
    [all...]
  /frameworks/support/media/src/main/java/android/support/v4/media/session/
PlaybackStateCompat.java 587 StringBuilder bob = new StringBuilder("PlaybackState {"); local
588 bob.append("state=").append(mState);
589 bob.append(", position=").append(mPosition);
590 bob.append(", buffered position=").append(mBufferedPosition);
591 bob.append(", speed=").append(mSpeed);
592 bob.append(", updated=").append(mUpdateTime);
593 bob.append(", actions=").append(mActions);
594 bob.append(", error code=").append(mErrorCode);
595 bob.append(", error message=").append(mErrorMessage);
596 bob.append(", custom actions=").append(mCustomActions)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
DayView.java 2818 SpannableStringBuilder bob = new SpannableStringBuilder(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/input/
InputManagerService.java 1300 StringBuilder bob = new StringBuilder(); local
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 1094 StringBuilder bob = new StringBuilder(); local
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java 2532 StringBuilder bob = new StringBuilder(); local
    [all...]

Completed in 1117 milliseconds