HomeSort by relevance Sort by last modified time
    Searched refs:labels (Results 101 - 125 of 410) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/views/infobars/
infobar_view.h 43 typedef std::vector<views::Label*> Labels;
63 // Given |labels| and the total |available_width| to display them in, sets
67 static void AssignWidths(Labels* labels, int available_width);
106 // Does the actual work for AssignWidths(). Assumes |labels| is sorted by
108 static void AssignWidthsSorted(Labels* labels, int available_width);
  /external/chromium_org/v8/src/
prettyprinter.h 47 void PrintLabels(ZoneList<const AstRawString*>* labels);
88 void PrintLabelsIndented(ZoneList<const AstRawString*>* labels);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ClassReader.java 877 Label[] labels = new Label[codeLength + 2]; local
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
MethodVisitorTee.java 111 public void visitTableSwitchInsn(int min, int max, Label dflt, Label labels[]) {
112 mv1.visitTableSwitchInsn(min, max, dflt, labels);
113 mv2.visitTableSwitchInsn(min, max, dflt, labels);
116 public void visitLookupSwitchInsn(Label dflt, int keys[], Label labels[]) {
117 mv1.visitLookupSwitchInsn(dflt, keys, labels);
118 mv2.visitLookupSwitchInsn(dflt, keys, labels);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
ASMifierMethodVisitor.java 252 final Label[] labels)
255 for (int i = 0; i < labels.length; ++i) {
256 declareLabel(labels[i]);
267 for (int i = 0; i < labels.length; ++i) {
269 appendLabel(labels[i]);
278 final Label[] labels)
281 for (int i = 0; i < labels.length; ++i) {
282 declareLabel(labels[i]);
293 for (int i = 0; i < labels.length; ++i) {
295 appendLabel(labels[i]);
    [all...]
  /external/opencv/ml/src/
mlem.cpp 79 CvEMParams params, CvMat* labels )
85 train(samples, sample_idx, params, labels);
304 CvEMParams _params, CvMat* labels )
332 if( labels && (!CV_IS_MAT(labels) || CV_MAT_TYPE(labels->type) != CV_32SC1 ||
333 labels->cols != 1 && labels->rows != 1 || labels->cols + labels->rows - 1 != nsamples )
488 CvMat* labels = 0; local
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autofill_manager.cc 72 std::vector<base::string16>* labels,
75 DCHECK_EQ(values->size(), labels->size());
87 (*values)[i], (*labels)[i]);
90 labels_copy.push_back((*labels)[i]);
97 labels->swap(labels_copy);
456 std::vector<base::string16> labels; local
476 field, type, &values, &labels, &icons, &unique_ids);
482 &labels,
487 DCHECK_EQ(values.size(), labels.size());
500 labels.assign(1, base::string16())
    [all...]
autofill_profile.h 121 // Labels consist of the minimal differentiating combination of:
130 std::vector<base::string16>* labels);
132 // Creates inferred labels for |profiles|, according to the rules above and
145 std::vector<base::string16>* labels);
174 // Creates inferred labels for |profiles| at indices corresponding to
176 // |labels|. These labels include enough fields to differentiate among the
185 std::vector<base::string16>* labels);
  /external/opencv/cv/src/
cvdistransform.cpp 229 int step, float* dist, int dststep, int* labels, int lstep,
243 lstep /= sizeof(labels[0]);
252 int* lls = (int*)(labels + i*lstep);
329 int* lls = (int*)(labels + i*lstep);
719 CvMat lstub, *labels = (CvMat*)labelsarr; local
728 (CV_MAT_TYPE(dst->type) != CV_8UC1 || distType != CV_DIST_L1 || labels)) )
740 maskSize = !labels ? CV_DIST_MASK_3 : CV_DIST_MASK_5;
741 else if( distType == CV_DIST_L2 && labels )
750 if( labels )
752 CV_CALL( labels = cvGetMat( labels, &lstub ))
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
FrameNode.java 165 public AbstractInsnNode clone(final Map labels) {
173 l = labels.get(l);
183 s = labels.get(s);
  /external/chromium_org/chrome/renderer/autofill/
form_autofill_browsertest.cc 102 const std::vector<base::string16>& labels,
105 std::vector<std::string> control_types(labels.size(), "text");
106 ExpectLabelsAndTypes(html, labels, names, values, control_types);
110 const std::vector<base::string16>& labels,
114 ASSERT_EQ(labels.size(), names.size());
115 ASSERT_EQ(labels.size(), values.size());
116 ASSERT_EQ(labels.size(), control_types.size());
134 ASSERT_EQ(labels.size(), fields.size());
135 for (size_t i = 0; i < labels.size(); ++i) {
139 expected.label = labels[i]
150 std::vector<base::string16> labels, names, values; local
1759 std::vector<base::string16> labels, names, values; local
1827 std::vector<base::string16> labels, names, values; local
1886 std::vector<base::string16> labels, names, values; local
1938 std::vector<base::string16> labels, names, values; local
2095 std::vector<base::string16> labels, names, values; local
2149 std::vector<base::string16> labels, names, values; local
2193 std::vector<base::string16> labels, names, values; local
2228 std::vector<base::string16> labels, names, values; local
2291 std::vector<base::string16> labels, names, values; local
2319 std::vector<base::string16> labels, names, values; local
3536 std::vector<base::string16> labels, names, values; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 96 3) a table defining labels
198 # Parse the labels
199 labels = []
201 mo = re.match(r"static label labels\[(\d+)\] = {$", line)
214 labels.append((x, y))
217 self.labels = labels
230 mo = re.match(r"\s+{(\d+), labels},$", line)
233 assert nlabels == len(self.labels), (lineno, line)
251 self.keywords = {} # map from keyword strings to arc labels
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 96 3) a table defining labels
198 # Parse the labels
199 labels = []
201 mo = re.match(r"static label labels\[(\d+)\] = {$", line)
214 labels.append((x, y))
217 self.labels = labels
230 mo = re.match(r"\s+{(\d+), labels},$", line)
233 assert nlabels == len(self.labels), (lineno, line)
251 self.keywords = {} # map from keyword strings to arc labels
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskListView.java 71 public TaskAdapter(Context context, String[] labels, boolean[] checkboxes) {
74 mLabels = labels;
  /external/chromium_org/chrome/common/variations/
experiment_labels.cc 26 // after the label key to differentiate the labels.
72 base::string16 ExtractNonVariationLabels(const base::string16& labels) {
75 base::SplitString(labels, google_update::kExperimentLabelSeparator, &entries);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.idl 57 readonly attribute NodeList labels;
  /external/chromium_org/tools/telemetry/telemetry/page/
page_filter.py 11 def HasLabelIn(obj, labels):
12 for label in labels:
29 help='Use only pages that have any of these labels')
31 help='Exclude pages that have any of these labels')
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Analyzer.java 93 * equal to the number of instructions (and labels) of the method. A
213 for (int j = 0; j < lsi.labels.size(); ++j) {
214 LabelNode label = (LabelNode) lsi.labels.get(j);
224 for (int j = 0; j < tsi.labels.size(); ++j) {
225 LabelNode label = (LabelNode) tsi.labels.get(j);
325 for (int i = tsnode.labels.size() - 1; i >= 0; --i) {
326 LabelNode l = (LabelNode) tsnode.labels.get(i);
332 for (int i = lsnode.labels.size() - 1; i >= 0; --i) {
333 LabelNode l = (LabelNode) lsnode.labels.get(i);
372 * equal to the number of instructions (and labels) of the method. A
    [all...]
  /external/smack/src/org/xbill/DNS/
Zone.java 332 int labels; local
343 labels = name.labels();
344 olabels = origin.labels();
346 for (tlabels = olabels; tlabels <= labels; tlabels++) {
348 boolean isExact = (tlabels == labels);
355 tname = new Name(name, labels - tlabels);
406 for (int i = 0; i < labels - olabels; i++) {
  /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...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammarParser.cs 348 // token labels:
349 // rule labels: retval
350 // token list labels:
351 // rule list labels:
352 // wildcard labels:
398 // token labels:
399 // rule labels: retval
400 // token list labels:
401 // rule list labels:
402 // wildcard labels:
    [all...]
ProfileGrammarParser.cs 352 // token labels:
353 // rule labels: retval
354 // token list labels:
355 // rule list labels:
356 // wildcard labels:
402 // token labels:
403 // rule labels: retval
404 // token list labels:
405 // rule list labels:
406 // wildcard labels:
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
treewizard.py 422 def visitor(tree, parent, childIndex, labels):
467 The labels arg of the visitor action method is never set (it's None)
513 def rootvisitor(tree, parent, childIndex, labels):
514 labels = {}
515 if self._parse(tree, tpattern, labels):
516 visitor(tree, parent, childIndex, labels)
521 def parse(self, t, pattern, labels=None):
523 Given a pattern like (ASSIGN %lhs:ID %rhs:.) with optional labels
525 return true if the pattern matches and fill the labels Map with
526 the labels pointing at the appropriate nodes. Return false i
    [all...]
  /external/openfst/src/include/fst/
replace-util.h 106 // Replaces Fsts specified by labels.
108 void ReplaceLabels(const vector<Label> &labels);
424 void ReplaceUtil<Arc>::ReplaceLabels(const vector<Label> &labels) {
427 for (Label i = 0; i < labels.size(); ++i)
428 if (labels[i] != root_label_) // can't replace root
429 label_set.insert(labels[i]);
431 // Finds Fst dependencies restricted to the labels requested.
480 vector<Label> labels; local
494 labels.push_back(nonterminal_array_[j]);
498 ReplaceLabels(labels);
503 vector<Label> labels; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeWizard.h 42 - (void) visit:(id<ANTLRTree>)t Parent:(id<ANTLRTree>)parent ChildIndex:(NSInteger)childIndex Map:(ANTLRMap *)labels;
56 - (void) visit:(id<ANTLRTree>)t Parent:(id<ANTLRTree>)parent ChildIndex:(NSInteger)childIndex Map:(ANTLRMap *)labels;
125 - (BOOL)parse:(id<ANTLRTree>)t Pattern:(NSString *)pattern Map:(ANTLRMap *)labels;
127 - (BOOL) _parse:(id<ANTLRTree>)t1 Pattern:(ANTLRTreePattern *)tpattern Map:(ANTLRMap *)labels;

Completed in 2483 milliseconds

1 2 3 45 6 7 8 91011>>