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

1 2 3

  /external/robolectric/v1/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" }));
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 30 SelectionsMap selections; member in class:llvm::PBQP::Solution
45 selections[nodeId] = selection;
52 SelectionsMap::const_iterator sItr = selections.find(nodeId);
53 assert(sItr != selections.end() && "No selection for node.");
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 30 SelectionsMap selections; member in class:llvm::PBQP::Solution
45 selections[nodeId] = selection;
52 SelectionsMap::const_iterator sItr = selections.find(nodeId);
53 assert(sItr != selections.end() && "No selection for node.");
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 30 SelectionsMap selections; member in class:llvm::PBQP::Solution
45 selections[nodeId] = selection;
52 SelectionsMap::const_iterator sItr = selections.find(nodeId);
53 assert(sItr != selections.end() && "No selection for node.");
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 30 SelectionsMap selections; member in class:llvm::PBQP::Solution
45 selections[nodeId] = selection;
52 SelectionsMap::const_iterator sItr = selections.find(nodeId);
53 assert(sItr != selections.end() && "No selection for node.");
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 30 SelectionsMap selections; member in class:llvm::PBQP::Solution
45 selections[nodeId] = selection;
52 SelectionsMap::const_iterator sItr = selections.find(nodeId);
53 assert(sItr != selections.end() && "No selection for node.");
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 30 SelectionsMap selections; member in class:llvm::PBQP::Solution
45 selections[nodeId] = selection;
52 SelectionsMap::const_iterator sItr = selections.find(nodeId);
53 assert(sItr != selections.end() && "No selection for node.");
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 30 SelectionsMap selections; member in class:llvm::PBQP::Solution
45 selections[nodeId] = selection;
52 SelectionsMap::const_iterator sItr = selections.find(nodeId);
53 assert(sItr != selections.end() && "No selection for node.");
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 30 SelectionsMap selections; member in class:llvm::PBQP::Solution
45 selections[nodeId] = selection;
52 SelectionsMap::const_iterator sItr = selections.find(nodeId);
53 assert(sItr != selections.end() && "No selection for node.");
  /external/llvm/include/llvm/CodeGen/PBQP/
Solution.h 31 SelectionsMap selections; member in class:llvm::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[nodeId] = selection;
84 SelectionsMap::const_iterator sItr = selections.find(nodeId);
85 assert(sItr != selections.end() && "No selection for node.");
  /external/robolectric/v1/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/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/
Solution.h 32 SelectionsMap selections; member in class:PBQP::Solution
42 /// \brief Number of nodes for which selections have been made.
43 /// @return Number of nodes for which selections have been made.
44 unsigned numNodes() const { return selections.size(); }
78 selections[nItr] = selection;
85 SelectionsMap::const_iterator sItr = selections.find(nItr);
86 assert(sItr != selections.end() && "No selection for node.");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
FragmentMenu.java 79 List<SelectionItem> selections = selectionManager.getSelections(); local
80 if (selections.size() == 0) {
84 SelectionItem first = selections.get(0);
HoverOverlay.java 155 List<SelectionItem> selections = mCanvas.getSelectionManager().getSelections(); local
156 for (SelectionItem item : selections) {
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();
DynamicContextMenu.java 161 List<SelectionItem> selections = mCanvas.getSelectionManager().getSelections(); local
162 if (selections.size() == 0) {
165 List<INode> nodes = new ArrayList<INode>(selections.size());
166 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...]
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) {
SelectionManager.java 1039 List<SelectionItem> selections = selectionManager.getSelections(); local
1129 final List<SelectionItem> selections = getSelections(); local
1184 final List<SelectionItem> selections = getSelections(); local
    [all...]
LayoutCanvas.java 1058 List<SelectionItem> selections = mSelectionManager.getSelections(); local
1394 List<SelectionItem> selections = getSelectionManager().getSelections(); local
    [all...]
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationService.java 105 String selections = ContactsContract.Contacts.DISPLAY_NAME + " = ?"; local
109 projection, selections, selectionArgs, null);
  /packages/apps/Contacts/src/com/android/contacts/
SimImportFragment.java 271 final long[] selections = mSavedInstanceState.getLongArray( local
273 mPerAccountCheckedIds.put(account.getAccount(), selections); local
283 // Make sure the selections are up-to-date
  /packages/apps/TV/src/com/android/tv/tuner/exoplayer/
ExoPlayerSampleExtractor.java 221 TrackSelection[] selections = new TrackSelection[trackGroupArray.length]; local
222 for (int i = 0; i < selections.length; ++i) {
223 selections[i] = selectionFactory.createTrackSelection(trackGroupArray.get(i), 0);
228 mMediaPeriod.selectTracks(selections, retain, mStreams, reset, 0);
  /external/netperf/src/
nettest_omni.c 1510 FILE *selections; local
    [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 

Completed in 401 milliseconds

1 2 3