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

1 2 3 4 5 6 7 8

  /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 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/chromium_org/net/base/
sys_addrinfo.h 15 // since it avoids duplicating the platform-specific selections.
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
CodeMirrorTextEditor.js 250 var selections = codeMirror.listSelections();
252 for (var i = 0; i < selections.length; ++i) {
253 var selection = selections[i];
270 var selections = codeMirror.listSelections();
271 for (var i = 0; i < selections.length; ++i) {
272 var selection = selections[i];
317 var selections = codemirror.listSelections();
318 var selection = selections[0];
319 if (selections.length === 1) {
346 var selections = this.selections()
    [all...]
  /external/chromium_org/chrome/browser/android/provider/
chrome_browser_provider.h 82 jstring selections,
96 jstring selections,
101 jstring selections,
106 jstring selections,
118 jstring selections,
124 jstring selections,
131 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;
  /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).
  /external/chromium_org/third_party/webrtc/modules/audio_device/test/
README.txt 8 Repeat this test for different selections of playout and recording devices.
  /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_org/chrome/browser/resources/chromeos/chromevox/common/
content_editable_extractor_test.unitjs 59 * Test getting text and selections from a single contenteditable node.
102 * Test getting text and selections from a contenteditable node with
152 * Test getting text and selections from a contenteditable node with
185 * Test getting text and selections from a contenteditable node with
  /external/chromium_org/third_party/polymer/components-chromium/core-selection/
core-selection-extracted.js 4 * If true, multiple selections are allowed.
  /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) {
  /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/chrome/android/java/src/org/chromium/chrome/browser/contextmenu/
ChromeContextMenuItemDelegate.java 12 * A delegate responsible for taking actions based on context menu 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
  /external/clang/tools/clang-format/
clang-format-sublime.py 9 # format the current lines and selections for all cursor positions. The lines
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/appmenu/
AppMenuTest.java 33 * AppMenuHandler that will be used to intercept item selections for testing.
39 * AppMenuHandler for intercepting options item selections.
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingBehavior.h 48 // On Windows, selections should always be considered as directional, regardless if it is
87 // Support for global selections, used on platforms like the X Window

Completed in 873 milliseconds

1 2 3 4 5 6 7 8