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

1 2

  /external/autotest/site_utils/suite_scheduler/
constants.py 9 class Labels:
13 @var BOARD_PREFIX The string with which board labels are prefixed.
14 @var POOL_PREFIX The stright with which pool labels are prefixed.
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 # Filter out all board labels tailing with -number, which is used for
63 for l in labels:
board_enumerator_unittest.py 15 from constants import Labels
26 self.prefix = Labels.BOARD_PREFIX
38 labels = ['board1', 'board2', 'board3']
40 map(lambda p: self._CreateMockLabel(self.prefix+p), labels))
42 self.assertEquals(set(labels), set(self.enumerator.Enumerate()))
driver_unittest.py 18 from constants import Labels
91 prefix = Labels.BOARD_PREFIX
task.py 16 from constants import Labels
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFStreamer.cpp 42 // FIXME: Also mark labels when in MIPS16 mode.
44 for (auto *L : Labels) {
51 Labels.clear();
56 Labels.push_back(Symbol);
62 Labels.clear();
68 Labels.clear();
MipsELFStreamer.h 32 SmallVector<MCSymbol*, 4> Labels;
51 /// Overriding this function allows us to record all labels that should be
56 /// Overriding this function allows us to dismiss all labels that are
61 /// Overriding this function allows us to dismiss all labels that are
68 /// Mark labels as microMIPS, if necessary for the subtarget.
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/idna/
idna_test.go 14 // Labels.
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/idna/
idna_test.go 14 // Labels.
  /external/autotest/scheduler/
rdb_hosts.py 111 self.labels = rdb_utils.LabelIterator(host.labels.all())
171 host_info['labels'] = self.labels.get_label_names()
330 """Get the platform and labels on this host.
335 labels = [label for label in self.labels if label != platform]
336 return platform, labels
348 """Find all labels started with given string.
351 @return: A list of all matched labels
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
properties.rb 56 grammar Labels;
87 lexer = Labels::Lexer.new 'a, b, c, 1, 2 A FOOBAR GNU1 A BLARZ'
88 parser = Labels::Parser.new lexer
161 example "accessing tokens with labels" do
211 example "referencing rule properties using rule labels" do
  /external/swiftshader/third_party/subzero/src/
IceInst.cpp 399 Labels.reserve(MaxSrcs);
408 Labels.push_back(Label);
416 if (Labels[I] == Target)
444 if (Labels[I] == Target) {
512 Labels = Func->allocateArrayOf<CfgNode *>(NumCases);
516 Labels[I] = nullptr;
523 Labels[CaseIndex] = Label;
532 assert(Labels[I]);
533 OutEdges.push_back(Labels[I]);
551 if (Labels[I] == OldNode)
    [all...]
IceInst.h 658 /// Phi instruction. For incoming edge I, the node is Labels[I] and the Phi
672 CfgNode *getLabel(SizeT Index) const { return Labels[Index]; }
673 void setLabel(SizeT Index, CfgNode *Label) { Labels[Index] = Label; }
685 /// Labels[] duplicates the InEdges[] information in the enclosing CfgNode,
688 CfgVector<CfgNode *> Labels;
788 return Labels[I];
801 Func->deallocateArrayOf<CfgNode *>(Labels);
808 CfgNode **Labels; /// size is NumCases
    [all...]
IceAssemblerMIPS32.cpp 76 Label *AssemblerMIPS32::getOrCreateLabel(SizeT Number, LabelVector &Labels) {
78 if (Number == Labels.size()) {
80 Labels.push_back(L);
83 if (Number > Labels.size()) {
84 Labels.resize(Number + 1);
86 L = Labels[Number];
89 Labels[Number] = L;
193 assert(!L->isBound()); // Labels can only be bound once.
    [all...]
IceAssemblerARM32.cpp 728 Label *AssemblerARM32::getOrCreateLabel(SizeT Number, LabelVector &Labels) {
730 if (Number == Labels.size()) {
732 Labels.push_back(L);
735 if (Number > Labels.size()) {
736 Labels.resize(Number + 1);
738 L = Labels[Number];
741 Labels[Number] = L;
755 assert(!L->isBound()); // Labels can only be bound once.
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tree.Tests.pas 138 const Labels: IDictionary<String, IANTLRInterface>);
151 const Labels: IDictionary<String, IANTLRInterface>);
    [all...]
  /external/autotest/server/lib/
status_history.py 516 labels = []
518 labels.append(constants.Labels.BOARD_PREFIX + board)
520 labels.append(constants.Labels.POOL_PREFIX + pool)
521 kwargs = {'multiple_labels': labels}
558 labels = [l for l in self._host.labels
560 return labels[0][len(prefix) : ] if labels else Non
    [all...]
  /external/autotest/site_utils/deployment/
install.py 78 from autotest_lib.site_utils.suite_scheduler.constants import Labels
83 _DEFAULT_POOL = Labels.POOL_PREFIX + 'suites'
372 afe_host.add_labels([Labels.BOARD_PREFIX + arguments.board])
461 and make sure that it has basic labels.
473 host.labels.update_labels(host)
482 version = [label for label in afe_host.labels
580 for label in h.labels:
581 if label.startswith(Labels.POOL_PREFIX):
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
malis.s 73 ;; Section 8.2.8.1 Labels
76 L_label_lower: ; Labels are case sensitive
  /external/autotest/site_utils/
lab_inventory.py 71 # _EXCLUDED_LABELS - A set of labels that disqualify a DUT from
425 return not len(_EXCLUDED_LABELS.intersection(afehost.labels))
448 label_list = [constants.Labels.POOL_PREFIX + l
457 board_label = constants.Labels.BOARD_PREFIX + board
459 if board_label in h.labels]
    [all...]
test_push.py 148 pool_label = constants.Labels.POOL_PREFIX + pool
150 hosts = [h for h in hosts if pool_label in h.get('labels', [])]
303 hosts = AFE.get_hosts(label=constants.Labels.BOARD_PREFIX+board,
307 l for l in host.labels
311 AFE.run('host_remove_labels', id=host.id, labels=labels_to_remove)
balance_pools.py 68 _POOL_PREFIX = constants.Labels.POOL_PREFIX
167 @property labels A list of labels that identify a DUT
190 host_pools = [l for l in host.labels
206 """Return the AFE labels that identify this pool.
208 The returned labels are the labels that must be removed
211 @return A list of AFE labels suitable for AFE.add_labels()
280 For all the given hosts, remove all labels associated with
281 `spare_pool`, and add the labels for `target_pool`
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 122 // the function. This occurs with, e.g., labels that are not
346 // We have to special case labels here. They are statements, but when put
348 // subexpression. Handle this by walking through all labels we encounter,
489 /// Change the cleanup scope of the labels in this lexical scope to
492 assert(!Labels.empty());
496 // Change the scope depth of all the labels.
498 i = Labels.begin(), e = Labels.end(); i != e; ++i) {
506 // Reparent the labels if the new scope also has cleanups.
508 ParentScope->Labels.append(Labels.begin(), Labels.end())
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas     [all...]
  /external/iproute2/doc/
api-ip6-flowlabels.tex 2 \def\TITLE{IPv6 Flow Labels}
5 \Large\bf IPv6 Flow Labels in Linux-2.2.
42 \item To assign flow labels to packets sent by user.
44 \item To get flow labels of received packets. I do not know
46 want to use flow labels to distinguish sub-flows.
48 \item To allocate flow labels in the way, compliant to RFC2460. Namely:
52 Flow labels must be uniformly distributed (pseudo-)random numbers,
65 with flow labels.
74 Flow labels have finite lifetime and source is not allowed to reuse
120 support flow labels, this field is not zero, but a random number
    [all...]

Completed in 1787 milliseconds

1 2