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

1 23 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MethodImplementationBuilder.java 43 // Contains all named labels - both placed and unplaced
44 private final HashMap<String, Label> labels = new HashMap<String, Label>(); field in class:MethodImplementationBuilder
70 Label label = labels.get(name);
80 labels.put(name, label);
98 Label label = labels.get(name);
101 labels.put(name, label);
MethodLocation.java 51 // the labels and debugItems lists only when they are needed
54 private List<Label> labels = null; field in class:MethodLocation
79 if (labels == null) {
81 labels = new ArrayList<Label>(1);
82 return labels;
86 return labels;
102 if (this.labels != null || other.labels != null) {
108 this.labels = null;
111 if (this.debugItems != null || other.labels != null)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
MachineProbe.java 78 /** Return a list of edge labels from start state to targetState. */
81 List<IntSet> labels = new ArrayList<IntSet>(); local
89 labels.add(e.label.getSet());
93 return labels;
101 public String getInputSequenceDisplay(Grammar g, List<IntSet> labels) {
103 for (IntSet label : labels)
111 * labels sequence. The nfaStates gives the set of NFA states associated
113 * nfaStates[i] will have an edge intersecting with labels[i].
116 List<Set<NFAState>> nfaStates, List<IntSet> labels) {
121 IntSet label = labels.get(i)
    [all...]
  /external/chromium_org/courgette/
assembly_program.cc 142 static void DeleteContainedLabels(const RVAToLabel& labels) {
143 for (RVAToLabel::const_iterator p = labels.begin(); p != labels.end(); ++p)
249 Label* AssemblyProgram::FindLabel(RVA rva, RVAToLabel* labels) {
250 Label*& slot = (*labels)[rva];
258 void AssemblyProgram::UnassignIndexes(RVAToLabel* labels) {
259 for (RVAToLabel::iterator p = labels->begin(); p != labels->end(); ++p) {
265 // DefaultAssignIndexes takes a set of labels and assigns indexes in increasing
268 void AssemblyProgram::DefaultAssignIndexes(RVAToLabel* labels) {
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTreeWizard.java 193 public void visit(Object t, Object parent, int childIndex, Map labels) {
210 public void visit(Object t, Object parent, int childIndex, Map labels) {
242 public void visit(Object t, Object parent, int childIndex, Map labels) {
259 public void visit(Object t, Object parent, int childIndex, Map labels) {
262 "["+childIndex+"]"+labels.get("a")+"&"+labels.get("b"));
326 Map labels = new HashMap(); local
327 boolean valid = wiz.parse(t, "(%a:A %b:B %c:C)", labels);
329 assertEquals("A", labels.get("a").toString());
330 assertEquals("B", labels.get("b").toString())
337 Map labels = new HashMap(); local
347 Map labels = new HashMap(); local
358 Map labels = new HashMap(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeWizard.java 59 public void visit(Object t, Object parent, int childIndex, Map labels);
63 public void visit(Object t, Object parent, int childIndex, Map labels) {
227 public void visit(Object t, Object parent, int childIndex, Map labels) {
245 * version of the general visit(t, pattern) method. The labels arg
286 final Map labels = new HashMap(); // reused for each _parse local
291 labels.clear();
292 if ( _parse(t, tpattern, labels) ) {
293 visitor.visit(t, parent, childIndex, labels);
299 /** Given a pattern like (ASSIGN %lhs:ID %rhs:.) with optional labels
301 * return true if the pattern matches and fill the labels Map wit
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
PerformanceCollectorTest.java 95 ArrayList<String> labels = new ArrayList<String>(); local
96 labels.add("timing2");
97 labels.add("timing3");
98 labels.add("timing4");
99 verifyTimingBundle(timing, labels);
162 ArrayList<String> labels = new ArrayList<String>(); local
163 labels.add("timing6");
164 labels.add("timing7");
165 labels.add("timing8");
166 verifyTimingBundle(timing, labels);
255 ArrayList<String> labels = new ArrayList<String>(); local
369 ArrayList<String> labels = new ArrayList<String>(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/infobars/
alternate_nav_infobar_view.h 24 // Treating |labels| as pieces of one continuous string, elides to fit
29 // NOTE: This may modify the text of any/all of the labels, so reset their
31 static void ElideLabels(Labels* labels, int available_width);
  /external/chromium_org/components/autofill/core/browser/
autofill_external_delegate.h 66 const std::vector<base::string16>& labels,
98 std::vector<base::string16>* labels,
106 std::vector<base::string16>* labels,
113 std::vector<base::string16>* labels,
autofill_client.h 86 // Shows an Autofill popup with the given |values|, |labels|, |icons|, and
93 const std::vector<base::string16>& labels,
101 const std::vector<base::string16>& labels) = 0;
test_autofill_client.cc 49 const std::vector<base::string16>& labels,
57 const std::vector<base::string16>& labels) {
test_autofill_client.h 39 const std::vector<base::string16>& labels,
45 const std::vector<base::string16>& labels) OVERRIDE;
  /external/chromium_org/third_party/libvpx/source/libvpx/tools/
vpx-astyle.sh 7 --indent-preprocessor --convert-tabs --indent-labels \
  /external/libvpx/libvpx/tools/
vpx-astyle.sh 7 --indent-preprocessor --convert-tabs --indent-labels \
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
MethodAdapter.java 147 final Label[] labels)
149 mv.visitTableSwitchInsn(min, max, dflt, labels);
155 final Label[] labels)
157 mv.visitLookupSwitchInsn(dflt, keys, labels);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
IincInsnNode.java 74 public AbstractInsnNode clone(final Map labels) {
MultiANewArrayInsnNode.java 74 public AbstractInsnNode clone(final Map labels) {
TypeInsnNode.java 81 public AbstractInsnNode clone(final Map labels) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
vpx-astyle.sh 7 --indent-preprocessor --convert-tabs --indent-labels \
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testtreewizard.py 375 def visitor(node, parent, childIndex, labels):
389 def visitor(node, parent, childIndex, labels):
403 def visitor(node, parent, childIndex, labels):
417 def visitor(node, parent, childIndex, labels):
431 def visitor(node, parent, childIndex, labels):
445 def visitor(node, parent, childIndex, labels):
462 def visitor(node, parent, childIndex, labels):
478 def visitor(node, parent, childIndex, labels):
495 def visitor(node, parent, childIndex, labels):
501 labels['a']
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarDanglingStateMessage.java 61 List labels = probe.getSampleNonDeterministicInputSequence(problemState); local
62 String input = probe.getInputSequenceDisplay(labels);
RecursionOverflowMessage.java 75 List labels = local
77 String input = probe.getInputSequenceDisplay(labels);
  /external/chromium-libpac/test/
Android.mk 15 -Wno-endif-labels \
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLButtonElement.idl 40 readonly attribute NodeList labels;
HTMLKeygenElement.idl 47 readonly attribute NodeList labels;

Completed in 811 milliseconds

1 23 4 5 6 7 8 91011>>