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

1 2 3 4 5 6 7 891011>>

  /external/gemmlowp/profiling/
profiler.h 78 ScopedProfilingLabel label("Bar");
83 ScopedProfilingLabel label("Foo");
107 0.00% other (outside of any label)
160 const char* label; member in struct:gemmlowp::ProfileTreeView::Node
162 Node() : label(nullptr), weight(0) {}
181 printf("%.2f%% %s\n", 100.0f * node->weight / root_.weight, node->label);
196 if (child->label == stack.labels[level]) {
203 child_to_add_to->label = stack.labels[level];
222 other_child->label =
223 node == &root_ ? "other (outside of any label)" : "other"
    [all...]
  /external/google-breakpad/src/common/
test_assembler.h 73 // A Label represents a value not yet known that we need to store in a
78 // A label can be in one of three states:
80 // - defined as the sum of some other label and a constant, or
83 // A label's value never changes, but it can accumulate constraints.
84 // Adding labels and integers is permitted, and yields a label.
85 // Subtracting a constant from a label is permitted, and also yields a
86 // label. Subtracting two labels that have some relationship to each
91 // Label a; // a's value is undefined
92 // Label b; // b's value is undefined
94 // Label c = a + 4; // okay, even though a's value is unknow
465 Label label; member in struct:google_breakpad::test_assembler::Section::Reference
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
ReportPageTest.java 38 private final String label; field in class:ReportPageTest.TestReportPage
41 protected TestReportPage(String label, String style, ReportPage parent) {
43 this.label = label;
54 return label + ".html";
58 return label;
  /external/llvm/examples/BrainF/
BrainF.h 61 /// label is used for the labels for the BasicBlocks.
65 static const char *label; member in class:BrainF
  /external/skia/src/views/animated/
SkWidgetViews.cpp 100 void SkWidgetView::getLabel(SkString* label) const
102 if (label)
103 *label = fLabel;
106 void SkWidgetView::setLabel(const char label[])
108 this->setLabel(label, label ? strlen(label) : 0);
111 void SkWidgetView::setLabel(const char label[], size_t len)
113 if ((label == nullptr && fLabel.size() != 0) || !fLabel.equals(label, len)
152 const char* label = dom.findAttr(node, "label"); local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MethodImplementationBuilder.java 44 private final HashMap<String, Label> labels = new HashMap<String, Label>();
61 * Adds a new named label at the current location.
63 * Any previous unplaced references to a label of this name will now refer to this label/location
65 * @param name The name of the label to add
66 * @return A LabelRef representing the label
69 public Label addLabel(@Nonnull String name) {
70 Label label = labels.get(name) local
98 Label label = labels.get(name); local
    [all...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
PayloadAlignmentTest.java 92 Label label = implBuilder.getLabel("array_payload"); local
93 implBuilder.addInstruction(new BuilderInstruction31t(Opcode.FILL_ARRAY_DATA, 0, label));
118 Label label = implBuilder.getLabel("array_payload"); local
119 implBuilder.addInstruction(new BuilderInstruction31t(Opcode.FILL_ARRAY_DATA, 0, label));
  /external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/instruction/
SmalideaInstruction.java 138 SmaliLabel label = labelReference.resolve(); local
139 if (label == null) {
142 return (label.getOffset() - psiInstruction.getOffset())/2;
  /external/v8/src/compiler/
fast-accessor-assembler.cc 82 // the method should take a label instead.
147 RawMachineLabel* label = local
149 return FromRaw(label);
197 RawMachineLabel* label) {
198 labels_.push_back(label);
211 RawMachineLabel* FastAccessorAssembler::FromId(LabelId label) const {
212 CHECK_LT(label.label_id, labels_.size());
213 CHECK_NOT_NULL(labels_.at(label.label_id));
214 return labels_.at(label.label_id);
  /external/vboot_reference/cgpt/
cgpt_show.c 101 uint8_t label[GPT_PARTNAME_LEN]; local
105 label, sizeof(label));
107 "Label: \"%s\"", label) < sizeof(contents));
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DataChannel.java 117 public native String label(); method in class:DataChannel
  /external/webrtc/talk/app/webrtc/test/
peerconnectiontestwrapper.cc 107 const std::string& label,
109 return peer_connection_->CreateDataChannel(label, &init);
263 std::string label = kStreamLabelBase + local
267 peer_connection_factory_->CreateLocalMediaStream(label);
290 std::string videotrack_label = label + kVideoTrackLabelBase;
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_logging.cc 102 std::string label = state.tag + '@' + alg_name; local
106 size_t start_pos = label.find(receiver);
108 label.replace(start_pos, receiver.length(), "Sender");
112 printf("PLOT\t%d\t%s\t%f\t%f\n", figure, label.c_str(),
189 printf("LABEL\t%d\t%s\t%s\t%d\n", figure, title.c_str(), y_label.c_str(),
  /frameworks/base/core/java/android/content/pm/
ComponentInfo.java 97 CharSequence label; local
99 label = pm.getText(packageName, labelRes, ai);
100 if (label != null) {
101 return label;
108 label = pm.getText(packageName, ai.labelRes, ai);
109 if (label != null) {
110 return label;
PermissionInfo.java 259 * @param pm A PackageManager from which the label can be loaded; usually
270 CharSequence label = pm.getText(packageName, descriptionRes, null); local
271 if (label != null) {
272 return label;
  /frameworks/base/core/java/android/gesture/
Instance.java 21 * An instance represents a sample if the label is available or a query if the
22 * label is null.
38 // the label can be null
39 final String label; field in class:Instance
47 label = sampleName;
69 * @param label
72 static Instance createInstance(int sequenceType, int orientationType, Gesture gesture, String label) {
77 instance = new Instance(gesture.getID(), pts, label);
81 instance = new Instance(gesture.getID(), pts, label);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfButtonsTest.java 105 String label = labels[i]; local
109 String indexInfo = "index: " + i + ", label: " + label;
115 assertEquals(indexInfo, label, button.getText().toString());
124 String label = labels[i]; local
126 String indexInfo = "index: " + i + ", label: " + label;
132 assertEquals(indexInfo, label, button.getText().toString());
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DocumentClipper.java 136 final String label = ""; local
137 clipData = new ClipData(label, mimeTypes, new ClipData.Item(doc.derivedUri));
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
MediaSizeUtils.java 98 /** Mapping from media size to label */
124 * Get the label for a {@link MediaSize}.
126 * @param context The context the label should be loaded for
129 * @return The label for the media size
132 String label = mMediaSizeToLabel.get(mediaSize); local
134 if (label == null) {
135 label = mediaSize.getLabel(context.getPackageManager());
136 mMediaSizeToLabel.put(mediaSize, label);
139 return label;
160 // Same standard - sort alphabetically by label
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
DisconnectCause.java 28 * cause of the disconnect. Optionally, it may include a label and/or description to display to the
30 * the label and description. It also may contain a reason for the disconnect, which is intended for
109 * @param label The localized label to show to the user to explain the disconnect.
113 public DisconnectCause(int code, CharSequence label, CharSequence description, String reason) {
114 this(code, label, description, reason, ToneGenerator.TONE_UNKNOWN);
121 * @param label The localized label to show to the user to explain the disconnect.
126 public DisconnectCause(int code, CharSequence label, CharSequence description, String reason,
129 mDisconnectLabel = label;
284 String label = mDisconnectLabel == null ? "" : mDisconnectLabel.toString(); local
    [all...]
  /frameworks/base/tests/MusicBrowserDemo/src/com/example/android/musicbrowserdemo/
AppListFragment.java 77 final String label; field in class:AppListFragment.Item
81 this.label = l;
137 tv.setText(item.label);
  /packages/apps/Contacts/src/com/android/contacts/list/
LegacyPhoneNumberListAdapter.java 41 Phones.LABEL, // 2
103 CharSequence label = null; local
109 label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
111 view.setLabel(label);
LegacyPostalAddressListAdapter.java 41 ContactMethods.LABEL, // 2
104 CharSequence label = null; local
110 label = StructuredPostal.getTypeLabel(getContext().getResources(), type, customLabel);
112 view.setLabel(label);
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
ResultActivity.java 83 private void addRowForValue(String label, Object value) {
85 addRow(label, "null");
87 addRowWithBitmap(label, (Bitmap)value);
89 addRow(label, "INTENT");
92 addRow(label, "DATA");
95 addRow(label, "ARRAY");
101 addRow(label, String.valueOf(value));
134 TextView label = new TextView(this); local
135 label.setPadding(4, 4, 4, 4);
136 label.setText(column0)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmSelectionActivity.java 73 final String label = String.format("%d %02d", alarm.hour, alarm.minutes); local
74 mSelections.add(new AlarmSelection(label, alarm));

Completed in 243 milliseconds

1 2 3 4 5 6 7 891011>>