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

1 2 34 5 6 7 8 91011>>

  /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/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);
  /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/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...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
NAIRealmData.java 65 List<String> labels = Utils.splitDomain(realm); local
66 if (DomainMatcher.arg2SubdomainOfArg1(credLabels, labels)) {
  /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;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/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;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/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;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeWizard.h 43 - (void) visit:(ANTLRCommonTree *)t Parent:(ANTLRCommonTree *)parent ChildIndex:(NSInteger)childIndex Map:(ANTLRMap *)labels;
57 - (void) visit:(ANTLRCommonTree *)t Parent:(ANTLRCommonTree *)parent ChildIndex:(NSInteger)childIndex Map:(ANTLRMap *)labels;
125 - (BOOL)parse:(ANTLRCommonTree *)t Pattern:(NSString *)pattern Map:(ANTLRMap *)labels;
127 - (BOOL) _parse:(ANTLRCommonTree *)t1 Pattern:(ANTLRCommonTree *)tpattern Map:(ANTLRMap *)labels;
  /external/llvm/test/MC/Mips/
insn-directive.s 58 # Verify that .insn causes the currently saved labels to be cleared by checking
  /external/v8/tools/
draw_instruction_graph.sh 74 labels=`sed '/^[^#]/d' $file | \
88 $labels
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsMemDetail.java 122 CharSequence[] labels = getResources().getTextArray(R.array.proc_stats_memory_states); local
126 addDetailsItem(mMemStateParent, labels[i], level,
142 CharSequence[] labels = getResources().getTextArray(R.array.proc_stats_process_states); local
150 addMemUseDetailsItem(mMemUseParent, labels[i], mMemStateWeights[i]);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
cursesapp.h 154 // Attributes to use for (form) labels and SLKs
155 virtual chtype labels() const { function in class:NCursesApplication
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
cursesapp.h 154 // Attributes to use for (form) labels and SLKs
155 virtual chtype labels() const { function in class:NCursesApplication

Completed in 3416 milliseconds

1 2 34 5 6 7 8 91011>>