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

  /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;
sub_grph.h 261 void MergeVertices (int newId, int firstId, int secondId);
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 117 public static boolean renameSdDir(String oldId, String newId) {
119 int rc = getMountService().renameSecureContainer(oldId, newId);
122 newId + "with rc " + rc);
127 Log.i(TAG, "Failed ot rename " + oldId + " to " + newId +
  /external/webkit/WebCore/html/
HTMLAppletElement.cpp 67 const AtomicString& newId = attr->value();
71 document->addExtraNamedItem(newId);
73 m_id = newId;
HTMLImageElement.cpp 135 const AtomicString& newId = attr->value();
139 document->addExtraNamedItem(newId);
141 m_id = newId;
HTMLObjectElement.cpp 109 const AtomicString& newId = attr->value();
113 document->addExtraNamedItem(newId);
115 m_id = newId;
  /external/webkit/WebCore/dom/
NamedAttrMap.h 89 void setID(const AtomicString& newId) { m_id = newId; }
NamedAttrMap.cpp 221 Attribute* newId = other.getAttributeItem(m_element->idAttributeName());
223 if (oldId || newId)
224 m_element->updateId(oldId ? oldId->value() : nullAtom, newId ? newId->value() : nullAtom);
Element.h 225 void updateId(const AtomicString& oldId, const AtomicString& newId);
368 inline void Element::updateId(const AtomicString& oldId, const AtomicString& newId)
373 if (oldId == newId)
379 if (!newId.isEmpty())
380 doc->addElementById(newId, this);
Element.cpp 641 Attribute* newId = list ? list->getAttributeItem(idName) : 0;
643 if (oldId || newId)
644 updateId(oldId ? oldId->value() : nullAtom, newId ? newId->value() : nullAtom);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
BaseLayout.groovy 225 String newId = null;
257 newId = value;
262 if (newId != null && oldText == oldId) {
263 newNode.setAttribute(ANDROID_URI, ATTR_TEXT, newId);
  /hardware/libhardware_legacy/include/hardware_legacy/
IMountService.h 56 virtual int renameSecureContainer(String16 oldId, String16 newId) = 0;
  /frameworks/base/include/storage/
IMountService.h 57 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;
  /packages/apps/DeskClock/src/com/android/deskclock/
SetAlarm.java 155 int newId = mId;
159 Alarms.deleteAlarm(SetAlarm.this, newId);
  /frameworks/base/core/java/android/os/storage/
IMountService.java 387 public int renameSecureContainer(String oldId, String newId) throws RemoteException {
394 _data.writeString(newId);
    [all...]
  /frameworks/base/libs/storage/
IMountService.cpp 341 int32_t renameSecureContainer(const String16& oldId, const String16& newId)
346 data.writeString16(newId);
  /packages/apps/Email/src/com/android/email/provider/
EmailContent.java     [all...]
  /external/chromium/third_party/icu/source/test/intltest/
transtst.cpp     [all...]
  /external/icu4c/test/intltest/
transtst.cpp     [all...]
  /frameworks/base/services/java/com/android/server/
MountService.java     [all...]

Completed in 2466 milliseconds