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

1 2 3 4 5 6 78 91011>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
ConfigResults.java 584 List labels = new ArrayList(); local
590 labels.add(buildName);
591 if (labels.size() >= n) {
597 return labels;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
CodeEmitter.java 620 Label[] labels = new Label[range]; local
621 Arrays.fill(labels, def);
623 labels[keys[i] - min] = make_label();
625 mv.visitTableSwitchInsn(min, max, def, labels);
627 Label label = labels[i];
634 Label[] labels = new Label[len]; local
636 labels[i] = make_label();
638 mv.visitLookupSwitchInsn(def, keys, labels);
640 mark(labels[i]);
  /external/valgrind/main/drd/scripts/
download-and-build-splash2 91 CFLAGS := \$(CFLAGS) -Wpadded -Winline -Wpointer-arith -Wsign-compare -Wendif-labels
93 CFLAGS := \$(CFLAGS) -Wpadded -Winline -Wpointer-arith -Wsign-compare -Wendif-labels
download-and-build-splash2.in 91 CFLAGS := \$(CFLAGS) -Wpadded -Winline -Wpointer-arith -Wsign-compare -Wendif-labels
93 CFLAGS := \$(CFLAGS) -Wpadded -Winline -Wpointer-arith -Wsign-compare -Wendif-labels
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
cursslk.h 105 static int NCURSES_IMPEXP num_labels; // Number Of Labels in Key Sets
116 // Activate of Deactivate all Labels
169 // Retrieve number of Labels
170 inline int labels() const { return num_labels; } function in class:Soft_Label_Key_Set
202 // Show all Labels
208 // Hide all Labels
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
cursslk.h 105 static int NCURSES_IMPEXP num_labels; // Number Of Labels in Key Sets
116 // Activate of Deactivate all Labels
169 // Retrieve number of Labels
170 inline int labels() const { return num_labels; } function in class:Soft_Label_Key_Set
202 // Show all Labels
208 // Hide all Labels
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
MethodSourcer.java 216 public void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels) {
242 public void visitTableSwitchInsn(int min, int max, Label dflt, Label[] labels) {
  /external/chromium_org/chrome/browser/chromeos/drive/sync/
remove_performer_unittest.cc 60 EXPECT_TRUE(gdata_entry->labels().is_trashed());
117 EXPECT_FALSE(gdata_entry->labels().is_trashed()); // It's not deleted.
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
structural_line_walker.js 56 // labels computed for the node.
  /external/chromium_org/components/autofill/core/browser/
personal_data_manager.h 151 std::vector<base::string16>* labels,
162 std::vector<base::string16>* labels,
personal_data_manager.cc 558 std::vector<base::string16>* labels,
562 labels->clear();
639 type.GetStorableType(), 1, app_locale_, labels);
641 // No sub-labels for previously filled fields.
642 labels->resize(values->size());
653 std::vector<base::string16>* labels,
657 labels->clear();
692 labels->push_back(label);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/
internal_alerts_test.py 120 # fake labels
121 labels = [['', 'last_', 'latest_', 'failing_', 'passing_'],
126 return string.join(map(random.choice, labels), '')
  /external/chromium_org/v8/test/mjsunit/compiler/
switch-bailout.js 31 // the labels in the AST.
  /external/llvm/test/MC/ARM/
ltorg-darwin.s 3 @ because the syntax for switching sections and temporary labels differs
81 @ check that ltorg works for labels
ltorg.s 3 @ because the syntax for switching sections and temporary labels differs
75 @ check that ltorg works for labels
  /external/opencv/ml/src/
_ml.h 261 /* Fills the <labels> using <probs> by choosing the maximal probability. Outliers are
267 const CvMat* labels );
318 (labels and/or centers and/or probs) back to the output arrays */
320 cvWritebackLabels( const CvMat* labels, CvMat* dst_labels,
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_parser_extras.cpp 887 foreach_list_const(n, & this->labels) {
902 labels->print();
911 ast_case_statement::ast_case_statement(ast_case_label_list *labels)
913 this->labels = labels;
  /external/mesa3d/src/glsl/
glsl_parser_extras.cpp 887 foreach_list_const(n, & this->labels) {
902 labels->print();
911 ast_case_statement::ast_case_statement(ast_case_label_list *labels)
913 this->labels = labels;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
pgen.py 63 ilabel = len(c.labels)
71 c.labels.append((c.symbol2number[label], None))
82 c.labels.append((itoken, None))
94 c.labels.append((token.NAME, value))
103 c.labels.append((itoken, None))
231 # set of arcs (same labels pointing to the same nodes) and
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
pgen.py 63 ilabel = len(c.labels)
71 c.labels.append((c.symbol2number[label], None))
82 c.labels.append((itoken, None))
94 c.labels.append((token.NAME, value))
103 c.labels.append((itoken, None))
231 # set of arcs (same labels pointing to the same nodes) and
  /system/core/toolbox/
getevent.c 35 static const char *get_label(const struct label *labels, int value)
37 while(labels->name && value != labels->value) {
38 labels++;
40 return labels->name;
  /external/chromium_org/v8/src/
ast.h 408 // The labels associated with this statement. May be NULL;
410 ZoneList<const AstRawString*>* labels() const { return labels_; } function in class:v8::internal::BreakableStatement
429 BreakableStatement(Zone* zone, ZoneList<const AstRawString*>* labels,
432 labels_(labels),
436 DCHECK(labels == NULL || labels->length() > 0);
464 && labels() == NULL; // Good enough as an approximation...
471 Block(Zone* zone, ZoneList<const AstRawString*>* labels, int capacity,
473 : BreakableStatement(zone, labels, TARGET_FOR_NAMED_ONLY, pos, id_gen),
742 IterationStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos
    [all...]
  /frameworks/base/cmds/pm/src/com/android/commands/pm/
Pm.java 563 boolean labels = false;
571 labels = true;
576 labels = true;
604 doListPermissions(groupList, groups, labels, summary,
610 doListPermissions(groupList, groups, labels, summary,
617 doListPermissions(groupList, groups, labels, summary,
623 doListPermissions(groupList, groups, labels, summary,
635 boolean groups, boolean labels, boolean summary,
656 System.out.println((labels ? "+ " : "")
658 if (labels) {
    [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/
Code.java 93 * <h3>Branches, Labels and Returns</h3>
94 * Basic control flow is expressed using jumps and labels. Each label must be
113 * This API uses labels to handle thrown exceptions, errors and throwables. Call
181 * All allocated labels. Although the order of the labels in this list
184 private final List<Label> labels = new ArrayList<Label>(); field in class:Code
297 labels.get(0).instructions.addAll(0, moveParameterInstructions);
312 // labels
325 labels.add(target);
458 * @param catchLabels an immutable list of catch labels
    [all...]
  /external/chromium_org/chrome/browser/autofill/android/
personal_data_manager_android.cc 282 std::vector<base::string16> labels; local
289 &labels);
291 return base::android::ToJavaArrayOfStrings(env, labels);

Completed in 3507 milliseconds

1 2 3 4 5 6 78 91011>>