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

1 2 3

  /external/srec/tools/grxmlcompile/
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...]
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_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;
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
ui_unittests.js 151 var id = statusArea.newId();
165 var secondId = secondStatusArea.newId();
controllers.js 36 var id = statusView.newId();
82 var id = statusView.newId();
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 124 public static boolean renameSdDir(String oldId, String newId) {
126 int rc = getMountService().renameSecureContainer(oldId, newId);
129 newId + "with rc " + rc);
134 Log.i(TAG, "Failed ot rename " + oldId + " to " + newId +
  /hardware/libhardware_legacy/include/hardware_legacy/
IMountService.h 56 virtual int renameSecureContainer(String16 oldId, String16 newId) = 0;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
SnailSource.java 59 public static synchronized int newId() {
  /packages/apps/Camera/src/com/android/camera/ui/
TimeIntervalPopup.java 153 int newId = mUnitSpinner.getValue() * (mNumberSpinner.getMaxValue() + 1)
155 mPreference.setValueIndex(newId);
TimerSettingPopup.java 143 int newId = mNumberSpinner.getValue() + 1;
144 mPreference.setValueIndex(newId);
  /packages/apps/Camera2/src/com/android/camera/ui/
TimeIntervalPopup.java 169 int newId = mUnitSpinner.getValue() * (mNumberSpinner.getMaxValue() + 1)
171 mPreference.setValueIndex(newId);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 784 long newId = getId(results[recvIndex].uri);
785 mHostAuthKeyRecv = newId;
786 mHostAuthRecv.mId = newId;
789 long newId = getId(results[sendIndex].uri);
790 mHostAuthKeySend = newId;
791 mHostAuthSend.mId = newId;
    [all...]
  /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);
  /frameworks/base/include/storage/
IMountService.h 59 const String16& newId) = 0;
  /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;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DependencyGraph.java 301 static String describePath(List<Constraint> path, String newName, String newId) {
312 BaseLayoutRule.stripIdPrefix(newId));
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 894 static bool checkNeedsStyleInvalidationForIdChange(const AtomicString& oldId, const AtomicString& newId, const RuleFeatureSet& features)
896 ASSERT(newId != oldId);
899 if (!newId.isEmpty() && features.hasSelectorForId(newId))
928 AtomicString newId = makeIdForStyleResolution(newValue, document()->inQuirksMode());
929 if (newId != oldId) {
930 elementData()->setIdForStyleResolution(newId);
931 shouldInvalidateStyle = testShouldInvalidateStyle && checkNeedsStyleInvalidationForIdChange(oldId, newId, styleResolver->ruleFeatureSet());
    [all...]
Element.h 79 void setIdForStyleResolution(const AtomicString& newId) const { m_idForStyleResolution = newId; }
724 void updateId(const AtomicString& oldId, const AtomicString& newId);
725 void updateId(TreeScope*, const AtomicString& oldId, const AtomicString& newId);
    [all...]
  /frameworks/base/core/java/android/os/storage/
IMountService.java 390 public int renameSecureContainer(String oldId, String newId) throws RemoteException {
397 _data.writeString(newId);
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
intermediate.h 351 void setId(int newId) { id = newId; }
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
TwoPaneController.java 312 final long newId = conversation != null ? conversation.id : -1;
313 final boolean different = oldId != newId;
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManager.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.cpp 743 void InspectorDOMAgent::setNodeName(ErrorString* errorString, int nodeId, const String& tagName, int* newId)
745 *newId = 0;
773 *newId = pushNodePathToFrontend(newElem.get());
775 pushChildNodesToFrontend(*newId);
814 int newId = pushNodePathToFrontend(newNode);
818 pushChildNodesToFrontend(newId);
    [all...]
  /frameworks/base/libs/storage/
IMountService.cpp 345 int32_t renameSecureContainer(const String16& oldId, const String16& newId)
350 data.writeString16(newId);

Completed in 1028 milliseconds

1 2 3