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

  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 92 String nextLabel = prefixPath == null ? labelPath[0] : labelPath[prefixPath.length];
95 addItem(myData, nextLabel, activityIntent(
99 if (entries.get(nextLabel) == null) {
100 addItem(myData, nextLabel, browseIntent(prefix.equals("") ? nextLabel : prefix + "/" + nextLabel));
101 entries.put(nextLabel, true);
  /development/samples/Support13Demos/src/com/example/android/supportv13/
Support13Demos.java 92 String nextLabel = prefixPath == null ? labelPath[0] : labelPath[prefixPath.length];
95 addItem(myData, nextLabel, activityIntent(
99 if (entries.get(nextLabel) == null) {
100 addItem(myData, nextLabel, browseIntent(prefix.equals("") ? nextLabel : prefix + "/" + nextLabel));
101 entries.put(nextLabel, true);
  /development/samples/Support4Demos/src/com/example/android/supportv4/
Support4Demos.java 92 String nextLabel = prefixPath == null ? labelPath[0] : labelPath[prefixPath.length];
95 addItem(myData, nextLabel, activityIntent(
99 if (entries.get(nextLabel) == null) {
100 addItem(myData, nextLabel, browseIntent(prefix.equals("") ? nextLabel : prefix + "/" + nextLabel));
101 entries.put(nextLabel, true);
  /development/samples/Support7Demos/src/com/example/android/supportv7/
Support7Demos.java 92 String nextLabel = prefixPath == null ? labelPath[0] : labelPath[prefixPath.length];
95 addItem(myData, nextLabel, activityIntent(
99 if (entries.get(nextLabel) == null) {
100 addItem(myData, nextLabel, browseIntent(
101 prefix.equals("") ? nextLabel : prefix + "/" + nextLabel));
102 entries.put(nextLabel, true);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
HwTests.java 95 String nextLabel = prefixPath == null ? labelPath[0] : labelPath[prefixPath.length];
98 addItem(myData, nextLabel, activityIntent(
102 if (entries.get(nextLabel) == null) {
103 addItem(myData, nextLabel, browseIntent(prefix.equals("") ?
104 nextLabel : prefix + "/" + nextLabel));
105 entries.put(nextLabel, true);
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
VectorDrawableTest.java 94 String nextLabel = prefixPath == null ? labelPath[0] : labelPath[prefixPath.length];
97 addItem(myData, nextLabel, activityIntent(
101 if (entries.get(nextLabel) == null) {
102 addItem(myData, nextLabel, browseIntent(prefix.equals("") ?
103 nextLabel : prefix + "/" + nextLabel));
104 entries.put(nextLabel, true);
  /pdk/apps/HelloPDK/src/com/example/android/helloPDK/
MainActivity.java 93 String nextLabel = prefixPath ==
97 addItem(myData, nextLabel, activityIntent(
101 if (entries.get(nextLabel) == null) {
102 addItem(myData, nextLabel, browseIntent(prefix.equals("") ?
103 nextLabel : prefix + "/" + nextLabel));
104 entries.put(nextLabel, true);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
trie_map.cpp 314 const int nextLabel = getLabel(hashedKey, level + 1);
315 if (conflictedKeyNextLabel == nextLabel) {
324 const Entry newBitmapEntry(setExist(0 /* bitmap */, nextLabel), newTableIndex);
335 if (nextLabel < conflictedKeyNextLabel) {
342 } else { // nextLabel > conflictedKeyNextLabel
351 setExist(setExist(0 /* bitmap */, nextLabel), conflictedKeyNextLabel);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopTranslator.java 226 int nextLabel = (nextI == order.length) ? -1 : order[nextI];
227 outputBlock(blocks.labelToBlock(order[i]), nextLabel);
236 * @param nextLabel {@code >= -1;} the next block that will be processed, or
239 private void outputBlock(BasicBlock block, int nextLabel) {
271 if ((succ >= 0) && (succ != nextLabel)) {
278 (block.getSecondarySuccessor() == nextLabel)) {