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

1 2 3 45 6 7 8 9

  /external/v8/src/
ast.h 378 // The labels associated with this statement. May be NULL;
380 ZoneStringList* labels() const { return labels_; } function in class:v8::internal::BreakableStatement
396 BreakableStatement(Isolate* isolate, ZoneStringList* labels, Type type)
397 : labels_(labels),
401 ASSERT(labels == NULL || labels->length() > 0);
430 ZoneStringList* labels,
433 : BreakableStatement(isolate, labels, TARGET_FOR_NAMED_ONLY),
694 IterationStatement(Isolate* isolate, ZoneStringList* labels)
695 : BreakableStatement(isolate, labels, TARGET_FOR_ANONYMOUS)
    [all...]
  /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/chrome/browser/autofill/
autofill_manager.h 197 // value of |field| and returns the labels of the matching profiles. |labels|
203 std::vector<string16>* labels,
208 // the value of |field| and returns the labels of the matching credit cards.
213 std::vector<string16>* labels,
autofill_profile.cc 38 // labels that can help to distinguish between two profiles. Draws fields from
352 // then used to detect which labels need further differentiating fields.
353 std::map<string16, std::list<size_t> > labels; local
358 labels[label].push_back(i);
363 labels.begin();
364 it != labels.end(); ++it) {
  /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,
mltree.cpp 252 // to locate responses and cross-validation labels using
418 // replace labels for missing values with -1
1438 const int* labels = data->get_cat_var_data(node,vi); local
2164 const int* labels = data->get_cat_var_data(node, vi); local
2453 const int* labels = data->get_cat_var_data(node, vi); local
    [all...]
  /external/v8/test/mjsunit/compiler/
switch-bailout.js 31 // the labels in the AST.
  /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;
  /frameworks/base/cmds/pm/src/com/android/commands/pm/
Pm.java 505 boolean labels = false;
513 labels = true;
518 labels = true;
546 doListPermissions(groupList, groups, labels, summary,
552 doListPermissions(groupList, groups, labels, summary,
559 doListPermissions(groupList, groups, labels, summary,
565 doListPermissions(groupList, groups, labels, summary,
575 boolean groups, boolean labels, boolean summary,
596 System.out.println((labels ? "+ " : "")
598 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...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/util/
ContactsUtils.java 110 CharSequence[] labels = context.getResources().getTextArray(arrayResId); local
112 display = labels[type - 1];
114 display = labels[defaultType - 1];
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ButtonDetector.java 376 // labels. If you define "OK" in one resource file and "Cancel" in another
514 /** Creates a display string for a list of button labels, such as "Cancel | OK" */
527 /** Returns the ordered list of button labels */
529 List<String> labels = new ArrayList<String>(); local
539 labels.add(label);
547 return labels;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ConfigTab.java 532 List labels = this.results.getScenariosLabels(fingerprints); local
533 labels.add(0, "Build");
534 String[] names = new String[labels.size()];
535 labels.toArray(names);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java 623 //sort the labels by their location in the method
637 protected HashMap<LabelMethodItem, LabelMethodItem> labels = new HashMap<LabelMethodItem, LabelMethodItem>(); field in class:MethodDefinition.LabelCache
643 LabelMethodItem internedLabelMethodItem = labels.get(labelMethodItem);
647 labels.put(labelMethodItem, labelMethodItem);
653 return labels.values();
  /external/v8/
Android.libv8.mk 85 -Wno-endif-labels \
Android.mksnapshot.mk 78 -Wno-endif-labels \
  /external/webkit/Source/WebCore/html/
HTMLInputElement.idl 103 readonly attribute NodeList labels;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAToDFAConverter.java 197 * labels 'a' where t is a DFA node created
203 OrderedHashSet labels = d.getReachableLabels(); local
204 //System.out.println("reachable labels="+labels);
208 labels.size()+"/"+d.getNFAConfigurations().size()+"="+
209 labels.size()/(float)d.getNFAConfigurations().size());
237 boolean containsEOT = labels!=null && labels.contains(EOTLabel);
270 if ( labels!=null ) {
271 numLabels = labels.size()
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
FormManagerAndroid.cpp 372 // labels for all form control elements are scraped from the DOM and set in
430 // Don't scrape labels for elements we can't possible autofill anyway.
434 RefPtr<NodeList> labels = element.document()->getElementsByTagName("label");
435 for (unsigned i = 0; i < labels->length(); ++i) {
436 Node* e = labels->item(i);
510 // Don't extract field labels if we have no fields.
519 RefPtr<WebCore::NodeList> labels = element->getElementsByTagName("label");
520 for (unsigned i = 0; i < labels->length(); ++i) {
521 HTMLLabelElement* label = static_cast<WebCore::HTMLLabelElement*>(labels->item(i));
528 // Concatenate labels because some sites might have multiple labe
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewProjectPage.java 216 List<String> labels = new ArrayList<String>(24); local
218 labels.add(label);
220 assert labels.size() >= 15; // *Known* versions to ADT, not installed/available versions
222 labels.add(codeName);
224 String[] versions = labels.toArray(new String[labels.size()]);
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 65 can reclaim them with a simple popping algorithm. The same goes for labels.
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
XmlKeyboardLoader.java 225 /** Attribute tag of the key labels in a key array. */
226 private static final String XMLATTR_KEY_LABELS = "labels";
527 String labels = xrp.getAttributeValue(null, local
531 if (null == splitter || null == labels) {
534 String labelArr[] = labels.split(splitter);
    [all...]
  /sdk/traceview/src/com/android/traceview/
DmTraceReader.java 692 HashMap<Integer, String> labels = new HashMap<Integer, String>(); local
694 labels.put(t.getId(), t.getName());
696 return labels;
  /ndk/sources/host-tools/sed-4.2.1/sed/
compile.c 87 /* Label structure used to resolve GOTO's, labels, and block beginnings. */
114 /* Information about labels and jumps-to-labels. This is used to do
117 static struct sed_label *labels = NULL;
1205 labels = setup_label(labels, vector->v_length, read_label(), NULL);
115 static struct sed_label *labels = NULL; variable in typeref:struct:sed_label
    [all...]
  /external/webkit/Source/WebKit/win/
WebFrame.h 372 HRESULT searchForLabelsBeforeElement(const BSTR* labels, unsigned cLabels, IDOMElement* beforeElement, unsigned* resultDistance, BOOL* resultIsInCellAbove, BSTR* result);
373 HRESULT matchLabelsAgainstElement(const BSTR* labels, int cLabels, IDOMElement* againstElement, BSTR* result);

Completed in 901 milliseconds

1 2 3 45 6 7 8 9