HomeSort by relevance Sort by last modified time
    Searched refs:labels (Results 1 - 25 of 882) 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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
labfloat.s 1 ; Check if labels are mistaken for floats.
  /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-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
reversename.py 56 labels = list(name.labels)
57 labels.reverse()
58 text = '.'.join(labels)
63 labels = list(name.labels)
64 labels.reverse()
67 l = len(labels)
69 parts.append(''.join(labels[i:i+4]))
name.py 103 def _validate_labels(labels):
104 """Check for empty labels in the middle of a label sequence,
105 labels that are too long, and for too many labels.
111 l = len(labels)
115 for label in labels:
131 The dns.name.Name class represents a DNS name as a tuple of labels.
134 @ivar labels: The tuple of labels in the name. Each label is a string of
137 __slots__ = ['labels']
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
locall1.s 1 % Get rid of labels that look compiler-generated, matching: "L.*:[0-9]+".
fb-1.s 1 # FB-labels are valid in GREG definitions.
  /external/autotest/contrib/
print_host_labels.py 16 labels = host.get_labels() variable
17 print 'Labels:'
18 print labels
crbug_crawler.py 10 Get all bugs with labels, strings (in summary and/or comments):
11 crbug_crawler.py --labels 'one two three'
51 parser.add_argument('--labels',
52 help=('Search labels. Eg: --labels "%s %s"' %
66 def __init__(self, comment='', labels='', status=''):
68 self.labels = labels if labels else []
74 if self.labels
    [all...]
  /external/chromium-trace/catapult/third_party/graphy/graphy/
formatters.py 33 """Automatically fill out the legend based on series labels. This will only
37 labels = []
40 labels.append('')
42 labels.append(series.label)
45 chart._legend_labels = labels
138 if len(axis.labels) <= 1: # Nothing to adjust
141 # Find the spacing required to fit all labels evenly.
143 maximum_possible_spacing = (axis.max - axis.min) / (len(axis.labels) - 1)
147 labels = [list(x) for x in zip(axis.label_positions, axis.labels)]
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/story/
story.py 24 labels: A list or set of string labels that are used for filtering. See
29 def __init__(self, shared_state_class, name='', labels=None,
47 if labels is None:
48 labels = set([])
49 elif isinstance(labels, list):
50 labels = set(labels)
52 assert isinstance(labels, set)
53 self._labels = labels
62 def labels(self): member in class:Story
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/android/
android_story.py 10 name='', labels=None, is_local=False):
17 labels: See Story.__init__.
21 shared_android_state.SharedAndroidState, name=name, labels=labels,
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/autotest/frontend/client/src/autotest/common/table/
MultipleListFilter.java 22 JSONArray labels = new JSONArray(); local
26 labels.set(labels.size(),
30 return labels;
  /external/minijail/
bpf.c 187 int bpf_resolve_jumps(struct bpf_labels *labels,
204 if (labels->labels[filter->k].location == 0xffffffff) {
206 labels->labels[filter->k].label);
209 filter->k = labels->labels[filter->k].location -
215 if (labels->labels[filter->k].location != 0xffffffff) {
217 labels->labels[filter->k].label)
    [all...]
  /external/opencv3/modules/ml/src/
kdtree.hpp 65 CV_WRAP void build(InputArray points, InputArray labels,
72 OutputArray labels = noArray()) const;
78 OutputArray labels = noArray()) const;
81 OutputArray labels = noArray()) const;
89 CV_PROP std::vector<int> labels; //!< the parallel array of labels. member in class:cv::ml::KDTree
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue73/
Blog.java 27 private TreeSet<String> labels = new TreeSet<String>(); field in class:Blog
58 return labels;
61 public void setLabels(TreeSet<String> labels) {
62 this.labels = labels;
  /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);

Completed in 1315 milliseconds

1 2 3 4 5 6 7 8 91011>>