Home
last modified time | relevance | path

Searched refs:nextId (Results 1 – 17 of 17) sorted by relevance

/external/robolectric/src/test/java/com/xtremelabs/robolectric/
DR.java11 private static int nextId = 1234; field in R
14 public static final int time = nextId++;
15 public static final int title = nextId++;
16 public static final int subtitle = nextId++;
17 public static final int snippet_text = nextId++;
18 public static final int include_id = nextId++;
19 public static final int inner_text = nextId++;
20 public static final int map_view = nextId++;
21 public static final int true_checkbox = nextId++;
22 public static final int false_checkbox = nextId++;
[all …]
/external/srec/tools/grxmlcompile/
Dsub_grph.cpp494 int rix, nextId; in ProcessBegins() local
508 nextId= arc[forwardList[rix]]->GetToId(); in ProcessBegins()
509 if (nextId >= 0 && nextId != finalId && checkEntry (nodeList, currNum, nextId) < 0 in ProcessBegins()
510 && visitMark[nextId] == 0) in ProcessBegins()
511 ProcessBegins (nextId, finalId, procLabel, nodeList, currNum+1, visitMark, maxNum); in ProcessBegins()
566 int rix, nextId; in ProcessEnds() local
579 nextId= arc[backwardList[rix]]->GetFromId(); in ProcessEnds()
580 if (nextId != initialId && checkEntry (nodeList, currNum, nextId) < 0 in ProcessEnds()
581 && visitMark[nextId] == 0) in ProcessEnds()
582 ProcessEnds (nextId, initialId, procLabel, nodeList, currNum+1, visitMark, maxNum); in ProcessEnds()
[all …]
Dsub_base.cpp177 int rix, nextId, nextInp; in ReverseDepthData() local
187 nextId= arc[backwardList[rix]]->GetFromId(); in ReverseDepthData()
189 if (nextId >= 0 && nextInp != DISCARD_LABEL) in ReverseDepthData()
190 ReverseDepthData (nextId, depthMap, depth+1); in ReverseDepthData()
198 int rix, nextId, nextInp; in ForwardDepthData() local
208 nextId= arc[forwardList[rix]]->GetToId(); in ForwardDepthData()
210 if (nextId >= 0 && nextInp != DISCARD_LABEL) in ForwardDepthData()
211 ForwardDepthData (nextId, depthMap, depth+1); in ForwardDepthData()
Dsub_min.cpp159 int rix, rixBegin, nextId; in CheckForChangeAndResort() local
167 nextId= arc[forwardList[rix]]->GetToId(); in CheckForChangeAndResort()
168 if (nextId >= 0 && mapList[nextId] != nextId) { in CheckForChangeAndResort()
170 arc[forwardList[rix]]->AssignToId(mapList[nextId]); in CheckForChangeAndResort()
Dsub_phon.cpp33 int ii, wordId, phoneId, currId, newId, nextId, arcCount; in ExpandPhonemes() local
62 nextId= NewVertexId(); in ExpandPhonemes()
64 arcOne= CreateArc (-wordId, wordId, newId, nextId); in ExpandPhonemes()
67 arcOne= CreateArc (WB_LABEL, NONE_LABEL, nextId, arc[ii]->GetToId()); in ExpandPhonemes()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DSnippetStorage.js114 var nextId = this._lastSnippetIdentifierSetting.get() + 1;
115 var snippetId = String(nextId);
116 this._lastSnippetIdentifierSetting.set(nextId);
DContextMenu.js47 this._id = topLevelMenu.nextId();
199 nextId: function() method in WebInspector.ContextMenu
DJSHeapSnapshot.js58 var nextId = nodes[nodeIndex];
60 if (nextId % 2 === 0)
/external/nist-sip/java/gov/nist/javax/sip/parser/
DExpiresParser.java72 String nextId = lexer.getNextId(); in parse() local
75 int delta = Integer.parseInt(nextId); in parse()
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
DAbstractKernel.java55 private AtomicLong nextId = new AtomicLong(1); field in AbstractKernel
82 return nextId.getAndIncrement(); in nextEndpointId()
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
DSessionExpiresParser.java43 String nextId = lexer.getNextId(); in parse() local
46 int delta = Integer.parseInt(nextId); in parse()
DMinSEParser.java47 String nextId = lexer.getNextId(); in parse() local
49 int delta = Integer.parseInt(nextId); in parse()
/external/chromium_org/native_client_sdk/src/build_tools/screenshot_extension/
Dscreenshot.js15 var nextId = 0;
29 var id = nextId++;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowContentResolver.java290 public void setNextDatabaseIdForInserts(int nextId) {
291 nextDatabaseIdForInserts = nextId;
294 public void setNextDatabaseIdForUpdates(int nextId) {
295 nextDatabaseIdForUpdates = nextId;
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/
DSerializer.java72 private static short nextId = -1; field in Serializer
185 if (classId == 0) classId = --nextId; in registerClass()
266 id = --nextId; in registerClass()
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
DDefaultServer.java68 private AtomicInteger nextId = new AtomicInteger(0); field in DefaultServer
451 id = nextId.getAndIncrement(); in Connection()
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableSortedSetTest.java247 static int nextId; field in ImmutableSortedSetTest.Impl
248 Integer id = nextId++;