HomeSort by relevance Sort by last modified time
    Searched full:label (Results 51 - 75 of 2323) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/e2fsprogs/misc/
e2label.c 2 * e2label.c - Print or change the volume label on an ext2 fs
80 char label[VOLNAMSZ+1]; local
83 strncpy(label, sb.s_volume_name, VOLNAMSZ);
84 label[VOLNAMSZ] = 0;
85 printf("%s\n", label);
88 static void change_label (char *dev, char *label)
94 strncpy(sb.s_volume_name, label, VOLNAMSZ);
95 if (strlen(label) > VOLNAMSZ)
96 fprintf(stderr, _("Warning: label too long, truncating.\n"));
  /external/webkit/JavaScriptCore/assembler/
AbstractMacroAssembler.h 210 // linked to a label marking its destination.
213 // Label:
215 // A Label records a point in the generated instruction stream, typically such that
217 class Label {
225 Label()
229 Label(AbstractMacroAssembler<AssemblerType>* masm)
230 : m_label(masm->m_assembler.label())
254 : m_label(masm->m_assembler.label())
276 : m_label(masm->m_assembler.label())
351 masm->m_assembler.linkJump(m_jmp, masm->m_assembler.label());
423 Label label() function in class:JSC::AbstractMacroAssembler
    [all...]
LinkBuffer.h 49 // * The address of a Label pointing into the code may be resolved.
54 typedef MacroAssembler::Label Label;
88 void link(Jump jump, CodeLocationLabel label)
90 MacroAssembler::linkJump(code(), jump, label); local
93 void link(JumpList list, CodeLocationLabel label)
96 MacroAssembler::linkJump(code(), list.m_jumps[i], label); local
99 void patch(DataLabelPtr label, void* value)
101 MacroAssembler::linkPointer(code(), label.m_label, value);
104 void patch(DataLabelPtr label, CodeLocationLabel value
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
SpinnerOption.java 24 public final String label; field in class:SpinnerOption
36 public SpinnerOption(Object value, String label) {
38 this.label = label;
43 return label;
  /packages/experimental/RpcPerformance/
AndroidManifest.xml 13 <application android:label="RPC Performance">
16 android:label="RPC Performance"
25 android:label="Cross-process no-op Provider"
32 android:label="In-memory no-op Provider"
38 android:label="Playground Service"
  /external/openssl/crypto/perlasm/
x86asm.pl 83 # label management
84 $lbdecor="L"; # local label decoration, set by package
85 $label="000";
87 sub ::islabel # see is argument is a known label
89 foreach $i (values %label) { return $i if ($i eq $_[0]); }
90 $label{$_[0]}; # can be undef
93 sub ::label # instantiate a function-scope label
94 { if (!defined($label{$_[0]}))
95 { $label{$_[0]}="${lbdecor}${label}${_[0]}"; $label++;
    [all...]
  /dalvik/dx/src/com/android/dx/util/
LabeledItem.java 20 * An item that has an integer label.
25 * Gets the label of this block.
27 * @return {@code >= 0;} the label
  /system/core/rootdir/etc/
vold.fstab 8 ## Format: dev_mount <label> <mount_point> <part> <sysfs_path1...>
9 ## label - Label for the volume
  /external/libnfc-nxp/src/
phLibNfc.h 28 /* \page LibNfc_release_label FRI1.1 API Release Label
30 *\note This is the TAG (label, alias) of the FRI1.1.
781 *--- [label="Before initializing Nfc LIB,Configure Driver layer"];
782 *LibNfcClient=>LibNfc[label="phLibNfc_Mgt_ConfigureDriver()",URL="\ref phLibNfc_Mgt_ConfigureDriver"];
783 *LibNfcClient<<LibNfc[label="NFCSTATUS_SUCCESS"];
804 *LibNfcClient=>LibNfc [label="phLibNfc_Mgt_ConfigureDriver()",URL="\ref phLibNfc_Mgt_ConfigureDriver"];
805 *LibNfcClient<<LibNfc [label="NFCSTATUS_SUCCESS"];
806 *LibNfcClient=>LibNfc [label="phLibNfc_Mgt_Initialize()",URL="\ref phLibNfc_Mgt_Initialize"];
807 *LibNfcClient<<LibNfc [label="NFCSTATUS_PENDING"];
808 *LibNfcClient<-LibNfc [label="pInitCb"];
    [all...]
  /dalvik/dx/src/com/android/dx/util/_tests/
_Bits.java 29 assertEquals(label(0), 0, Bits.makeBitSet(0).length);
32 assertEquals(label(i), 1, Bits.makeBitSet(i).length); method
36 assertEquals(label(i), 2, Bits.makeBitSet(i).length); method
44 assertEquals(label(i), expect, Bits.makeBitSet(i).length); method
54 assertEquals(label(i), expect * 32, method
63 assertFalse(label(i), Bits.get(bits, i)); method
74 assertTrue(label(i), Bits.get(bits, i)); method
87 assertTrue(label(i), Bits.get(bits, i) == expect); method
104 assertEquals(label(1), 0x41, bits[0]);
105 assertEquals(label(2), 0xfffffbf7, bits[1])
132 assertTrue(label(i), Bits.get(bits, i) == expect); method
147 assertTrue(label(i), Bits.get(bits, i) == expect); method
165 assertTrue(label(i), Bits.get(bits, i) == expect); method
171 assertTrue(label(i), Bits.isEmpty(new int[i])); method
184 assertFalse(label(i), Bits.isEmpty(bits)); method
190 assertEquals(label(i), 0, Bits.bitCount(new int[i])); method
214 assertEquals(label(i), count, Bits.bitCount(bits)); method
222 assertFalse(label(i), Bits.anyInRange(bits, 0, i)); method
230 assertFalse(label(i), Bits.anyInRange(bits, i, 100)); method
238 assertFalse(label(i), Bits.anyInRange(bits, i, 100 - i)); method
249 assertTrue(label(i), Bits.anyInRange(bits, 0, i)); method
260 assertTrue(label(i), Bits.anyInRange(bits, i, 100)); method
271 assertTrue(label(i), Bits.anyInRange(bits, i, 100 - i)); method
279 assertEquals(label(i), -1, Bits.findFirst(bits, i)); method
290 assertEquals(label(i), i, Bits.findFirst(bits, i)); method
306 assertEquals(label(i), i + 5, Bits.findFirst(bits, i)); method
312 assertEquals(label(i), -1, Bits.findFirst(0, i)); method
318 assertEquals(label(i), i, Bits.findFirst(-1, i)); method
324 assertEquals(label(i), -1, Bits.findFirst((1 << i) >>> 1, i)); method
330 assertEquals(label(i), i, Bits.findFirst(1 << i, i)); method
336 assertEquals(label(i), i + 1, Bits.findFirst(1 << (i + 1), i)); method
344 assertEquals(label(i), i, Bits.findFirst(value, i)); method
348 private static String label(int n) { method in class:_Bits
    [all...]
  /external/chromium/net/base/
dns_util.cc 15 char label[63]; local
16 unsigned int labellen = 0; /* <= sizeof label */
31 memcpy(name + namelen, label, labellen);
37 if (labellen >= sizeof label)
39 label[labellen++] = ch;
46 memcpy(name + namelen, label, labellen);
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlockList.java 50 * Gets the block with the given label.
52 * @param label the label to look for
53 * @return {@code non-null;} the block with the given label
55 public ByteBlock labelToBlock(int label) {
56 int idx = indexOfLabel(label);
59 throw new IllegalArgumentException("no such label: "
60 + Hex.u2(label));
  /development/apps/launchperf/
AndroidManifest.xml 18 <application android:label="Launch Performance">
21 <activity android:name="SimpleActivity" android:label="Simple Activity">
28 <activity android:name="EmptyActivity" android:label="Empty Activity">
35 <activity android:name="ComplexActivity" android:label="Complex Activity">
46 android:label="Simple Activity Launch Performance">
51 android:label="Complex Activity Launch Performance">
56 android:label="Empty Activity Launch Performance">
61 android:label="Hello World Launch Performance">
  /development/ndk/platforms/android-4/samples/san-angeles/
AndroidManifest.xml 6 <application android:label="@string/app_name">
8 android:label="@string/app_name">
  /development/ndk/platforms/android-8/samples/bitmap-plasma/
AndroidManifest.xml 6 <application android:label="@string/app_name" android:debuggable="true">
8 android:label="@string/app_name">
  /development/ndk/samples/hello-jni/
AndroidManifest.xml 7 <application android:label="@string/app_name"
10 android:label="@string/app_name">
  /development/ndk/samples/hello-neon/
AndroidManifest.xml 6 <application android:label="@string/app_name">
8 android:label="@string/app_name">
  /development/ndk/samples/two-libs/
AndroidManifest.xml 7 <application android:label="@string/app_name">
9 android:label="@string/app_name">
  /development/pdk/pndk/samples/samplejni/
AndroidManifest.xml 6 <application android:icon="@drawable/icon" android:label="@string/app_name">
8 android:label="@string/app_name">
  /development/samples/FixedGridLayout/
AndroidManifest.xml 6 <application android:label="@string/app_name">
8 android:label="@string/app_name">
  /external/webkit/WebCore/manual-tests/qt/
qtplugin-scrolling.html 28 document.label1.setText("Label one");
29 document.label2.setText("Label two");
  /sdk/templates/
AndroidManifest.template 6 <application android:label="@string/app_name" ICON>
8 android:label="@string/app_name">
  /sdk/ddms/app/src/com/android/ddms/
AboutDialog.java 33 import org.eclipse.swt.widgets.Label;
112 Label label; local
117 Label logo = new Label(shell, SWT.BORDER);
126 label = new Label(textArea, SWT.NONE);
128 label.setText("Dalvik Debug Monitor Revision " + Main.sRevision);
130 label.setText("Dalvik Debug Monitor");
132 label = new Label(textArea, SWT.NONE)
    [all...]
  /external/openssl/crypto/
x86cpuid.pl 23 &jnc (&label("done"));
38 &jz (&label("intel"));
49 &jnz (&label("intel"));
55 &jb (&label("intel"));
65 &jnc (&label("done"));
69 &ja (&label("done"));
71 &jmp (&label("done"));
76 &jb (&label("nocacheinfo"));
89 &jne (&label("notP4"));
92 &jne (&label("notP4"))
    [all...]
  /external/v8/src/
regexp-macro-assembler-irregexp.cc 61 void RegExpMacroAssemblerIrregexp::Bind(Label* l) {
76 void RegExpMacroAssemblerIrregexp::EmitOrLink(Label* l) {
179 void RegExpMacroAssemblerIrregexp::GoTo(Label* l) {
194 void RegExpMacroAssemblerIrregexp::PushBacktrack(Label* l) {
221 Label* on_tos_equals_current_position) {
228 Label* on_failure,
259 Label* on_less) {
266 Label* on_greater) {
272 void RegExpMacroAssemblerIrregexp::CheckCharacter(uint32_t c, Label* on_equal) {
283 void RegExpMacroAssemblerIrregexp::CheckAtStart(Label* on_at_start)
    [all...]

Completed in 434 milliseconds

1 23 4 5 6 7 8 91011>>