Searched refs:labels (Results 1 - 25 of 265) sorted by relevance

1234567891011

/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DTableSwitchInsnNode.java67 public List labels; field in class:TableSwitchInsnNode
75 * @param labels beginnings of the handler blocks. <tt>labels[i]</tt> is
82 final LabelNode[] labels)
88 this.labels = new ArrayList();
89 if (labels != null) {
90 this.labels.addAll(Arrays.asList(labels));
99 Label[] labels = new Label[this.labels
78 TableSwitchInsnNode( final int min, final int max, final LabelNode dflt, final LabelNode[] labels) argument
106 clone(final Map labels) argument
[all...]
H A DLookupSwitchInsnNode.java62 public List labels; field in class:LookupSwitchInsnNode
69 * @param labels beginnings of the handler blocks. <tt>labels[i]</tt> is
75 final LabelNode[] labels)
80 this.labels = new ArrayList(labels == null ? 0 : labels.length);
86 if (labels != null) {
87 this.labels.addAll(Arrays.asList(labels));
72 LookupSwitchInsnNode( final LabelNode dflt, final int[] keys, final LabelNode[] labels) argument
107 clone(final Map labels) argument
[all...]
H A DJumpInsnNode.java86 public AbstractInsnNode clone(final Map labels) { argument
87 return new JumpInsnNode(opcode, clone(label, labels));
H A DLabelNode.java68 public AbstractInsnNode clone(final Map labels) { argument
69 return (LabelNode) labels.get(this);
H A DLineNumberNode.java76 public AbstractInsnNode clone(final Map labels) { argument
77 return new LineNumberNode(line, clone(start, labels));
H A DAbstractInsnNode.java202 * @param labels a map from LabelNodes to cloned LabelNodes.
206 public abstract AbstractInsnNode clone(final Map labels); argument
220 * Returns the clones of the given labels.
222 * @param labels a list of labels.
224 * @return the clones of the given labels.
226 static LabelNode[] clone(final List labels, final Map map) { argument
227 LabelNode[] clones = new LabelNode[labels.size()];
229 clones[i] = (LabelNode) map.get(labels.get(i));
H A DInsnNode.java78 public AbstractInsnNode clone(final Map labels) { argument
/external/stlport/test/unit/
H A Dunique_test.cpp52 const char* labels[] = {"Q", "Q", "W", "W", "E", "E", "R", "T", "T", "Y", "Y"}; local
54 const unsigned count = sizeof(labels) / sizeof(labels[0]);
56 unique((const char**)labels, (const char**)labels + count, str_equal);
59 CPPUNIT_ASSERT(*labels[0] == 'Q');
60 CPPUNIT_ASSERT(*labels[1] == 'W');
61 CPPUNIT_ASSERT(*labels[2] == 'E');
62 CPPUNIT_ASSERT(*labels[3] == 'R');
63 CPPUNIT_ASSERT(*labels[
88 const char* labels[] = {"Q", "Q", "W", "W", "E", "E", "R", "T", "T", "Y", "Y"}; local
[all...]
H A Dbsearch_test.cpp40 char const* labels[] = { "aa", "dd", "ff", "jj", "ss", "zz" }; local
41 const unsigned count = sizeof(labels) / sizeof(labels[0]);
44 CPPUNIT_ASSERT(binary_search(labels, labels + count, (const char *)"ff", str_compare));
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLProgressElement.idl28 readonly attribute NodeList labels;
H A DHTMLMeterElement.idl31 readonly attribute NodeList labels;
H A DLabelableElement.cpp42 PassRefPtrWillBeRawPtr<LabelsNodeList> LabelableElement::labels() function in class:blink::LabelableElement
/external/chromium-trace/trace-viewer/src/tracing/
H A Dcategory_filter_dialog_test.js32 var labels = dlg.formEl_.getElementsByTagName('label');
33 assertEquals(3, labels.length);
34 assertEquals('one', labels[0].textContent);
35 assertEquals('three', labels[1].textContent);
36 assertEquals('two', labels[2].textContent);
H A Drecord_selection_dialog_test.js35 var labels = dlg.formEl_.getElementsByTagName('label');
36 assertEquals(3, labels.length);
37 assertEquals('three', labels[0].textContent);
38 assertEquals('two', labels[1].textContent);
39 assertEquals('one', labels[2].textContent);
67 var labels = dlg.formEl_.getElementsByTagName('label');
68 assertEquals(3, labels.length);
69 assertEquals('three', labels[0].textContent);
70 assertEquals('two', labels[1].textContent);
71 assertEquals('one', labels[
[all...]
/external/openfst/src/include/fst/
H A Dstring.h53 vector<Label> labels; local
54 if (!ConvertStringToLabels(s, &labels))
56 Compile(labels, fst);
62 vector<Label> labels; local
63 if (!ConvertStringToLabels(s, &labels))
65 Compile(labels, fst, w);
70 bool ConvertStringToLabels(const string &str, vector<Label> *labels) const {
71 labels->clear();
74 labels->push_back(static_cast<unsigned char>(str[i]));
76 return UTF8StringToLabels(str, labels);
95 Compile(const vector<Label> &labels, MutableFst<A> *fst, const Weight &weight = Weight::One()) const argument
107 Compile(const vector<Label> &labels, CompactFst<A, StringCompactor<A>, Unsigned> *fst) const argument
113 Compile(const vector<Label> &labels, CompactFst<A, WeightedStringCompactor<A>, Unsigned> *fst, const Weight &weight = Weight::One()) const argument
[all...]
/external/chromium_org/chrome/browser/ui/views/infobars/
H A Dalternate_nav_infobar_view.cc38 void AlternateNavInfoBarView::ElideLabels(Labels* labels, int available_width) { argument
39 views::Label* last_label = labels->back();
40 labels->pop_back();
42 for (Labels::iterator i(labels->begin()); i != labels->end(); ++i)
48 if (!labels->empty())
49 labels->back()->SetText(labels->back()->text() + gfx::kEllipsisUTF16);
52 if (!labels->empty())
53 ElideLabels(labels, available_widt
62 Labels labels; local
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_profile_unittest.cc31 std::vector<base::string16> labels; local
32 AutofillProfile::CreateDifferentiatingLabels(profiles, "en-US", &labels);
33 return labels[0];
178 std::vector<base::string16> labels; local
179 AutofillProfile::CreateDifferentiatingLabels(profiles, "en-US", &labels);
180 ASSERT_EQ(profiles.size(), labels.size());
181 summary7 = labels[0];
182 base::string16 summary7a = labels[1];
221 std::vector<base::string16> labels; local
223 profiles.get(), "en-US", &labels);
376 std::vector<base::string16> labels; local
424 std::vector<base::string16> labels; local
477 std::vector<base::string16> labels; local
523 std::vector<base::string16> labels; local
565 std::vector<base::string16> labels; local
604 std::vector<base::string16> labels; local
657 EXPECT_EQ(base::string16(), labels[0]); local
658 EXPECT_EQ(base::string16(), labels[1]); local
708 std::vector<base::string16> labels; local
744 std::vector<base::string16> labels; local
771 std::vector<base::string16> labels; local
787 labels[1]) << labels[1]; local
805 std::vector<base::string16> labels; local
[all...]
H A Dautofill_external_delegate.cc85 std::vector<base::string16> labels(suggested_labels);
90 ApplyAutofillWarnings(&values, &labels, &icons, &ids);
94 labels.push_back(base::string16());
109 ApplyAutofillOptions(&values, &labels, &icons, &ids);
115 labels.pop_back();
123 InsertDataListValues(&values, &labels, &icons, &ids);
131 labels.push_back(base::string16());
154 labels,
307 std::vector<base::string16>* labels,
318 labels
305 ApplyAutofillWarnings( std::vector<base::string16>* values, std::vector<base::string16>* labels, std::vector<base::string16>* icons, std::vector<int>* unique_ids) argument
348 ApplyAutofillOptions( std::vector<base::string16>* values, std::vector<base::string16>* labels, std::vector<base::string16>* icons, std::vector<int>* unique_ids) argument
370 InsertDataListValues( std::vector<base::string16>* values, std::vector<base::string16>* labels, std::vector<base::string16>* icons, std::vector<int>* unique_ids) argument
[all...]
/external/chromium_org/chrome/test/chromedriver/third_party/googlecode/
H A Dgooglecode_upload.py15 # project. You can optionally provide a list of labels that apply to
65 def upload(file, project_name, user_name, password, summary, labels=None):
75 labels: an optional list of label strings with which to tag the file.
90 if labels is not None:
91 form_fields.extend([('label', l.strip()) for l in labels])
161 def upload_find_auth(file_path, project_name, summary, labels=None,
165 file_path, project_name, summary, and labels are passed as-is to upload.
171 labels: an optional list of label strings with which to tag the file.
190 return upload(file_path, project_name, user_name, password, summary, labels)
204 parser.add_option('-l', '--labels', des
[all...]
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dprocess.js25 this.labels = [];
43 tmp = base.compareArrays(x.labels, y.labels,
68 if (this.labels.length)
69 res += ': ' + this.labels.join(', ');
82 if (!this.labels.length)
84 return 'processes.' + this.name + '.' + this.labels.join('.');
/external/smack/src/org/xbill/DNS/
H A DName.java28 * of labels and the 7 higher order bytes store per-label offsets.
50 /** The maximum number of labels in a Name */
112 setlabels(int labels) { argument
114 offsets |= labels;
130 int labels = src.labels();
133 for (int i = 0; i < labels && i < MAXOFFSETS; i++)
135 dst.setlabels(labels);
154 int labels = getlabels();
155 int newlabels = labels
546 labels() { method in class:Name
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DLocaleICU.cpp175 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>());
176 labels->reserveCapacity(size);
187 labels->append(String::adopt(buffer));
189 return labels.release();
194 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>()); local
195 labels->reserveCapacity(7);
196 labels->append("Sun");
197 labels->append("Mon");
198 labels->append("Tue");
199 labels
225 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>()); local
265 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>()); local
[all...]
/external/chromium_org/chrome/common/variations/
H A Dexperiment_labels.h19 // Creates a final combined experiment labels string with |variation_labels|
27 // experiment_labels string value containing only the labels that are not
29 base::string16 ExtractNonVariationLabels(const base::string16& labels);
/external/clang/test/SemaCXX/
H A Dswitch-implicit-fallthrough-blocks.cpp13 expected-warning{{unannotated fall-through between switch labels}} \
/external/owasp/sanitizer/tools/
H A Dgooglecode_upload.py15 # project. You can optionally provide a list of labels that apply to
59 def upload(file, project_name, user_name, password, summary, labels=None):
69 labels: an optional list of label strings with which to tag the file.
84 if labels is not None:
85 form_fields.extend([('label', l.strip()) for l in labels])
155 def upload_find_auth(file_path, project_name, summary, labels=None,
159 file_path, project_name, summary, and labels are passed as-is to upload.
165 labels: an optional list of label strings with which to tag the file.
195 summary, labels)
220 parser.add_option('-l', '--labels', des
[all...]

Completed in 1409 milliseconds

1234567891011