Home
last modified time | relevance | path

Searched refs:Selection (Results 1 – 25 of 113) sorted by relevance

12345

/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DSelection.java10 public final class Selection { class
28 public Selection set(Selection other) { in set()
35 public Selection set(int anchor, int caret, boolean clickAfter) { in set()
43 Selection other2 = (Selection)other; in equals()
49 public boolean isLessThan(Selection other) { in isLessThan()
53 public Selection pin(String text) { in pin()
69 public Selection swap(Selection after) { in swap()
82 public Selection fixAfterReplace(int start, int end, int len) { in fixAfterReplace()
107 public Selection nextBound(BreakIterator breaker, in nextBound()
DDumbTextComponent.java51 private Selection selection = new Selection();
55 private transient Selection tempSelection = new Selection();
404 public void select(Selection newSelection) { in select()
634 public Selection point2Offset(Point p, Selection o) { in point2Offset()
/external/llvm/include/llvm/MC/
DMCSectionCOFF.h41 mutable int Selection; variable
46 MCSymbol *COMDATSymbol, int Selection, SectionKind K, in MCSectionCOFF() argument
50 Selection(Selection) { in MCSectionCOFF()
65 int getSelection() const { return Selection; } in getSelection()
67 void setSelection(int Selection) const;
/external/llvm/lib/MC/
DMCSectionCOFF.cpp34 void MCSectionCOFF::setSelection(int Selection) const { in setSelection()
35 assert(Selection != 0 && "invalid COMDAT selection type"); in setSelection()
36 this->Selection = Selection; in setSelection()
71 switch (Selection) { in PrintSwitchToSection()
DMCContext.cpp385 StringRef COMDATSymName, int Selection, in getCOFFSection() argument
394 COFFSectionKey T{Section, COMDATSymName, Selection}; in getCOFFSection()
406 CachedName, Characteristics, COMDATSymbol, Selection, Kind, Begin); in getCOFFSection()
/external/clang/test/CodeGenObjC/
Ddebuginfo-properties.m10 @class Selection;
13 @property (nonatomic, retain) Selection* selection;
30 Selection *_selection;
39 Selection *_selection;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
DCCombo3.java74 addEvents(m_arrow, m_arrowListener, new int[]{SWT.Selection, SWT.FocusIn, SWT.FocusOut}); in CCombo3()
85 addEvents(m_table, m_tableListener, new int[]{SWT.Selection, SWT.FocusIn, SWT.FocusOut}); in CCombo3()
232 case SWT.Selection : {
242 case SWT.Selection : {
269 notifyListeners(SWT.Selection, e); in sendSelectionEvent()
302 addListener(SWT.Selection, typedListener); in addSelectionListener()
DCTableCombo.java143 SWT.Selection, in init()
152 int[] arrowEvents = {SWT.Selection, SWT.FocusIn, SWT.FocusOut}; in init()
199 case SWT.Selection : { in handleTableEvent()
213 notifyListeners(SWT.Selection, e); in handleTableEvent()
322 case SWT.Selection : { in handleArrowEvent()
399 notifyListeners(SWT.Selection, e); in handleTextEvent()
424 notifyListeners(SWT.Selection, e); in handleTextEvent()
687 addListener(SWT.Selection, typedListener); in addSelectionListener()
DCComboBox.java206 table.notifyListeners(SWT.Selection, convert2event(e)); in createText()
211 notifyListeners(SWT.Selection, convert2event(e)); in createText()
290 notifyListeners(SWT.Selection, convert2event(e)); in createTable()
550 addListener(SWT.Selection, typedListener);
/external/llvm/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp867 int Selection = 0; in getExplicitSectionGlobal() local
872 Selection = getSelectionForCOFF(GV); in getExplicitSectionGlobal()
874 if (Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE) in getExplicitSectionGlobal()
884 Selection = 0; in getExplicitSectionGlobal()
891 Selection); in getExplicitSectionGlobal()
922 int Selection = getSelectionForCOFF(GV); in SelectSectionForGlobal() local
923 if (!Selection) in SelectSectionForGlobal()
924 Selection = COFF::IMAGE_COMDAT_SELECT_NODUPLICATES; in SelectSectionForGlobal()
935 COMDATSymName, Selection); in SelectSectionForGlobal()
940 Selection); in SelectSectionForGlobal()
/external/clang/unittests/Driver/
DMultilibTest.cpp325 Multilib Selection; in TEST() local
326 ASSERT_TRUE(MS2.select(Flags, Selection)) << "Selection failed for " in TEST()
336 ASSERT_EQ(Selection.gccSuffix(), Suffix) << "Selection picked " << Selection in TEST()
/external/llvm/test/tools/llvm-readobj/
Dbigobj.test102 CHECK-NEXT: Selection: 0x0
119 CHECK-NEXT: Selection: 0x0
136 CHECK-NEXT: Selection: 0x0
Dcxx-cli-aux.test23 CHECK-NEXT: Selection: NoDuplicates (0x1)
Dsymbols.test39 COFF-NEXT: Selection: 0x0
/external/clang/tools/clang-format-vs/ClangFormat/
DClangFormatPackage.cs197 int start = view.Selection.Start.Position.GetContainingLine().Start.Position; in MenuItemCallback()
198 int end = view.Selection.End.Position.GetContainingLine().End.Position; in MenuItemCallback()
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DScriptEditor.java33 import android.text.Selection;
468 Selection.moveLeft(mContentText.getText(), mContentText.getLayout()); in afterTextChanged()
550 Selection.setSelection(text, edit.mmBefore == null ? start : (start + edit.mmBefore.length())); in undo()
567 Selection.setSelection(text, edit.mmAfter == null ? start : (start + edit.mmAfter.length())); in redo()
/external/llvm/utils/TableGen/
DCodeGenInstruction.cpp414 StringRef Selection = Cur.slice(VariantsStart, VariantsEnd); in FlattenAsmStringVariants() local
416 Selection = Selection.split('|').second; in FlattenAsmStringVariants()
417 Res += Selection.split('|').first; in FlattenAsmStringVariants()
/external/llvm/docs/
DLexicon.rst126 Instruction Selection
229 Selection DAG Instruction Selection.
/external/icu/icu4c/source/test/testdata/
Dtestnorm.txt14 # Selection of Canonical_Combining_Class (ccc) values
/external/parameter-framework/upstream/doc/requirements/
DAPIs.md16 Implement the **Selection Criterion** creation requirements. See section **5.4**
40 See also the Selection Criterion APIs below.
/external/llvm/tools/obj2yaml/
Dcoff2yaml.cpp178 YAMLASD.Selection = ObjSD->Selection; in dumpSectionDefinition()
/external/skia/src/sfnt/
DSkOTTable_OS_2_VA.h100 union Selection { union
DSkOTTable_OS_2_V0.h100 union Selection { union
/external/llvm/include/llvm/Target/
DTargetSelectionDAG.td16 // Selection DAG Type Constraint definitions.
89 // Selection DAG Type Profile definitions.
96 // SDTypeProfile - This profile describes the type requirements of a Selection
282 // Selection DAG Node Properties.
302 // Selection DAG Pattern Operations
306 // Selection DAG Node definitions.
576 // Selection DAG Condition Codes
590 // Selection DAG Node Transformation Functions.
617 // Selection DAG Pattern Fragments.
1064 // Selection DAG CONVERT_RNDSAT patterns
[all …]
/external/llvm/test/CodeGen/X86/
Ddagcombine-unsafe-math.ll46 ; Instruction-Selection doesn't know how to handle "3.0"

12345