HomeSort by relevance Sort by last modified time
    Searched refs:labels (Results 1 - 25 of 336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/stlport/test/unit/
unique_test.cpp 52 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[4] == 'T')
88 const char* labels[] = {"Q", "Q", "W", "W", "E", "E", "R", "T", "T", "Y", "Y"}; local
    [all...]
bsearch_test.cpp 40 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));
  /ndk/tests/device/test-gnustl-full/unit/
unique_test.cpp 52 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[4] == 'T')
88 const char* labels[] = {"Q", "Q", "W", "W", "E", "E", "R", "T", "T", "Y", "Y"}; local
    [all...]
bsearch_test.cpp 40 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));
  /ndk/tests/device/test-stlport/unit/
unique_test.cpp 52 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[4] == 'T')
88 const char* labels[] = {"Q", "Q", "W", "W", "E", "E", "R", "T", "T", "Y", "Y"}; local
    [all...]
bsearch_test.cpp 40 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/
HTMLProgressElement.idl 24 readonly attribute NodeList labels;
HTMLMeterElement.idl 27 readonly attribute NodeList labels;
LabelableElement.cpp 42 PassRefPtr<NodeList> LabelableElement::labels() function in class:WebCore::LabelableElement
LabelableElement.h 39 // specification, and provides the implementation of the "labels" attribute.
43 PassRefPtr<NodeList> labels();
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
StatsView.java 64 private BitmapText[] labels; field in class:StatsView
84 labels = new BitmapText[statLabels.length];
87 for (int i = 0; i < labels.length; i++){
88 labels[i] = new BitmapText(font);
89 labels[i].setLocalTranslation(0, labels[i].getLineHeight() * (i+1), 0);
90 attachChild(labels[i]);
102 for (int i = 0; i < labels.length; i++) {
105 labels[i].setText(stringBuilder);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
idna.py 157 labels = dots.split(input)
158 if labels and len(labels[-1])==0:
160 del labels[-1]
163 for label in labels:
178 labels = dots.split(input)
183 labels = input.split(".")
185 if labels and len(labels[-1]) == 0:
187 del labels[-1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
idna.py 157 labels = dots.split(input)
158 if labels and len(labels[-1])==0:
160 del labels[-1]
163 for label in labels:
178 labels = dots.split(input)
183 labels = input.split(".")
185 if labels and len(labels[-1]) == 0:
187 del labels[-1
    [all...]
  /external/openfst/src/include/fst/
string.h 53 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);
    [all...]
icu.h 34 bool UTF8StringToLabels(const string &str, vector<Label> *labels) {
40 labels->push_back(c);
67 labels->push_back(code);
74 bool LabelsToUTF8String(const vector<Label> &labels, string *str) {
76 for (size_t i = 0; i < labels.size(); ++i) {
77 int32_t code = labels[i];
  /external/smack/src/org/xbill/DNS/
Name.java 28 * 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) {
114 offsets |= labels;
130 int labels = src.labels(); local
133 for (int i = 0; i < labels && i < MAXOFFSETS; i++)
135 dst.setlabels(labels);
154 int labels = getlabels(); local
155 int newlabels = labels + n
448 int labels = newname.labels() - origin.labels(); local
546 labels() { method in class:Name
555 int labels = labels(); local
592 int labels = labels(); local
650 int labels = labels(); local
701 int labels = labels(); local
734 int labels = labels(); local
801 int labels = labels(); local
    [all...]
SIGBase.java 20 protected int alg, labels; field in class:SIGBase
40 this.labels = name.labels() - 1;
42 this.labels--;
55 labels = in.readU8();
74 labels = st.getUInt8();
91 sb.append (labels);
130 * Returns the number of labels in the signed domain name. This may be
136 return labels;
184 out.writeU8(labels);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_OrganizationsTest.java 30 CharSequence[] labels = getContext().getResources().getTextArray( local
34 assertEquals(labels[Organizations.TYPE_OTHER - 1], display);
38 assertEquals(labels[Organizations.TYPE_WORK - 1], display);
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
LocaleICU.cpp 178 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>());
179 labels->reserveCapacity(size);
190 labels->append(String::adopt(buffer));
192 return labels.release();
198 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>()); local
199 labels->reserveCapacity(7);
200 labels->append("Sun");
201 labels->append("Mon");
202 labels->append("Tue");
203 labels->append("Wed")
230 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>()); local
272 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>()); local
    [all...]
  /external/chromium/chrome/browser/autofill/
autofill_host.h 45 virtual void AutoFillSuggestionsReturned(const std::vector<string16>& values, const std::vector<string16>& labels, const std::vector<string16>& icons, const std::vector<int>& unique_ids) = 0;
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
LabelsActivity.java 27 setContentView(R.layout.labels);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
MultiStatusBar.py 9 self.labels = {}
12 if name not in self.labels:
15 self.labels[name] = label
17 label = self.labels[name]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
MultiStatusBar.py 9 self.labels = {}
12 if name not in self.labels:
15 self.labels[name] = label
17 label = self.labels[name]
  /external/chromium_org/chrome/test/chromedriver/third_party/googlecode/
googlecode_upload.py 15 # 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', dest='labels'
    [all...]
  /external/chromium_org/courgette/
assembly_program.h 46 // * The disassembler creates labels in the AssemblyProgram and emits
129 // Trim underused labels
132 void PrintLabelCounts(RVAToLabel* labels);
143 Label* FindLabel(RVA rva, RVAToLabel* labels);
146 static void UnassignIndexes(RVAToLabel* labels);
147 static void DefaultAssignIndexes(RVAToLabel* labels);
148 static void AssignRemainingIndexes(RVAToLabel* labels);
159 // We have separate label spaces for addresses referenced by rel32 labels and
160 // abs32 labels. This is somewhat arbitrary.

Completed in 477 milliseconds

1 2 3 4 5 6 7 8 91011>>