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

1 2 3 4 5 67 8 91011>>

  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
StubMethodAdapter.java 342 public void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels) {
344 mParentVisitor.visitLookupSwitchInsn(dflt, keys, labels);
356 public void visitTableSwitchInsn(int min, int max, Label dflt, Label[] labels) {
358 mParentVisitor.visitTableSwitchInsn(min, max, dflt, labels);
  /packages/apps/DeskClock/src/com/android/deskclock/
SettingsActivity.java 257 String[] labels = resources.getStringArray(R.array.timezone_labels);
259 if (ids.length != labels.length) {
260 minLength = Math.min(minLength, labels.length);
261 LogUtils.e("Timezone ids and labels have different length!");
265 timezones.add(new TimeZoneRow(ids[i], labels[i]));
  /external/chromium_org/components/autofill/core/browser/
autofill_manager.h 163 const std::vector<base::string16>& labels);
264 // value of |field| and returns the labels of the matching profiles. |labels|
270 std::vector<base::string16>* labels,
275 // the value of |field| and returns the labels of the matching credit cards.
279 std::vector<base::string16>* labels,
autofill_profile.cc 54 // labels that can help to distinguish between two profiles. Draws fields from
726 std::vector<base::string16>* labels) {
729 app_locale, labels);
730 DCHECK_EQ(profiles.size(), labels->size());
740 std::vector<base::string16>* labels) {
747 // then used to detect which labels need further differentiating fields.
757 labels->resize(profiles.size());
765 (*labels)[profile_index] = label;
770 minimal_fields_shown, app_locale, labels);
882 std::vector<base::string16>* labels) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
ComponentResultsElement.java 178 List labels = new ArrayList(); local
185 labels.add(scenarioResults.getLabel());
189 return labels;
  /frameworks/base/core/java/android/provider/
Contacts.java 964 CharSequence[] labels = labelArray != null? labelArray local
1402 CharSequence[] labels = context.getResources().getTextArray( local
1419 CharSequence[] labels = context.getResources().getTextArray( local
1766 CharSequence[] labels = context.getResources().getTextArray( local
    [all...]
  /frameworks/base/tests/backup/src/com/android/backuptest/
BackupTestActivity.java 188 String[] labels = new String[mTests.length]; local
190 labels[i] = mTests[i].name;
193 setListAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, labels));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
AddTranslationDialog.java 279 List<String> labels = new ArrayList<String>(); local
281 labels.add(code + ": " + LocaleManager.getLanguageName(code)); //$NON-NLS-1$
283 Collections.sort(labels);
284 labels.add(0, "(Select)");
285 mLanguageCombo.setItems(labels.toArray(new String[labels.size()]));
295 List<String> labels = new ArrayList<String>(); local
297 labels.add(code + ": " + LocaleManager.getRegionName(code)); //$NON-NLS-1$
299 Collections.sort(labels);
300 labels.add(0, "Any")
    [all...]
  /external/mdnsresponder/Clients/
dns-sd.c 344 int labels = 0, depth = 0, i, initial = 0; local
367 // 2. Count the labels
368 while (replyDomain && *replyDomain && labels < MAX_LABELS)
370 label[labels++] = replyDomain;
374 // 3. Decide if we're going to clump the last two or three labels (e.g. "apple.com", or "nicta.com.au")
375 if (labels >= 3 && replyDomain - label[labels-1] <= 3 && label[labels-1] - label[labels-2] <= 4) initial = 3;
376 else if (labels >= 2 && replyDomain - label[labels-1] <= 4) initial = 2
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetMetaDataTest.java 120 String[] labels = { "id", "name", "family" }; local
124 assertTrue("expected "+labels[i] + "got "+label,labels[i].contains(label));
147 String[] labels = { "id", "name", "family" }; local
151 assertEquals(labels[i], name);
  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 146 ArrayList<String> labels = local
151 if (labels != null && icons != null && labels.size() == icons.size()) {
152 for (int i = 0; i < labels.size(); i++) {
153 String label = labels.get(i);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 94 # iterate through the tree and extract nodes with pattern labels
95 wizard.visit(deep_node, '(MULT %n:NUMBER %v:.)') do |node, parent, local_index, labels|
96 printf "n = %p\n, v = %p\n", labels['n'], labels['v']
410 visit( tree, pattern.type ) do | tree, parent, child_index, labels |
411 labels = match!( tree, pattern ) and
412 yield( tree, parent, child_index, labels )
422 def match!( tree, pattern, labels = {} )
429 labels[ pattern.label ] = tree if labels && pattern.labe
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
AST.stg 174 # token labels: <referencedTokenLabels; separator=", ">
175 # rule labels: <referencedRuleLabels; separator=", ">
176 # token list labels: <referencedTokenListLabels; separator=", ">
177 # rule list labels: <referencedRuleListLabels; separator=", ">
178 # wildcard labels: <[referencedWildcardLabels,referencedWildcardListLabels]; separator=", ">
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_mesa_to_tgsi.c 84 struct label *labels; member in struct:st_translate
89 * instruction starts at, will be used to fix up labels after
113 * of labels built here and patch the TGSI code with the actual
123 t->labels = realloc(t->labels, t->labels_size * sizeof t->labels[0]);
124 if (t->labels == NULL) {
132 t->labels[i].branch_target = branch_target;
133 return &t->labels[i].token;
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_mesa_to_tgsi.c 84 struct label *labels; member in struct:st_translate
89 * instruction starts at, will be used to fix up labels after
113 * of labels built here and patch the TGSI code with the actual
123 t->labels = realloc(t->labels, t->labels_size * sizeof t->labels[0]);
124 if (t->labels == NULL) {
132 t->labels[i].branch_target = branch_target;
133 return &t->labels[i].token;
    [all...]
  /external/chromium_org/v8/src/
parser.cc     [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp     [all...]
  /external/smack/src/org/xbill/DNS/
Cache.java 405 int labels; local
412 labels = name.labels();
414 for (tlabels = labels; tlabels >= 1; tlabels--) {
416 boolean isExact = (tlabels == labels);
423 tname = new Name(name, labels - tlabels);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mailbox.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mailbox.py     [all...]
  /external/chromium_org/tools/deep_memory_profiler/lib/
policy.py 356 def load(labels=None):
359 The "default policy directory" contains pairs of policies and their labels.
364 limited by |labels|.
367 labels: An array that contains policy labels to be loaded.
373 if labels:
375 for label in labels:
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-trees.rb 813 labels = @wizard.match( tree,
817 assert_kind_of( Hash, labels )
818 @wizard.in_context?( labels.fetch( 'x' ), 'VEC' ).should be_true
826 labels = @wizard.match( tree, "(%x:PRINT (MULT ID (VEC INT INT INT)))" )
827 assert_kind_of( Hash, labels )
828 @wizard.in_context?( labels.fetch( 'x' ), 'VEC' ).should be_false
836 labels = @wizard.match( tree,
839 assert_kind_of( Hash, labels )
840 node = labels.fetch( 'x' )
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFA.java 517 IntervalSet labels = (IntervalSet)label.getSet();
518 int lmin = labels.getMinElement();
521 smin = labels.getMinElement();
523 if ( labels.getMaxElement()>smax ) {
524 smax = labels.getMaxElement();
563 IntervalSet labels = (IntervalSet)label.getSet();
564 int[] atoms = labels.toArray();
607 IntervalSet labels = (IntervalSet)label.getSet();
608 int[] atoms = labels.toArray();
    [all...]
  /external/chromium_org/chrome/browser/autofill/
content_autofill_driver_browsertest.cc 44 const std::vector<base::string16>& labels,
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
folder_creator.cc 102 if (!entry.IsDirectory() || entry.labels().is_trashed())

Completed in 2248 milliseconds

1 2 3 4 5 67 8 91011>>