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

1 2 34 5 6 7 8 9

  /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/Calendar/src/com/android/calendar/
TimezoneAdapter.java 400 String[] labels = resources.getStringArray(R.array.timezone_labels); local
405 if (ids.length != labels.length) {
406 Log.wtf(TAG, "ids length (" + ids.length + ") and labels length(" + labels.length +
410 sTimezones.put(ids[i], new TimezoneRow(ids[i], labels[i]));
  /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;
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLRepresentation.mm 355 - (NSString *)searchForLabels:(NSArray *)labels beforeElement:(DOMElement *)element
357 return [self searchForLabels:labels beforeElement:element resultDistance:0 resultIsInCellAbove:0];
360 - (NSString *)searchForLabels:(NSArray *)labels beforeElement:(DOMElement *)element resultDistance:(NSUInteger*)outDistance resultIsInCellAbove:(BOOL*)outIsInCellAbove
365 NSString *result = core([_private->dataSource webFrame])->searchForLabelsBeforeElement(labels, core(element), &distance, &isInCellAbove);
380 - (NSString *)matchLabels:(NSArray *)labels againstElement:(DOMElement *)element
382 return core([_private->dataSource webFrame])->matchLabelsAgainstElement(labels, core(element));
  /frameworks/base/core/java/android/provider/
Contacts.java 965 CharSequence[] labels = labelArray != null? labelArray local
1403 CharSequence[] labels = context.getResources().getTextArray( local
1420 CharSequence[] labels = context.getResources().getTextArray( local
1767 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));
  /packages/apps/DeskClock/src/com/android/deskclock/
SettingsActivity.java 217 String[] labels = resources.getStringArray(R.array.timezone_labels); local
218 if (ids.length != labels.length) {
219 Log.wtf("Timezone ids and labels have different length!");
224 timeZones[1][i] = buildGmtDisplayName(ids[i], labels[i]);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
AddTranslationDialog.java 276 List<String> labels = new ArrayList<String>(); local
278 labels.add(code + ": " + LocaleManager.getLanguageName(code)); //$NON-NLS-1$
280 Collections.sort(labels);
281 labels.add(0, "(Select)");
282 mLanguageCombo.setItems(labels.toArray(new String[labels.size()]));
292 List<String> labels = new ArrayList<String>(); local
294 labels.add(code + ": " + LocaleManager.getRegionName(code)); //$NON-NLS-1$
296 Collections.sort(labels);
297 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/webkit/Source/WebCore/page/
Frame.cpp 335 static RegularExpression* createRegExpForLabels(const Vector<String>& labels)
342 unsigned int numLabels = labels.size();
345 String label = labels[i];
396 String Frame::searchForLabelsBeforeElement(const Vector<String>& labels, Element* element, size_t* resultDistance, bool* resultIsInCellAbove)
398 OwnPtr<RegularExpression> regExp(createRegExpForLabels(labels));
464 static String matchLabelsAgainstString(const Vector<String>& labels, const String& stringToMatch)
475 OwnPtr<RegularExpression> regExp(createRegExpForLabels(labels));
499 String Frame::matchLabelsAgainstElement(const Vector<String>& labels, Element* element)
505 String resultFromNameAttribute = matchLabelsAgainstString(labels, element->getAttribute(nameAttr));
509 return matchLabelsAgainstString(labels, element->getAttribute(idAttr))
    [all...]
  /external/v8/src/
parser.cc     [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp     [all...]
  /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/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/valgrind/main/drd/scripts/
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
  /external/webkit/Source/WebCore/html/
HTMLFormControlElement.h 100 PassRefPtr<NodeList> labels();
  /external/webkit/Source/WebKit/chromium/public/
WebView.h 289 const WebVector<WebString>& labels,
  /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

Completed in 935 milliseconds

1 2 34 5 6 7 8 9