HomeSort by relevance Sort by last modified time
    Searched defs:newId (Results 1 - 25 of 59) sorted by null

1 2 3

  /packages/apps/Gallery2/src/com/android/gallery3d/data/
SnailSource.java 59 public static synchronized int newId() {
  /frameworks/base/core/java/android/service/notification/
Condition.java 158 public static Uri.Builder newId(Context context) {
  /packages/apps/Camera/src/com/android/camera/ui/
TimerSettingPopup.java 143 int newId = mNumberSpinner.getValue() + 1;
144 mPreference.setValueIndex(newId);
TimeIntervalPopup.java 153 int newId = mUnitSpinner.getValue() * (mNumberSpinner.getMaxValue() + 1)
155 mPreference.setValueIndex(newId);
  /external/srec/tools/grxmlcompile/
sub_grph.cpp 246 int newId;
255 newId= NewVertexId();
256 (void) CreateArc (inputLabel, tagLabel, lastId, newId);
257 lastId= newId;
271 int newId;
279 newId= NewVertexId();
280 (void) CreateArc (TAG_LABEL, tagLabel, lastId, newId);
281 lastId= newId;
sub_min.cpp 260 int fix, six, fmiss, smiss, nmatch, symTst, newId;
272 newId= -1;
280 if (newId == -1) {
281 newId= cache->QueryEntry (firstId, secondId);
282 if (newId < 0)
283 newId= NewVertexId ();
286 // printf ("Forming %d with %d and %d at %d\n", newId, firstId, secondId, baseId);
290 arc[forwardList[six]]->AssignToId (newId);
334 if (newId >= 0) {
337 MergeVertices (newId, firstId, secondId)
    [all...]
sub_phon.cpp 33 int ii, wordId, phoneId, currId, newId, nextId, arcCount;
59 newId= NewVertexId();
60 arcOne= CreateArc (NONE_LABEL, NONE_LABEL, arc[ii]->GetFromId(), newId);
64 arcOne= CreateArc (-wordId, wordId, newId, nextId);
66 // (void) CreateArc (-wordId, NONE_LABEL, arc[ii]->GetFromId(), newId);
69 // (void) CreateArc (WB_LABEL, wordId, newId, arc[ii]->GetToId());
79 newId= NewVertexId();
83 arcOne= CreateArc (phoneId, NONE_LABEL, currId, newId);
88 currId= newId;
158 int ii, currId, newId, arcCount, left, right, centre
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
TranslateLanguagePanel.java 152 int newId = ((SpinnerLanguageElement) spinner.getSelectedItem()).getLanguageId();
154 mSessionOptions.setSourceLanguage(newId);
156 mSessionOptions.setTargetLanguage(newId);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java 193 String newId = ensureIdMatchesType(element, mTypeFqcn, rootEdit);
195 if (oldId != null && newId != null) {
205 oldId, newId);
ChangeLayoutRefactoring.java 250 String newId = ensureIdMatchesType(layout, mTypeFqcn, rootEdit);
252 if (oldId != null && newId != null) {
259 mSelectionEnd, oldId, newId);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp     [all...]
  /frameworks/base/tools/aidl/
aidl.cpp 919 int newId = 0;
924 method_item->assigned_id = newId++;
    [all...]
  /external/deqp/modules/glshared/
glsLifetimeTests.cpp 1016 const GLuint newId = replaceName(elementType, elementId, log());
1017 const Name newElement (elementType, newId);
1019 attacher.initAttachment(newSeed, newId);
1024 attacher.attach(newId, *container);
1026 attacher.detach(newId, *container);
1098 const GLuint newId = replaceName(elementType, elementId, log());
1099 const Name newElement (elementType, newId);
1102 << "Creating a new object " << newId
1108 attacher.initAttachment(newSeed, newId);
1109 m_outputAttacher.drawAttachment(newId, newSurface)
    [all...]
  /frameworks/base/core/java/android/os/storage/
IMountService.java 391 public int renameSecureContainer(String oldId, String newId) throws RemoteException {
398 _data.writeString(newId);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
UserSwitcherController.java 280 int newId = UserHandle.USER_OWNER;
284 newId = info.id;
287 switchToUserId(newId);
  /packages/apps/Music/src/com/android/music/
MusicPicker.java 635 long newId = mCursor.getLong(mCursor.getColumnIndex(MediaStore.Audio.Media._ID));
636 mSelectedUri = ContentUris.withAppendedId(uri, newId);
638 mSelectedId = newId;
639 if (newId != mPlayingId || mMediaPlayer == null) {
648 mPlayingId = newId;
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
TwoPaneController.java 420 final long newId = conversation != null ? conversation.id : -1;
421 final boolean different = oldId != newId;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.cpp 767 void InspectorDOMAgent::setNodeName(ErrorString* errorString, int nodeId, const String& tagName, int* newId)
769 *newId = 0;
797 *newId = pushNodePathToFrontend(newElem.get());
799 pushChildNodesToFrontend(*newId);
839 int newId = pushNodePathToFrontend(newNode);
843 pushChildNodesToFrontend(newId);
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
SystemMediaRouteProvider.java 341 String newId = String.format(Locale.US, "%s_%d", id, i);
342 if (findSystemRouteRecordByDescriptorId(newId) < 0) {
343 return newId;
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 708 long newId = getId(results[recvIndex].uri);
709 mHostAuthKeyRecv = newId;
710 mHostAuthRecv.mId = newId;
713 long newId = getId(results[sendIndex].uri);
714 mHostAuthKeySend = newId;
715 mHostAuthSend.mId = newId;
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java     [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
transtst.cpp     [all...]
  /external/icu/icu4c/source/test/intltest/
transtst.cpp     [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java     [all...]
  /frameworks/base/services/appwidget/java/com/android/server/appwidget/
AppWidgetServiceImpl.java     [all...]

Completed in 1532 milliseconds

1 2 3