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

1 2 3

  /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/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.");
  /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" }));
  /frameworks/base/core/java/com/android/internal/app/
IVoiceInteractorCallback.aidl 31 in VoiceInteractor.PickOptionRequest.Option[] selections, in Bundle result);
  /external/autotest/client/site_tests/platform_CompressedSwapPerf/
platform_CompressedSwapPerf.py 54 def get_selection_funcs(selections):
56 Returns the selection functions listed by their names in 'selections'.
58 @param selections: List of strings, where each string is a key for a
64 if k in selections
267 swap_target, switch_delay, temp_dir, selections):
278 @param selections: List of selection function names
335 for f_name, f in get_selection_funcs(selections).iteritems():
400 selections=None, swap_targets=None, switch_delay=0.0):
401 if selections is None:
402 selections = ['sequential', 'uniform', 'exponential'
    [all...]
  /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;
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
StartVoiceInteractionActivity.java 189 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) {
190 Log.i(TAG, "Pick result: finished=" + finished + " selections=" + selections
198 for (int i=0; i<selections.length; i++) {
202 sb.append(selections[i].getLabel());
TestInteractionActivity.java 242 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) {
243 Log.i(TAG, "Pick result: finished=" + finished + " selections=" + selections
251 for (int i=0; i<selections.length; i++) {
255 sb.append(selections[i].getLabel());
  /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...]
  /cts/tests/tests/voiceinteraction/testapp/src/android/voiceinteraction/testapp/
TestApp.java 231 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) {
234 ", selections = " + Utils.toOptionsString(selections) +
236 if ((selections.length != 1) ||
237 !selections[0].getLabel().toString().equals(Utils.PICKOPTON_3)) {
239 "Pickoption Selections Not received correctly in TestApp.");
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
html.go 177 var ssaElemClicked = function(elem, event, selections, selected) {
187 // if selected, remove selections from all of them
191 for (var i = 0; i < selections.length; i++) {
192 var color = selections[i];
210 for (var i = 0; i < selections.length; i++) {
211 var color = selections[i];
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
html.go 177 var ssaElemClicked = function(elem, event, selections, selected) {
187 // if selected, remove selections from all of them
191 for (var i = 0; i < selections.length; i++) {
192 var color = selections[i];
210 for (var i = 0; i < selections.length; i++) {
211 var color = selections[i];

Completed in 861 milliseconds

1 2 3