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

1 2 3 45 6 7 8 91011>>

  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskListActivity.java 43 String[] labels = {"Take out Trash", "Do Laundry", local
47 TaskAdapter myAdapter = new TaskAdapter(this, labels, checkboxes);
  /development/samples/SoftKeyboard/res/values/
strings.xml 27 <!-- Labels on soft keys -->
32 <!-- Labels for subtype -->
  /external/chromium_org/ash/system/date/
date_view_unittest.cc 51 // Switching the clock to vertical updates the labels.
57 // Switching back to horizontal updates the labels again.
  /external/chromium_org/components/autofill/core/browser/
autofill_profile.h 111 // Labels consist of the minimal differentiating combination of:
119 std::vector<base::string16>* labels);
121 // Creates inferred labels for |profiles|, according to the rules above and
133 std::vector<base::string16>* labels);
164 // Creates inferred labels for |profiles| at indices corresponding to
166 // |labels|. These labels include enough fields to differentiate among the
174 std::vector<base::string16>* labels);
test_autofill_manager_delegate.h 39 const std::vector<base::string16>& labels,
45 const std::vector<base::string16>& labels) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/html/
LabelableElement.h 39 // specification, and provides the implementation of the "labels" attribute.
43 PassRefPtr<NodeList> labels();
  /external/chromium_org/tools/gn/
value_extractors.h 55 // Extracts the list of labels and their origins to the given vector. Only the
56 // labels are filled in, the ptr for each pair in the vector will be null.
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfButtons.java 57 public MyAdapter(Context context, String[] labels) {
58 super(context, 0, labels);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeWizard.m 69 - (void) visit:(ANTLRCommonTree *)t Parent:(ANTLRCommonTree *)parent ChildIndex:(NSInteger)childIndex Map:(ANTLRMap *)labels
73 [(ANTLRMap *)object2 /* labels */ clear];
74 if ( [(ANTLRTreeWizard *)actor _parse:t Pattern:object1/* tpattern */ Map:object2 /* labels */] ) {
75 [self visit:t Parent:parent ChildIndex:childIndex Map:object2 /* labels */];
384 public void visit(Object t, Object parent, int childIndex, Map labels) {
407 * version of the general visit(t, pattern) method. The labels arg
455 ANTLRMapElement *labels = [ANTLRMap newANTLRMap]; // reused for each _parse
462 labels.clear();
463 if ( _parse(t, tpattern, labels) ) {
464 visitor.visit(t, parent, childIndex, labels);
    [all...]
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZonePickerUtils.java 50 // labels every time getGmtDisplayName is called), we'll cache the lists of override IDs
51 // and labels now.
59 * @param context Context in case the override labels need to be re-cached.
74 // If the IDs and labels haven't been set yet, or if the locale has been changed
158 * except that certain timezones have poor defaults, and should use the pre-set override labels
178 // If the ID doesn't need to have the display name overridden, or if the labels were
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-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.7-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
  /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/google_apis/drive/
drive_api_parser_unittest.cc 147 EXPECT_FALSE(file1.labels().is_starred());
148 EXPECT_FALSE(file1.labels().is_hidden());
149 EXPECT_FALSE(file1.labels().is_trashed());
150 EXPECT_FALSE(file1.labels().is_restricted());
151 EXPECT_TRUE(file1.labels().is_viewed());
200 EXPECT_TRUE(file2.labels().is_starred());
201 EXPECT_TRUE(file2.labels().is_hidden());
202 EXPECT_TRUE(file2.labels().is_trashed());
203 EXPECT_TRUE(file2.labels().is_restricted());
204 EXPECT_TRUE(file2.labels().is_viewed())
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
ACyclicDFACodeGenerator.java 115 if ( edgeST.impl.formalArguments.get("labels")!=null ) {
116 List labels = edge.label.getSet().toList(); local
117 for (int j = 0; j < labels.size(); j++) {
118 Integer vI = (Integer) labels.get(j);
121 labels.set(j, label); // rewrite List element to be name
123 edgeST.add("labels", labels);
  /external/chromium/chrome/browser/autofill/
autofill_profile.h 75 // Adjusts the labels according to profile data.
76 // Labels contain minimal different combination of:
83 // Profile labels are changed accordingly to these rules.
85 // This function is useful if you want to adjust unique labels for all
90 // Creates inferred labels for |profiles|, according to the rules above and
143 // Creates inferred labels for |profiles| at indices corresponding to
145 // |created_labels|. These labels include enough fields to differentiate among
  /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/chromium_org/chrome/renderer/autofill/
form_autofill_browsertest.cc 95 const std::vector<base::string16>& labels,
98 std::vector<std::string> control_types(labels.size(), "text");
99 ExpectLabelsAndTypes(html, labels, names, values, control_types);
103 const std::vector<base::string16>& labels,
107 ASSERT_EQ(labels.size(), names.size());
108 ASSERT_EQ(labels.size(), values.size());
109 ASSERT_EQ(labels.size(), control_types.size());
127 ASSERT_EQ(labels.size(), fields.size());
128 for (size_t i = 0; i < labels.size(); ++i) {
132 expected.label = labels[i]
143 std::vector<base::string16> labels, names, values; local
1370 std::vector<base::string16> labels, names, values; local
1438 std::vector<base::string16> labels, names, values; local
1497 std::vector<base::string16> labels, names, values; local
1549 std::vector<base::string16> labels, names, values; local
1706 std::vector<base::string16> labels, names, values; local
1760 std::vector<base::string16> labels, names, values; local
1804 std::vector<base::string16> labels, names, values; local
1839 std::vector<base::string16> labels, names, values; local
1902 std::vector<base::string16> labels, names, values; local
1930 std::vector<base::string16> labels, names, values; local
3049 std::vector<base::string16> labels, names, values; local
    [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/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/chromium_org/android_webview/native/
aw_autofill_manager_delegate.cc 88 const std::vector<string16>& labels,
105 labels,
112 const std::vector<string16>& labels,
128 ConvertUTF16ToJavaString(env, labels[i]);
148 const std::vector<base::string16>& labels) {
  /external/marisa-trie/lib/marisa/
base.h 105 // labels.
107 // builds a dictionary with a binary-mode TAIL. Its last labels are stored
110 // builds a dictionary with a text-mode TAIL if its last labels do not
111 // contain NULL characters. The last labels are stored as zero-terminated
118 // libmarisa arranges nodes in ascending order of their labels
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
base.h 100 // labels.
102 // builds a dictionary with a binary-mode TAIL. Its last labels are stored
105 // builds a dictionary with a text-mode TAIL if its last labels do not
106 // contain NULL characters. The last labels are stored as zero-terminated
113 // libmarisa arranges nodes in ascending order of their labels
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DecisionProbe.java 155 /** Used while finding a path through an NFA whose edge labels match
304 List<Label> labels = new ArrayList<Label>(); // may access ith element; use array local
306 return labels;
311 labels);
312 return labels;
319 public String getInputSequenceDisplay(List labels) {
322 for (Iterator it = labels.iterator(); it.hasNext();) {
333 * find the path of NFA states associated with the labels sequence.
353 * The NFA path matching the sample input sequence (labels) is computed
361 List labels)
    [all...]

Completed in 3888 milliseconds

1 2 3 45 6 7 8 91011>>