HomeSort by relevance Sort by last modified time
    Searched refs:selections (Results 1 - 25 of 34) sorted by null

1 2

  /external/llvm/include/llvm/CodeGen/PBQP/
Solution.h 30 SelectionsMap selections; member in class:PBQP::Solution
40 /// \brief Number of nodes for which selections have been made.
41 /// @return Number of nodes for which selections have been made.
42 unsigned numNodes() const { return selections.size(); }
76 selections[nodeId] = selection;
83 SelectionsMap::const_iterator sItr = selections.find(nodeId);
84 assert(sItr != selections.end() && "No selection for node.");
  /external/smack/src/org/apache/harmony/javax/security/auth/callback/
ChoiceCallback.java 36 private int[] selections; field in class:ChoiceCallback
92 return selections;
96 this.selections = new int[1];
97 this.selections[0] = selection;
100 public void setSelectedIndexes(int[] selections) {
104 this.selections = selections;
106 // this.selections = new int[selections.length]
107 //System.arraycopy(selections, 0, this.selections, 0, this.selections.length)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ContentProviderOperationBuilderTest.java 51 Map<String, String[]> selections = shadowBuilder.getSelections(); local
52 assertThat(selections.size(), is(2));
53 assertThat(selections.get("first"), equalTo(new String[] { "a", "b" }));
54 assertThat(selections.get("second"), equalTo(new String[] { "c", "d" }));
  /external/chromium_org/chrome/browser/android/provider/
chrome_browser_provider.h 83 jstring selections,
97 jstring selections,
102 jstring selections,
107 jstring selections,
119 jstring selections,
125 jstring selections,
132 jstring selections,
chrome_browser_provider.cc     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
CodeMirrorTextEditor.js 254 var selections = codemirror.listSelections();
255 var selection = selections[0];
256 if (selections.length === 1) {
    [all...]
SourceFrame.js 785 var selections = this._textEditor.selections();
786 if (!selections.length)
788 if (selections.length > 1) {
789 this._sourcePosition.setText(WebInspector.UIString("%d selection regions", selections.length));
792 var textRange = selections[0];
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentProviderOperation.java 17 private final Map<String, String[]> selections = new HashMap<String, String[]>(); field in class:ShadowContentProviderOperation
65 return selections;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionOverlay.java 77 List<SelectionItem> selections = selectionManager.getSelections(); local
78 int n = selections.size();
82 for (SelectionItem s : selections) {
107 NodeProxy node = selections.get(0).getNode();
SelectionManager.java 1039 List<SelectionItem> selections = selectionManager.getSelections(); local
1129 final List<SelectionItem> selections = getSelections(); local
1184 final List<SelectionItem> selections = getSelections(); local
    [all...]
HoverOverlay.java 155 List<SelectionItem> selections = mCanvas.getSelectionManager().getSelections(); local
156 for (SelectionItem item : selections) {
FragmentMenu.java 79 List<SelectionItem> selections = selectionManager.getSelections(); local
80 if (selections.size() == 0) {
84 SelectionItem first = selections.get(0);
LayoutActionBar.java 121 List<SelectionItem> selections = selectionManager.getSelections(); local
122 if (selections.size() > 0) {
127 NodeProxy node = selections.get(0).getNode();
140 selections = Collections.emptyList();
145 for (SelectionItem item : selections) {
349 List<SelectionItem> selections = local
351 List<INode> nodes = new ArrayList<INode>(selections.size());
352 for (SelectionItem item : selections) {
GestureManager.java 745 List<SelectionItem> selections = selectionManager.getSelections(); local
749 if (!selections.isEmpty()) {
753 for (SelectionItem cs : selections) {
774 if (selections.size() == 1) {
779 mDragSelection.addAll(selections);
782 for (SelectionItem cs : selections) {
798 mDragSelection.addAll(selections);
    [all...]
LayoutCanvas.java 1058 List<SelectionItem> selections = mSelectionManager.getSelections(); local
1394 List<SelectionItem> selections = getSelectionManager().getSelections(); local
    [all...]
  /external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
DigestMD5SaslClient.java 599 false); //no multiple selections
626 int[] selections = local
629 if (selections.length > 0)
631 ((RealmChoiceCallback)callbacks[0]).getChoices()[selections[0]];
  /external/smack/src/com/novell/sasl/client/
DigestMD5SaslClient.java 599 false); //no multiple selections
626 int[] selections = local
629 if (selections.length > 0)
631 ((RealmChoiceCallback)callbacks[0]).getChoices()[selections[0]];
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
TextEditor.js 207 selections: function() { },
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
content_editable_extractor_test.js 43 * Test getting text and selections from a single contenteditable node.
86 * Test getting text and selections from a contenteditable node with
136 * Test getting text and selections from a contenteditable node with
169 * Test getting text and selections from a contenteditable node with
cursor_selection_test.js 67 /** Tests correctness of collapsing selections. */
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
structural_line_walker.js 73 // Remove any selections.
abstract_selection_walker.js 53 // In all other cases, this makes sure we visit the same selections as
113 // In all other cases, this makes sure we visit the same selections as
layout_line_walker.js 138 * Compares two selections and determines if the lie on the same horizontal
205 * Private routine to append braille given three selections.
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationService.java 85 String selections = ContactsContract.Contacts.DISPLAY_NAME + " = 'Mike Cleron'"; local
88 projection, selections, null, null);
  /external/chromium_org/chrome/common/extensions/docs/examples/api/browsingData/basic/
popup.js 7 * based on the user's selections. It depends on the form containing a single

Completed in 1233 milliseconds

1 2