HomeSort by relevance Sort by last modified time
    Searched defs:label (Results 451 - 475 of 1399) sorted by null

<<11121314151617181920>>

  /system/core/toolbox/
getevent.c 15 struct label { struct
20 #define LABEL(constant) { #constant, constant }
23 static struct label key_value_labels[] = {
32 #undef LABEL
54 static const char *get_label(const struct label *labels, int value)
98 const char* label; local
101 struct label* bit_labels;
122 label = "KEY";
126 label = "REL";
130 label = "ABS"
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-tic6x.h 42 symbolS *label; member in struct:tic6x_label_list
162 #define md_do_align(n, fill, len, max, label) \
165 goto label; \
  /bionic/libc/kernel/uapi/linux/
bcache.h 85 __u8 label[SB_LABEL_SIZE]; member in struct:cache_sb
178 __u8 label[32]; member in struct:uuid_entry::__anon365::__anon366
209 __u8 label[32]; member in struct:uuid_entry_v0
  /cts/tests/tests/telecom/src/android/telecom/cts/
DataObjectUnitTests.java 164 final CharSequence label = "Out of service area"; local
169 label,
174 assertEquals(label, cause.getLabel());
187 assertEquals(label, parcelCause.getLabel());
198 final CharSequence label = "Wi-Fi call"; local
205 label,
208 assertEquals(label, hints.getLabel());
221 assertEquals(label, parcelHints.getLabel());
233 final CharSequence label = "Wi-Fi call"; local
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopTranslator.java 320 * Starting with the designated "first label" (that is, the
321 * first block of the method), add that label to the order,
329 for (int label = method.getFirstLabel();
330 label != -1;
331 label = Bits.findFirst(workSet, 0)) {
345 IntList preds = method.labelToPredecessors(label);
365 if (pred.getPrimarySuccessor() == label) {
367 label = predLabel;
368 Bits.set(tracebackSet, label);
382 while (label != -1)
632 int label = successors.get(i); local
662 int label = block.getPrimarySuccessor(); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopTranslator.java 326 * Starting with the designated "first label" (that is, the
327 * first block of the method), add that label to the order,
335 for (int label = method.getFirstLabel();
336 label != -1;
337 label = Bits.findFirst(workSet, 0)) {
351 IntList preds = method.labelToPredecessors(label);
371 if (pred.getPrimarySuccessor() == label) {
373 label = predLabel;
374 Bits.set(tracebackSet, label);
388 while (label != -1)
638 int label = successors.get(i); local
671 int label = block.getPrimarySuccessor(); local
    [all...]
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
Card.java 236 * Set the label text for the progress if the card has a progress type of
269 * @param label
273 private void addAction(String label, int id, int type) {
275 cardAction.label = label;
417 * @param label The text to display for this action
422 public Builder addAction(String label, int id, int type) {
423 mCard.addAction(label, id, type);
449 * <li>{@link #PROGRESS_TYPE_LABEL} only displays a label text in the progress area
461 public Builder setProgressLabel(String label) {
612 public String label; field in class:Card.CardAction
639 private String label = ""; field in class:Card.CardProgress
    [all...]
  /development/ndk/platforms/android-21/include/linux/
bcache.h 77 __u8 label[SB_LABEL_SIZE]; member in struct:cache_sb
170 __u8 label[32]; member in struct:uuid_entry::__anon1512::__anon1513
201 __u8 label[32]; member in struct:uuid_entry_v0
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCustom.java 134 CharSequence label = mInfo.loadLabel(context.getPackageManager()); local
135 mLabel = label != null ? label.toString() : mInfo.packageName;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 34 * An OpenGL text label maker.
46 * texture, and you have to recreate the whole texture if any label text
52 * Create a label maker
135 * Call to add a label
138 * @param text the text of the label
139 * @param textPaint the paint of the label
140 * @return the id of the label, used to measure and draw the label
147 * Call to add a label
150 * @param text the text of the label
341 Label label = mLabels.get(labelID); local
    [all...]
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCustomSupport.java 136 CharSequence label = mInfo.loadLabel(context.getPackageManager()); local
137 mLabel = label != null ? label.toString() : mInfo.packageName;
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
Card.java 236 * Set the label text for the progress if the card has a progress type of
269 * @param label
273 private void addAction(String label, int id, int type) {
275 cardAction.label = label;
417 * @param label The text to display for this action
422 public Builder addAction(String label, int id, int type) {
423 mCard.addAction(label, id, type);
449 * <li>{@link #PROGRESS_TYPE_LABEL} only displays a label text in the progress area
461 public Builder setProgressLabel(String label) {
612 public String label; field in class:Card.CardAction
639 private String label = ""; field in class:Card.CardProgress
    [all...]
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactDetailFragment.java 392 data.getString(ContactAddressQuery.LABEL),
429 * {@link android.provider.ContactsContract.CommonDataKinds.StructuredPostal#LABEL}
458 // Gets postal address label type
459 CharSequence label = local
463 headerTextView.setText(label);
673 StructuredPostal.LABEL,
685 final static int LABEL = 3;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFAState.java 157 * transition that could be a valid label is transition(0). When we
159 * for all possible transitions. That is of the order: size(label space)
163 protected OrderedHashSet<Label> reachableLabels;
188 /** Add a transition from this state to target with label. Return
191 public int addTransition(DFAState target, Label label) {
192 transitions.add( new Transition(label, target) );
244 Label label = state.transition[0].label; local
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
AfeUtils.java 67 JSONObject label = labels.get(i).isObject(); local
68 String name = label.get("name").isString().stringValue();
69 boolean labelIsPlatform = label.get("platform").isBoolean().booleanValue();
70 JSONObject atomicGroup = label.get("atomic_group").isObject();
HostSelector.java 230 String label = AfeUtils.decodeLabelName(labelName); local
241 addMetaHosts(label, number);
245 public void addMetaHosts(String label, String number) {
248 metaObject.put("platform", new JSONString(label));
  /external/autotest/frontend/client/src/autotest/tko/
CommonPanel.java 19 import com.google.gwt.user.client.ui.Label;
113 Label label = new Label(string); local
114 label.setStyleName("field-name");
115 return label;
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopTranslator.java 327 * Starting with the designated "first label" (that is, the
328 * first block of the method), add that label to the order,
336 for (int label = method.getFirstLabel();
337 label != -1;
338 label = Bits.findFirst(workSet, 0)) {
352 IntList preds = method.labelToPredecessors(label);
372 if (pred.getPrimarySuccessor() == label) {
374 label = predLabel;
375 Bits.set(tracebackSet, label);
389 while (label != -1)
639 int label = successors.get(i); local
669 int label = block.getPrimarySuccessor(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
BarGraph.java 89 // determine the widths of the bar and the label areas
248 String label= nf.format(orgDelta); local
249 Point labelExtent= gc.stringExtent(label);
253 gc.drawString(label, labelxpos + TGAP, labelvpos, true);
255 gc.drawString(label, labelxpos - TGAP - labelExtent.x, labelvpos, true);
  /external/icu/icu4c/source/common/
uts46.cpp 33 // where the last ("root") label is the empty label
36 // if there is a trailing dot for the root label.
71 IDNA::labelToASCII_UTF8(const StringPiece &label, ByteSink &dest,
75 labelToASCII(UnicodeString::fromUTF8(label), destString,
81 IDNA::labelToUnicodeUTF8(const StringPiece &label, ByteSink &dest,
85 labelToUnicode(UnicodeString::fromUTF8(label), destString,
118 labelToASCII(const UnicodeString &label, UnicodeString &dest,
122 labelToUnicode(const UnicodeString &label, UnicodeString &dest,
134 labelToASCII_UTF8(const StringPiece &label, ByteSink &dest
698 const UChar *label=dest.getBuffer()+labelStart; local
914 const UChar *label=dest.getBuffer()+labelStart; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cdtrgtst.c 543 const char * label; member in struct:__anon12900
580 log_err("FAIL: udat_format with %s: %s\n", patTextPtr->label, myErrorName(status) );
583 log_err("FAIL: udat_format with %s: wrong UChar[] result %s\n", patTextPtr->label, u_austrcpy(byteText,dmyGnText) );
588 log_err("FAIL: udat_parse with %s: %s\n", patTextPtr->label, myErrorName(status) );
590 } else if ( patTextPtr->label[0] != '*' && july022008 - dateResult > dayMillisec ) {
591 log_err("FAIL: udat_parse with %s: wrong UDate result\n", patTextPtr->label );
  /external/kernel-headers/original/uapi/linux/
bcache.h 168 __u8 label[SB_LABEL_SIZE]; member in struct:cache_sb
319 __u8 label[32]; member in struct:uuid_entry::__anon13857::__anon13858
367 __u8 label[32]; member in struct:uuid_entry_v0
  /external/mesa3d/src/gallium/auxiliary/translate/
translate_sse.c 1274 int fixup, label; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_driver.h 92 uint32_t label; member in struct:nv50_ir_prog_symbol
  /external/mesa3d/src/mesa/state_tracker/
st_mesa_to_tgsi.c 57 struct label { struct
80 /* For every instruction that contains a label (eg CALL), keep
82 * tgsi instruction number for each label.
84 struct label *labels;
111 * Make note of a branch to a label in the TGSI code.
114 * location of each label.
    [all...]

Completed in 1934 milliseconds

<<11121314151617181920>>