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

1 2 34 5 6 7 8 91011>>

  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Label.java 33 * A label represents a position in the bytecode of a method. Labels are used
38 public class Label {
41 * Indicates if this label is only used for debug attributes. Such a label
49 * Indicates if the position of this label is known.
54 * Indicates if this label has been updated, after instruction resizing.
65 * Indicates if this label is the target of a jump instruction, or the start
71 * Indicates if a stack map frame must be stored for this label.
76 * Indicates if this label corresponds to a reachable basic block.
101 * Field used to associate user information to a label. Warning: this field
    [all...]
  /external/v8/src/compiler/
code-generator.h 25 Label* true_label;
26 Label* false_label;
60 Label* GetLabel(RpoNumber rpo) { return &labels_[rpo.ToSize()]; }
133 // Adds a jump table that is emitted after the actual code. Returns label
136 Label* AddJumpTable(Label** targets, size_t target_count);
138 void AssembleJumpTable(Label** targets, size_t target_count);
195 Label* handler;
205 Label* const labels_;
206 Label return_label_
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
UsagePermissionPage.java 31 import org.eclipse.swt.widgets.Label;
66 Label label = new Label(container, SWT.WRAP); local
69 label.setLayoutData(gd_lblByChoosingTo);
70 label.setText(SdkStatsPermissionDialog.BODY_TEXT);
72 Label blankLine = new Label(container, SWT.NONE);
74 Label questionLabel = new Label(container, SWT.NONE)
    [all...]
  /external/google-breakpad/src/common/
test_assembler_unittest.cc 41 using google_breakpad::test_assembler::Label;
48 Label l;
52 Label l;
57 Label l;
62 Label l(0x060b9f974eaf301eULL);
70 Label l;
71 Label m(l);
77 // The left-hand-side of a label assignment can be either
81 Label l, m;
92 Label l, m, n
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64.h 306 void Adr(const Register& rd, Label* label, AdrHint = kAdrNear);
317 void B(Label* label, BranchType type, Register reg = NoReg, int bit = -1);
319 inline void B(Label* label);
320 inline void B(Condition cond, Label* label);
321 void B(Label* label, Condition cond)
    [all...]
codegen-arm64.h 24 Label* call_runtime);
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DuplicateFrameEliminator.java 16 import org.objectweb.asm.Label;
89 public void visitJumpInsn(final int opcode, final Label label) {
91 mv.visitJumpInsn(opcode, label);
108 final Label dflt, final Label... labels) {
114 public void visitLookupSwitchInsn(final Label dflt, final int[] keys,
115 final Label[] labels) {
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
MethodNode.java 35 import org.mockito.asm.Label;
94 * @label invisible parameters
103 * @label visible parameters
112 * @label instructions
279 public void visitJumpInsn(final int opcode, final Label label) {
280 instructions.add(new JumpInsnNode(opcode, getLabelNode(label)));
283 public void visitLabel(final Label label) {
284 instructions.add(getLabelNode(label));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
InstallDependencyPage.java 36 import org.eclipse.swt.widgets.Label;
95 Label dependLabel = new Label(container, SWT.WRAP);
108 Label lblNewLabel_1 = new Label(container, SWT.NONE);
111 requiredLabel = new Label(container, SWT.NONE);
114 mRequiredVersion = new Label(container, SWT.NONE);
117 installedLabel = new Label(container, SWT.NONE);
120 mInstalledVersion = new Label(container, SWT.NONE);
123 Label lblNewLabel = new Label(container, SWT.NONE)
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
MethodSourcer.java 23 import org.objectweb.asm.Label;
191 public void visitJumpInsn(int opcode, Label label) {
196 public void visitLabel(Label label) {
206 public void visitLineNumber(int line, Label start) {
212 Label start, Label end, int index) {
217 public void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourcePage.java 35 import org.eclipse.swt.widgets.Label;
42 private Label mXmlLabel;
43 private Label mJavaLabel;
71 Label nameLabel = new Label(container, SWT.NONE);
77 Label xmlLabel = new Label(container, SWT.NONE);
80 mXmlLabel = new Label(container, SWT.NONE);
82 Label javaLabel = new Label(container, SWT.NONE)
    [all...]
  /external/v8/src/regexp/
regexp-macro-assembler-irregexp.cc 41 void RegExpMacroAssemblerIrregexp::Bind(Label* l) {
56 void RegExpMacroAssemblerIrregexp::EmitOrLink(Label* l) {
165 void RegExpMacroAssemblerIrregexp::GoTo(Label* l) {
180 void RegExpMacroAssemblerIrregexp::PushBacktrack(Label* l) {
208 Label* on_tos_equals_current_position) {
215 Label* on_failure,
246 Label* on_less) {
253 Label* on_greater) {
259 void RegExpMacroAssemblerIrregexp::CheckCharacter(uint32_t c, Label* on_equal) {
270 void RegExpMacroAssemblerIrregexp::CheckAtStart(Label* on_at_start)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
NFAFactory.java 97 if ( t.label.isEpsilon() && !t.label.isAction() && s.getNumberOfTransitions()==1 ) {
117 /** From label A build Graph o-A->o */
118 public StateCluster build_Atom(int label, GrammarAST associatedAST) {
123 transitionBetweenStates(left, right, label);
141 Label label = new Label(set); local
142 Transition e = new Transition(label,right);
156 Label label = s0.transition(0).target.transition(0).label
166 Label label = new Label(IntervalSet.of(a, b)); local
317 int label = Label.EOF; local
676 Label label = new Label(nfa.grammar.getTokenTypes()); \/\/ char or tokens local
719 Label label = s1.transition(0).label; local
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
HostSelectorDisplay.java 13 import com.google.gwt.user.client.ui.Label;
23 private Label hostSelectorTitle = new Label("Select Hosts for Running Tests:");
36 // Set title label style
45 hostnamePanel.add(new Label("Enter hostnames, separated by commas or spaces"));
59 labelTop.add(new Label("Run on any hosts with label"));
63 labelBottom.add(new Label("Number of hosts:"));
76 Label selectedTitle = new Label("Selected hosts:")
    [all...]
  /external/google-breakpad/src/processor/
synth_minidump.h 72 // Because the test_assembler classes let us write Label references to
129 using test_assembler::Label;
154 virtual void Finish(const Label &offset) {
160 Label file_offset_, size_;
222 // Shouldn't this be a Label?
304 virtual void Finish(const Label &offset) {
311 Label count_label_;
344 // A label representing the start of the minidump file.
345 Label file_start_;
351 Label stream_count_label_; // Cited in file header
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
LabelInfoTest.java 22 import org.objectweb.asm.Label;
29 private Label label; field in class:LabelInfoTest
33 label = new Label();
38 assertFalse(LabelInfo.isMultiTarget(label));
39 assertFalse(LabelInfo.isSuccessor(label));
40 assertFalse(LabelInfo.isMethodInvocationLine(label));
41 assertFalse(LabelInfo.isDone(label));
42 assertEquals(LabelInfo.NO_PROBE, LabelInfo.getProbeId(label));
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderInstruction21t.java 37 import org.jf.dexlib2.builder.Label;
50 @Nonnull Label target) {
BuilderInstruction22t.java 37 import org.jf.dexlib2.builder.Label;
52 @Nonnull Label target) {
BuilderInstruction31t.java 37 import org.jf.dexlib2.builder.Label;
50 @Nonnull Label target) {
  /external/vixl/benchmarks/
bench-branch.cc 39 // This code therefore focuses on Emit and label binding/patching.
63 Label target;
75 Label target;
  /external/vixl/examples/
debugger.cc 39 Label hop;
61 Label start;
factorial.cc 37 Label loop, end;
65 Label factorial;
  /external/v8/src/arm/
codegen-arm.h 24 Label* call_runtime);
  /external/v8/src/ia32/
codegen-ia32.h 25 Label* call_runtime);
  /external/v8/src/ic/
handler-compiler.h 34 Label* miss, ReturnHolder return_what) {
39 virtual void FrontendFooter(Handle<Name> name, Label* miss) { UNREACHABLE(); }
44 void NonexistentFrontendHeader(Handle<Name> name, Label* miss,
71 Label* miss_label,
82 Label* miss);
98 Handle<Name> name, Label* miss,
163 Label* miss_label);
176 Label* miss, ReturnHolder return_what);
178 virtual void FrontendFooter(Handle<Name> name, Label* miss);
207 Label* miss)
    [all...]

Completed in 610 milliseconds

1 2 34 5 6 7 8 91011>>