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

1 2 3 4 5 6 7 8 91011

  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceOptionsDialogV1.java 335 mOptions.mTraceCpuFreq = mTraceCpuFreqBtn.getSelection();
336 mOptions.mTraceCpuIdle = mTraceCpuIdleBtn.getSelection();
337 mOptions.mTraceCpuLoad = mTraceCpuLoadBtn.getSelection();
338 mOptions.mTraceDiskIo = mTraceDiskIoBtn.getSelection();
339 mOptions.mTraceKernelWorkqueues = mTraceKernelWorkqueuesBtn.getSelection();
340 mOptions.mTraceCpuScheduler = mTraceCpuSchedulerBtn.getSelection();
342 if (mGfxTagBtn.getSelection()) mOptions.enableTag(SystraceOptions.TAG_GFX);
343 if (mInputTagBtn.getSelection()) mOptions.enableTag(SystraceOptions.TAG_INPUT);
344 if (mViewTagBtn.getSelection()) mOptions.enableTag(SystraceOptions.TAG_VIEW);
345 if (mWebViewTagBtn.getSelection()) mOptions.enableTag(SystraceOptions.TAG_WEBVIEW)
    [all...]
  /frameworks/base/core/java/com/android/internal/content/
SelectionBuilder.java 82 public String getSelection() {
89 * @see #getSelection()
108 return db.query(table, columns, getSelection(), getSelectionArgs(), groupBy, having,
116 return db.update(table, values, getSelection(), getSelectionArgs());
123 return db.delete(table, getSelection(), getSelectionArgs());
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/selection/
SelectionProbe.java 66 Selection selection = mMgr.getSelection();
80 assertEquals(ids.length, mMgr.getSelection().size());
86 Selection sel = mMgr.getSelection();
96 Selection sel = mMgr.getSelection();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
StatusPanel.java 189 mListener.scaleChanged(scale.getSelection());
208 mListener.zoomChanged(scale.getSelection() + ZOOM_MIN);
225 mListener.lockVisibilityChanged(mShowLock.getSelection());
238 mListener.patchesVisibilityChanged(mShowPatches.getSelection());
251 mListener.badPatchesVisibilityChanged(mShowBadPatches.getSelection());
264 mListener.contentAreaVisibilityChanged(mShowContent.getSelection());
274 mShowContent.setSelection(!mShowContent.getSelection());
276 mListener.contentAreaVisibilityChanged(mShowContent.getSelection());
280 mShowLock.setSelection(!mShowLock.getSelection());
282 mListener.lockVisibilityChanged(mShowLock.getSelection());
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 26 /// To get the selection for each node in the problem use the getSelection method.
51 unsigned getSelection(GraphBase::NodeId nodeId) const {
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 26 /// To get the selection for each node in the problem use the getSelection method.
51 unsigned getSelection(GraphBase::NodeId nodeId) const {
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 26 /// To get the selection for each node in the problem use the getSelection method.
51 unsigned getSelection(GraphBase::NodeId nodeId) const {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 26 /// To get the selection for each node in the problem use the getSelection method.
51 unsigned getSelection(GraphBase::NodeId nodeId) const {
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 26 /// To get the selection for each node in the problem use the getSelection method.
51 unsigned getSelection(GraphBase::NodeId nodeId) const {
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 26 /// To get the selection for each node in the problem use the getSelection method.
51 unsigned getSelection(GraphBase::NodeId nodeId) const {
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 26 /// To get the selection for each node in the problem use the getSelection method.
51 unsigned getSelection(GraphBase::NodeId nodeId) const {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
Solution.h 26 /// To get the selection for each node in the problem use the getSelection method.
51 unsigned getSelection(GraphBase::NodeId nodeId) const {
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/
SharedInputHandlerTest.java 93 assertEquals(mSelectionMgr.getSelection().size(), 1);
100 assertEquals(mSelectionMgr.getSelection().size(), 1);
106 assertEquals(mSelectionMgr.getSelection().size(), 0);
117 assertEquals(mSelectionMgr.getSelection().size(), 0);
138 assertEquals(mSelectionMgr.getSelection().size(), 1);
145 assertEquals(mSelectionMgr.getSelection().size(), 1);
151 assertEquals(mSelectionMgr.getSelection().size(), 0);
162 assertEquals(mSelectionMgr.getSelection().size(), 0);
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/common/db/
SelectionBuilder.java 236 public String getSelection() {
244 * @see #getSelection()
279 return "SelectionBuilder[table=" + mTable + ", selection=" + getSelection()
327 return db.query(mTable, columns, getSelection(), getSelectionArgs(), groupBy, having,
342 return db.update(mTable, values, getSelection(), getSelectionArgs());
354 return db.delete(mTable, getSelection(), getSelectionArgs());
  /developers/samples/android/common/src/java/com/example/android/common/db/
SelectionBuilder.java 236 public String getSelection() {
244 * @see #getSelection()
279 return "SelectionBuilder[table=" + mTable + ", selection=" + getSelection()
327 return db.query(mTable, columns, getSelection(), getSelectionArgs(), groupBy, having,
342 return db.update(mTable, values, getSelection(), getSelectionArgs());
354 return db.delete(mTable, getSelection(), getSelectionArgs());
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/
SelectionBuilder.java 236 public String getSelection() {
244 * @see #getSelection()
279 return "SelectionBuilder[table=" + mTable + ", selection=" + getSelection()
327 return db.query(mTable, columns, getSelection(), getSelectionArgs(), groupBy, having,
342 return db.update(mTable, values, getSelection(), getSelectionArgs());
354 return db.delete(mTable, getSelection(), getSelectionArgs());
  /external/llvm/include/llvm/CodeGen/PBQP/
Solution.h 26 /// To get the selection for each node in the problem use the getSelection method.
83 unsigned getSelection(GraphBase::NodeId nodeId) const {
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/
Solution.h 26 /// To get the selection for each node in the problem use the getSelection method.
84 unsigned getSelection(Graph::ConstNodeItr nItr) const {
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCSectionCOFF.h 54 int getSelection () const { return Selection; }
  /packages/providers/TvProvider/src/com/android/providers/tv/util/
SqlParams.java 35 public String getSelection() {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
CursorLoaderTest.java 31 assertThat(cursorLoader.getSelection(), equalTo(selection));
52 assertThat(cursorLoader.getSelection(), equalTo(selection));
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/selection/
SelectionManagerTest.java 193 mManager.getSelection().applyProvisionalSelection();
215 mManager.getSelection().applyProvisionalSelection();
237 Selection s = mManager.getSelection();
253 Selection s = mManager.getSelection();
277 Selection s = mManager.getSelection();
299 Selection s = mManager.getSelection();
317 Selection s = mManager.getSelection();
333 Selection s = mManager.getSelection();
  /packages/apps/Contacts/src/com/android/contacts/model/
Cp2DeviceLocalAccountLocator.java 67 mSelection = getSelection(knownAccountTypes);
110 public String getSelection() {
119 private static String getSelection(Set<String> knownAccountTypes) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
XmlEditorMultiOutline.java 124 public ISelection getSelection() {
130 setSelection(event.getSelection());
209 public ISelection getSelection() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
UsagePermissionPage.java 107 return mYesRadio.getSelection();
136 if (!mYesRadio.getSelection() && !mNoRadio.getSelection()) {

Completed in 2951 milliseconds

1 2 3 4 5 6 7 8 91011