HomeSort by relevance Sort by last modified time
    Searched refs:labels (Results 26 - 50 of 882) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/autotest/site_utils/suite_scheduler/
board_enumerator.py 8 from constants import Labels
47 Lists all labels known to the AFE that start with self._LABEL_PREFIX,
53 labels = self._afe.get_labels(name__startswith=Labels.BOARD_PREFIX)
57 if not labels:
60 return map(lambda l: l.name.split(':', 1)[1], labels)
  /external/opencv3/modules/cudaobjdetect/src/cuda/
lbp.hpp 84 __device__ __forceinline__ void partition(int4* vec, unsigned int n, int* labels, Pr predicate)
87 labels[tid] = tid;
93 int p = labels[tid];
94 int q = labels[id];
97 Emulation::smem::atomicMin(labels + id, p);
101 Emulation::smem::atomicMin(labels + tid, q);
  /external/autotest/frontend/afe/
frontend_test_utils.py 11 """Populate the test database with some hosts and labels."""
27 self.labels = [models.Label.objects.create(name=name) for name in
33 host.labels.add(platform)
40 self.label3 = self.labels[2]
43 self.label4 = self.labels[3]
46 self.label5 = self.labels[4]
49 self.hosts[0].labels.add(self.labels[0]) # label1
50 self.hosts[1].labels.add(self.labels[1]) # label
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
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) {
  /external/v8/src/interpreter/
control-flow-builders.h 52 void EmitJump(ZoneVector<BytecodeLabel>* labels);
53 void EmitJump(ZoneVector<BytecodeLabel>* labels, int index);
54 void EmitJumpIfTrue(ZoneVector<BytecodeLabel>* labels);
55 void EmitJumpIfTrue(ZoneVector<BytecodeLabel>* labels, int index);
56 void EmitJumpIfFalse(ZoneVector<BytecodeLabel>* labels);
57 void EmitJumpIfFalse(ZoneVector<BytecodeLabel>* labels, int index);
58 void EmitJumpIfUndefined(ZoneVector<BytecodeLabel>* labels);
59 void EmitJumpIfNull(ZoneVector<BytecodeLabel>* labels);
63 // Unbound labels that identify jumps for break statements in the code.
113 // Unbound labels that identify jumps for continue statements in the code
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
reloclab.s 1 # Different relocations for extern labels: GETA, PUSHJ, Bcc, JMP.
2 # Mix in different accesses to local labels to see that relaxing works for
align-1.s 2 # labels to such entities are aligned.
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
MethodProbesAdapter.java 139 final Label[] labels) {
140 if (markLabels(dflt, labels)) {
141 probesVisitor.visitLookupSwitchInsnWithProbes(dflt, keys, labels,
144 probesVisitor.visitLookupSwitchInsn(dflt, keys, labels);
150 final Label dflt, final Label... labels) {
151 if (markLabels(dflt, labels)) {
153 labels, frame(1));
155 probesVisitor.visitTableSwitchInsn(min, max, dflt, labels);
159 private boolean markLabels(final Label dflt, final Label[] labels) {
161 LabelInfo.resetDone(labels);
    [all...]
  /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...]
  /external/autotest/cli/
site_host.py 36 locked=False, lock_reason='', labels=[], acls=[],
50 @param labels: A list of labels as strings.
66 obj.labels = labels
83 # If there are labels avaliable for host, use them.
85 labels = set(self.labels)
86 if host_info.labels:
87 labels.update(host_info.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/autotest/frontend/client/src/autotest/afe/
LabelFilter.java 19 setMatchAllText("All labels");
48 JSONArray labels = super.getMatchValue().isArray(); local
54 labels.set(labels.size(), new JSONString(platformString));
57 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/gdb/darwin-x86/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/gdb/linux-x86/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/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]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d30v/
label-debug.s 0 # labels should be aligned on 8-byte boundries
label.s 0 # labels should be aligned on 8-byte boundries
  /external/autotest/site_utils/
host_label_utils.py 9 1. collect: Collect all hosts and their labels to metaDB, can be scheduled
12 2. query: Query for hosts and their labels information at a given day, e.g.,
33 def get_all_boards(labels=None):
34 """Get a list of boards from host labels.
36 Scan through all labels of all duts and get all possible boards based on
39 @param labels: A list of labels to filter hosts.
42 host_labels = get_host_labels(labels=labels)
43 board_labels = [[label[6:] for label in labels
    [all...]

Completed in 547 milliseconds

12 3 4 5 6 7 8 91011>>