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

1 2 3 4 5 6 7

  /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/llvm/include/llvm/CodeGen/PBQP/
Solution.h 31 SelectionsMap selections; member in class:PBQP::Solution
41 /// \brief Number of nodes for which selections have been made.
42 /// @return Number of nodes for which selections have been made.
43 unsigned numNodes() const { return selections.size(); }
77 selections[nItr] = selection;
84 SelectionsMap::const_iterator sItr = selections.find(nItr);
85 assert(sItr != selections.end() && "No selection for node.");
  /external/chromium/net/base/
sys_addrinfo.h 15 // since it avoids duplicating the platform-specific selections.
sys_byteorder.h 9 // avoids duplicating the platform-specific selections.
  /external/chromium_org/net/base/
sys_addrinfo.h 15 // since it avoids duplicating the platform-specific selections.
  /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/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;
  /dalvik/vm/compiler/codegen/arm/
README.txt 36 - Factory.c (low-level routines for instruction selections)
  /external/chromium_org/third_party/WebKit/ManualTests/
keyboard_select_elements_with_same_beginning.html 12 Click the drop-down to show selections (not navigate to the selection box).
  /frameworks/base/docs/html/guide/topics/ui/
binding.jd 11 <li><a href="#HandlingUserSelections">Handling User Selections</a></li>
56 <h2 id="HandlingUserSelections">Handling User Selections</h2>
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
table_selection_model.js 14 * Selected items are stored, not indexes, so selections are preserved
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
AttachInfo_Accessor.java 40 info.mInTouchMode = false; // this is so that we can display 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) {
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) {
  /external/chromium/chrome/browser/chromeos/
wm_overview_controller.h 105 // Restores tab selections on all browsers to what they were when
113 // Show the snapshot windows, saving current tab selections.
117 // tab selections that were saved when the snapshot windows were
  /external/chromium_org/components/autofill/core/browser/
password_generator.cc 55 std::vector<size_t>* selections) {
64 selections->push_back(i);
69 DCHECK_EQ(num_to_select, selections->size());
  /external/chromium_org/remoting/host/linux/
x_server_clipboard.h 40 // Start monitoring |display|'s selections, and invoke |callback| whenever
46 // PRIMARY and CLIPBOARD selections.
124 // The set of X selections owned by |clipboard_window_| (can be Primary or
  /external/proguard/src/proguard/gui/
FilterBuilder.java 26 * This class builds filters corresponding to the selections and names of a
37 * @param checkBoxes the check boxes with names and selections that should
49 * Builds a filter for the current names and selections of the check boxes.
  /external/chromium_org/ui/base/x/
selection_requestor.h 27 // X11 uses a system called "selections" to implement clipboards and drag and
  /external/clang/tools/clang-format/
clang-format-sublime.py 9 # format the current lines and selections for all cursor positions. The lines
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoringAction.java 65 // Look for selections in XML and in the layout UI editor
67 // Note, two kinds of selections are returned here:

Completed in 333 milliseconds

1 2 3 4 5 6 7