/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
FatType.java | 116 private final String label; field in class:FatType 120 long bitMask, float entrySize, String label) { 127 this.label = label; 149 * @return the boot sector label for this FAT type 152 return this.label;
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
Code.java | 85 * {@code int} primitives. This comparison takes a {@link Label} that 94 * Basic control flow is expressed using jumps and labels. Each label must be 95 * marked exactly once and may be jumped to any number of times. Create a label 96 * using its constructor: {@code new Label()}, and mark it using {@link #mark 97 * mark(Label)}. All jumps to a label will execute instructions starting from 98 * that label. You can jump to a label that hasn't yet been marked (jumping 99 * forward) or to a label that has already been marked (jumping backward). Jump 100 * unconditionally with {@link #jump jump(Label)} or conditionally based on 882 Label label = i.next(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/ |
MarginChooser.java | 30 import org.eclipse.swt.widgets.Label; 52 private Label mErrorLabel; 83 @SuppressWarnings("unused") // SWT constructors have side effects, "new Label" is not unused. 91 Label allLabel = new Label(container, SWT.NONE); 103 Label label = new Label(container, SWT.SEPARATOR | SWT.HORIZONTAL); local 104 label.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, false, 3, 1)); 106 Label leftLabel = new Label(container, SWT.NONE) [all...] |
/art/compiler/optimizing/ |
code_generator_x86.h | 267 Label* fixup_label = nullptr); 407 Label* NewPcRelativeDexCacheArrayPatch(const DexFile& dex_file, uint32_t element_offset); 423 Label* GetLabelOf(HBasicBlock* block) const { 424 return CommonGetLabelOf<Label>(block_labels_, block); 428 block_labels_ = CommonInitializeLabels<Label>(); 437 Label* GetFrameEntryLabel() { return &frame_entry_label_; } 570 : target_dex_file(dex_file), element_offset(element_off), label() { } 574 // NOTE: Label is bound to the end of the instruction that has an embedded 32-bit offset. 575 Label label; member in struct:art::x86::CodeGeneratorX86::PcRelativeDexCacheAccessInfo [all...] |
code_generator_x86_64.h | 262 Label* fixup_label = nullptr); 374 Label* GetLabelOf(HBasicBlock* block) const { 375 return CommonGetLabelOf<Label>(block_labels_, block); 379 block_labels_ = CommonInitializeLabels<Label>(); 402 Label* NewPcRelativeDexCacheArrayPatch(const DexFile& dex_file, uint32_t element_offset); 542 : target_dex_file(dex_file), element_offset(element_off), label() { } 546 Label label; member in struct:art::x86_64::CodeGeneratorX86_64::PcRelativeDexCacheAccessInfo 550 Label* block_labels_; // Indexed by block id. 551 Label frame_entry_label_ [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
MixedItemSection.java | 243 String label = item.toHuman(); local 244 index.put(label, item); 255 String label = entry.getKey(); local 257 out.annotate(0, item.offsetString() + ' ' + label + '\n');
|
/dalvik/dx/junit-tests/com/android/dx/util/ |
BitsTest.java | 23 assertEquals(label(0), 0, Bits.makeBitSet(0).length); 26 assertEquals(label(i), 1, Bits.makeBitSet(i).length); method 30 assertEquals(label(i), 2, Bits.makeBitSet(i).length); method 38 assertEquals(label(i), expect, Bits.makeBitSet(i).length); method 48 assertEquals(label(i), expect * 32, method 57 assertFalse(label(i), Bits.get(bits, i)); method 68 assertTrue(label(i), Bits.get(bits, i)); method 81 assertTrue(label(i), Bits.get(bits, i) == expect); method 98 assertEquals(label(1), 0x41, bits[0]); 99 assertEquals(label(2), 0xfffffbf7, bits[1]) 126 assertTrue(label(i), Bits.get(bits, i) == expect); method 141 assertTrue(label(i), Bits.get(bits, i) == expect); method 159 assertTrue(label(i), Bits.get(bits, i) == expect); method 165 assertTrue(label(i), Bits.isEmpty(new int[i])); method 178 assertFalse(label(i), Bits.isEmpty(bits)); method 184 assertEquals(label(i), 0, Bits.bitCount(new int[i])); method 208 assertEquals(label(i), count, Bits.bitCount(bits)); method 216 assertFalse(label(i), Bits.anyInRange(bits, 0, i)); method 224 assertFalse(label(i), Bits.anyInRange(bits, i, 100)); method 232 assertFalse(label(i), Bits.anyInRange(bits, i, 100 - i)); method 243 assertTrue(label(i), Bits.anyInRange(bits, 0, i)); method 254 assertTrue(label(i), Bits.anyInRange(bits, i, 100)); method 265 assertTrue(label(i), Bits.anyInRange(bits, i, 100 - i)); method 273 assertEquals(label(i), -1, Bits.findFirst(bits, i)); method 284 assertEquals(label(i), i, Bits.findFirst(bits, i)); method 300 assertEquals(label(i), i + 5, Bits.findFirst(bits, i)); method 306 assertEquals(label(i), -1, Bits.findFirst(0, i)); method 312 assertEquals(label(i), i, Bits.findFirst(-1, i)); method 318 assertEquals(label(i), -1, Bits.findFirst((1 << i) >>> 1, i)); method 324 assertEquals(label(i), i, Bits.findFirst(1 << i, i)); method 330 assertEquals(label(i), i + 1, Bits.findFirst(1 << (i + 1), i)); method 338 assertEquals(label(i), i, Bits.findFirst(value, i)); method 342 private static String label(int n) { method in class:BitsTest [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
MixedItemSection.java | 242 String label = item.toHuman(); local 243 index.put(label, item); 254 String label = entry.getKey(); local 256 out.annotate(0, item.offsetString() + ' ' + label + '\n');
|
/developers/build/prebuilts/gradle/Timer/Wearable/src/main/java/com/example/android/wearable/timer/ |
SetTimerActivity.java | 175 // Label to display. 176 private String label; field in class:SetTimerActivity.ListViewItem 178 public ListViewItem(String label, long duration) { 179 this.label = label; 185 return label; 207 view.setText(mTimeOptions[position].label);
|
/developers/build/prebuilts/gradle/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/ |
DigitalWatchFaceCompanionConfigActivity.java | 76 TextView label = (TextView)findViewById(R.id.label); local 77 label.setText(label.getText() + " (" + name.getClassName() + ")");
|
/developers/samples/android/ui/actionbarcompat/ActionBarCompat-SearchView/src/main/src/com/example/android/actionbarcompat/searchview/ |
AppListFragment.java | 99 // Iterate through the installed apps to see if their label matches the query 101 // If the app label matches the query, add it to the filtered apps list 102 if (p.matcher(application.label).matches()) { 143 // Set the application's label on the TextView 145 .setText(item.label); 166 * Our model object for each application item. Allows us to load the label async and store the 171 final CharSequence label; field in class:AppListFragment.ApplicationItem 177 // Load and store the app's label using the PackageManager 178 this.label = applicationInfo.loadLabel(packageManager);
|
/developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/wearable/timer/ |
SetTimerActivity.java | 175 // Label to display. 176 private String label; field in class:SetTimerActivity.ListViewItem 178 public ListViewItem(String label, long duration) { 179 this.label = label; 185 return label; 207 view.setText(mTimeOptions[position].label);
|
/developers/samples/android/wearable/wear/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/ |
DigitalWatchFaceCompanionConfigActivity.java | 76 TextView label = (TextView)findViewById(R.id.label); local 77 label.setText(label.getText() + " (" + name.getClassName() + ")");
|
/development/apps/Development/src/com/android/development/ |
MediaScannerActivity.java | 130 String label = getString(R.string.insertbutton, Integer.valueOf(mNumToInsert)); local 132 b.setText(label);
|
PackageBrowser.java | 48 String label; field in class:PackageBrowser.MyPackageInfo 64 info.label = info.info.applicationInfo.loadLabel(getPackageManager()).toString(); 79 name.setText(info.label); 100 return collator.compare(a.label, b.label);
|
PermissionDetails.java | 219 TextView label = (TextView) sharedPanel.findViewById(R.id.shared_pkgs_label); local 221 label.setVisibility(View.VISIBLE);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
DensityActivity.java | 123 TextView label = new TextView(this); local 124 label.setText(text); 125 root.addView(label, new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
|
/development/samples/browseable/Timer/src/com.example.android.wearable.timer/ |
SetTimerActivity.java | 175 // Label to display. 176 private String label; field in class:SetTimerActivity.ListViewItem 178 public ListViewItem(String label, long duration) { 179 this.label = label; 185 return label; 207 view.setText(mTimeOptions[position].label);
|
/development/samples/browseable/WatchFace/Application/src/com.example.android.wearable.watchface/ |
DigitalWatchFaceCompanionConfigActivity.java | 76 TextView label = (TextView)findViewById(R.id.label); local 77 label.setText(label.getText() + " (" + name.getClassName() + ")");
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeWizard.cs | 93 * When using %label:TOKENNAME in a tree for parse(), we must 94 * track the label. 98 public string label; field in class:Antlr.Runtime.Tree.TreeWizard.TreePattern 104 if (label != null) { 105 return "%" + label + ":"; //+ base.ToString(); 304 * a token type rather than a pattern doesn't let us set a label. 430 if (tpattern.label != null && labels != null) { 431 // map label in pattern to node in t1 432 labels[tpattern.label] = t1;
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
TreeWizard.cs | 101 * When using %label:TOKENNAME in a tree for parse(), we must 102 * track the label. 107 public string label; field in class:Antlr.Runtime.Tree.TreeWizard.TreePattern 115 if ( label != null ) 117 return "%" + label + ":"; //+ base.ToString(); 348 * a token type rather than a pattern doesn't let us set a label. 493 if ( tpattern.label != null && labels != null ) 495 // map label in pattern to node in t1 496 labels[tpattern.label] = t1;
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
TreeWizard.java | 69 /** When using %label:TOKENNAME in a tree for parse(), we must 70 * track the label. 73 public String label; field in class:TreeWizard.TreePattern 79 if ( label!=null ) { 80 return "%"+label+":"+super.toString(); 247 * a token type rather than a pattern doesn't let us set a label. 345 if ( tpattern.label!=null && labels!=null ) { 346 // map label in pattern to node in t1 347 labels.put(tpattern.label, t1);
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
Label.java | 34 /** A state machine transition label. A label can be either a simple 35 * label such as a token or character. A label can be a set of char or 38 * Special label types have to be < 0 to avoid conflict with char. 40 public class Label implements Comparable, Cloneable { 49 /** label is a semantic predicate; implies label is epsilon also */ 52 /** label is a set of tokens or char */ 117 /** The token type or character value; or, signifies special label. * 118 protected int label; field in class:Label [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
RubyTarget.java | 118 } else if ( formatName.equals( "label" ) ) { 119 return label( idString ); 277 private String label( String value ) { method in class:RubyTarget.RubyRenderer
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
DOTGenerator.java | 146 st.add("label", getEdgeLabel(edge)); 214 edgeST.add("label", "<" + rr.rule.grammar.name + "." + rr.rule.name + ">"); 217 edgeST.add("label", "<" + rr.rule.name + ">"); 235 edgeST.add("label", getEdgeLabel(edge)); 285 String label = edge.label.toString(grammar); local 286 label = Utils.replace(label,"\\", "\\\\"); 287 label = Utils.replace(label,"\"", "\\\""); [all...] |