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

1 2 3 45 6 7 8 91011>>

  /external/v8/src/mips/
codegen-mips.h 26 Label* call_runtime);
  /external/v8/src/mips64/
codegen-mips64.h 26 Label* call_runtime);
macro-assembler-mips64.h 192 DECLARE_NORELOC_PROTOTYPE(Name, Label*) \
230 bool IsNear(Label* L, Condition cond, int rs_reg);
232 void Branch(Label* L,
260 void Call(Label* target);
311 // Jump unconditionally to given label.
315 // Use rather b(Label) for code generation.
316 void jmp(Label* L) {
329 void JumpIfRoot(Register with, Heap::RootListIndex index, Label* if_equal) {
336 Label* if_not_equal) {
381 Label* condition_met)
    [all...]
  /external/v8/src/ppc/
codegen-ppc.h 21 Register result, Label* call_runtime);
  /external/vixl/benchmarks/
bench-branch-link.cc 35 // Bind many branches to the same label, like bench-branch.cc but with a single
36 // label. This stresses the label-linking mechanisms.
53 Label target;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
MarginChooser.java 30 import org.eclipse.swt.widgets.Label;
52 private Label mErrorLabel;
83 @SuppressWarnings("unused") // SWT constructors have side effects, "new Label" is not unused.
91 Label allLabel = new Label(container, SWT.NONE);
103 Label label = new Label(container, SWT.SEPARATOR | SWT.HORIZONTAL); local
104 label.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, false, 3, 1));
106 Label leftLabel = new Label(container, SWT.NONE)
    [all...]
  /external/v8/src/x64/
builtins-x64.cc 106 Label ok;
141 Label rt_call, allocated;
191 Label no_inobject_slack_tracking;
301 Label loop, entry;
334 Label use_receiver, exit;
406 Label okay;
538 Label loop, entry;
540 __ jmp(&entry, Label::kNear);
626 Label ok;
630 __ j(above_equal, &ok, Label::kNear)
    [all...]
  /external/autotest/frontend/client/src/autotest/common/ui/
ToolTip.java 8 import com.google.gwt.user.client.ui.Label;
11 public class ToolTip extends Label implements MouseOverHandler, MouseOutHandler {
21 popup.add(new Label(toolTipMessage));
  /external/autotest/frontend/client/src/autotest/tko/embedded_spreadsheet/
EmbeddedSpreadsheetDisplay.java 8 import com.google.gwt.user.client.ui.Label;
19 private Label noResults = new Label(NO_RESULTS);
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFStreamer.cpp 45 auto *Label = cast<MCSymbolELF>(L);
46 getAssembler().registerSymbol(*Label);
47 Label->setOther(ELF::STO_MIPS_MICROMIPS);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
TableSwitchInsnNode.java 32 import org.mockito.asm.Label;
99 Label[] labels = new Label[this.labels.size()];
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
MethodVisitorTee.java 91 public void visitJumpInsn(int opcode, Label label) {
92 mv1.visitJumpInsn(opcode, label);
93 mv2.visitJumpInsn(opcode, label);
96 public void visitLabel(Label label) {
97 mv1.visitLabel(label);
98 mv2.visitLabel(label);
111 public void visitTableSwitchInsn(int min, int max, Label dflt, Label labels[])
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderPackedSwitchPayload.java 39 import org.jf.dexlib2.builder.Label;
52 @Nullable List<? extends Label> switchElements) {
59 for (Label target: switchElements) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
VboDetailProvider.java 34 import org.eclipse.swt.widgets.Label;
53 private Label mSizeLabel;
54 private Label mUsageLabel;
55 private Label mTypeLabel;
74 Label l = new Label(mComposite, SWT.NONE);
78 mSizeLabel = new Label(mComposite, SWT.NONE);
81 l = new Label(mComposite, SWT.NONE);
85 mUsageLabel = new Label(mComposite, SWT.NONE);
88 l = new Label(mComposite, SWT.NONE)
    [all...]
  /external/v8/src/ia32/
code-stubs-ia32.cc 174 // operands, jumps to the non_float label otherwise.
176 Label* non_float,
180 // them into xmm0 and xmm1 if they are. Jump to label not_numbers if
183 static void LoadSSE2Operands(MacroAssembler* masm, Label* not_numbers);
192 Label check_negative, process_64_bits, done, done_no_stash;
313 Label load_smi, done;
315 __ JumpIfSmi(number, &load_smi, Label::kNear);
317 __ jmp(&done, Label::kNear);
330 Label* not_numbers) {
331 Label load_smi_edx, load_eax, load_smi_eax, load_float_eax, done
    [all...]
builtins-ia32.cc 105 Label ok;
109 __ j(above_equal, &ok, Label::kNear);
145 Label rt_call, allocated;
205 Label no_inobject_slack_tracking;
303 Label loop, entry;
336 Label use_receiver, exit;
407 Label okay;
462 Label loop, entry;
464 __ jmp(&entry, Label::kNear);
555 Label ok
    [all...]
  /external/v8/src/x87/
builtins-x87.cc 105 Label ok;
109 __ j(above_equal, &ok, Label::kNear);
145 Label rt_call, allocated;
205 Label no_inobject_slack_tracking;
303 Label loop, entry;
336 Label use_receiver, exit;
407 Label okay;
462 Label loop, entry;
464 __ jmp(&entry, Label::kNear);
555 Label ok
    [all...]
code-stubs-x87.cc 170 // operands, jumps to the non_float label otherwise.
172 Label* non_float,
182 Label check_negative, process_64_bits, done, done_no_stash;
248 Label skip_mov;
249 __ j(equal, &skip_mov, Label::kNear);
264 Label skip_mov;
265 __ j(less_equal, &skip_mov, Label::kNear);
288 Label load_smi, done;
290 __ JumpIfSmi(number, &load_smi, Label::kNear);
292 __ jmp(&done, Label::kNear)
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
StubMethodAdapter.java 21 import org.objectweb.asm.Label;
101 Label l1 = new Label();
246 public void visitLineNumber(int line, Label start) {
278 public void visitLabel(Label label) {
280 mParentVisitor.visitLabel(label);
285 public void visitTryCatchBlock(Label start, Label end, Label handler, String type)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintTooltip.java 30 import org.eclipse.swt.widgets.Label;
64 Label icon = new Label(this, SWT.NONE);
69 Label label = new Label(this, SWT.WRAP); local
71 label.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, true, false, 1, 1));
84 label.setText(String.format("%1$s: %2$s", id, message));
  /external/v8/src/regexp/ia32/
regexp-macro-assembler-ia32.cc 143 void RegExpMacroAssemblerIA32::Bind(Label* label) {
144 __ bind(label);
148 void RegExpMacroAssemblerIA32::CheckCharacter(uint32_t c, Label* on_equal) {
154 void RegExpMacroAssemblerIA32::CheckCharacterGT(uc16 limit, Label* on_greater) {
160 void RegExpMacroAssemblerIA32::CheckAtStart(Label* on_at_start) {
168 Label* on_not_at_start) {
175 void RegExpMacroAssemblerIA32::CheckCharacterLT(uc16 limit, Label* on_less) {
181 void RegExpMacroAssemblerIA32::CheckGreedyLoop(Label* on_equal) {
182 Label fallthrough
    [all...]
  /external/v8/src/regexp/x87/
regexp-macro-assembler-x87.cc 143 void RegExpMacroAssemblerX87::Bind(Label* label) {
144 __ bind(label);
148 void RegExpMacroAssemblerX87::CheckCharacter(uint32_t c, Label* on_equal) {
154 void RegExpMacroAssemblerX87::CheckCharacterGT(uc16 limit, Label* on_greater) {
160 void RegExpMacroAssemblerX87::CheckAtStart(Label* on_at_start) {
168 Label* on_not_at_start) {
175 void RegExpMacroAssemblerX87::CheckCharacterLT(uc16 limit, Label* on_less) {
181 void RegExpMacroAssemblerX87::CheckGreedyLoop(Label* on_equal) {
182 Label fallthrough
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ChooseAssetTypePage.java 38 import org.eclipse.swt.widgets.Label;
48 private Label mResourceName;
81 Label separator = new Label(container, SWT.SEPARATOR | SWT.HORIZONTAL);
86 Label projectLabel = new Label(container, SWT.NONE);
96 Label assetLabel = new Label(container, SWT.NONE);
104 Label resourceLabel = new Label(container, SWT.NONE)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
LL1DFA.java 66 Label e = getLabelForSet(altLook[alt].tokenTypeSet);
93 Label e = getLabelForSet(edge);
126 s.addTransition(predDFATarget, new Label(ctx));
140 protected Label getLabelForSet(IntervalSet edgeSet) {
141 Label e = null;
143 if ( atom != Label.INVALID ) {
144 e = new Label(atom);
147 e = new Label(edgeSet);
162 SemanticContext ctx = altStartState.transition[0].label.getSemanticContext();
168 ((SemanticContext.Predicate)altStartState.transition[0].label.getSemanticContext()).predicateAST)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKeyVisual.java 29 * There are two types of expected visual, an integer icon id and a string label.
32 public static ExpectedKeyVisual newInstance(final String label) {
33 return new Label(label);
87 // If the actual key has an icon as its visual, a label has to be null.
94 // If the actual more key has an icon as its visual, a label has to be null.
117 * This class represents a string label.
119 private static class Label extends ExpectedKeyVisual {
122 Label(final String label) {
    [all...]

Completed in 414 milliseconds

1 2 3 45 6 7 8 91011>>