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

1 2 3 4 5 6 7 8 91011>>

  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
TableSwitchInsnNode.java 67 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.size()]; local
    [all...]
LookupSwitchInsnNode.java 62 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));
100 Label[] labels = new Label[this.labels.size()]; local
104 mv.visitLookupSwitchInsn(dflt.getLabel(), keys, labels); local
    [all...]
JumpInsnNode.java 86 public AbstractInsnNode clone(final Map labels) {
87 return new JumpInsnNode(opcode, clone(label, labels));
LabelNode.java 68 public AbstractInsnNode clone(final Map labels) {
69 return (LabelNode) labels.get(this);
LineNumberNode.java 76 public AbstractInsnNode clone(final Map labels) {
77 return new LineNumberNode(line, clone(start, labels));
AbstractInsnNode.java 202 * @param labels a map from LabelNodes to cloned LabelNodes.
206 public abstract AbstractInsnNode clone(final Map labels);
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) {
227 LabelNode[] clones = new LabelNode[labels.size()];
229 clones[i] = (LabelNode) map.get(labels.get(i));
InsnNode.java 78 public AbstractInsnNode clone(final Map labels) {
  /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/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];
  /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);
Contacts_ContactMethodsTest.java 60 CharSequence[] labels = getContext().getResources().getTextArray( local
64 assertEquals(labels[ContactMethods.TYPE_HOME - 1], display);
68 assertEquals(labels[ContactMethods.TYPE_OTHER - 1], display);
72 assertEquals(labels[ContactMethods.TYPE_WORK - 1], display);
91 labels = getContext().getResources().getTextArray(
95 assertEquals(labels[ContactMethods.TYPE_HOME - 1], display);
99 assertEquals(labels[ContactMethods.TYPE_OTHER - 1], display);
103 assertEquals(labels[ContactMethods.TYPE_WORK - 1], display);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
PlaybackControlsRow.java 75 * Sets the array of strings used as labels. The size of the array defines the range
76 * of valid indices for this action. The labels are used to define the accessibility
77 * content description unless secondary labels are provided.
79 public void setLabels(String[] labels) {
80 mLabels = labels;
85 * Sets the array of strings used as secondary labels. These labels are used
86 * in place of the primary labels for accessibility content description only.
88 public void setSecondaryLabels(String[] labels) {
89 mLabels2 = labels;
    [all...]
  /bionic/tools/bionicbb/
gerrit.py 57 """Returns labels attached to a revision.
73 labels = {'Code-Review': {}, 'Verified': {}}
74 for review in details['labels']['Code-Review']['all']:
76 labels['Code-Review'][review['email']] = int(review['value'])
77 for review in details['labels']['Verified']['all']:
79 labels['Verified'][review['email']] = int(review['value'])
80 return labels
  /external/clang/test/SemaCXX/
switch-implicit-fallthrough-blocks.cpp 13 expected-warning{{unannotated fall-through between switch labels}} \
  /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/owasp/sanitizer/tools/
googlecode_upload.py 15 # 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', dest='labels'
    [all...]

Completed in 1575 milliseconds

1 2 3 4 5 6 7 8 91011>>