/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
VideoViewTest.java | 22 private VideoView view; field in class:VideoViewTest 25 view = new VideoView(null); 31 view.setOnPreparedListener(l); 32 ShadowVideoView shadowVideoView = Robolectric.shadowOf(view); 39 view.setOnErrorListener(l); 40 ShadowVideoView shadowVideoView = Robolectric.shadowOf(view); 47 view.setOnCompletionListener(l); 48 ShadowVideoView shadowVideoView = Robolectric.shadowOf(view); 54 view.setVideoPath("video.mp4"); 55 ShadowVideoView shadowVideoView = Robolectric.shadowOf(view); [all...] |
/external/chromium-trace/trace-viewer/src/cc/ |
picture_ops_list_view.css | 6 picture-ops-list-view { 11 picture-ops-list-view > .x-list-view { 16 picture-ops-list-view > .x-list-view .list-item { 24 picture-ops-list-view > .x-list-view .list-item:hover { 29 picture-ops-list-view > .x-list-view .list-item > * { 37 picture-ops-list-view > .x-list-view .list-item > .elementInfo [all...] |
/external/chromium/chrome/browser/ui/cocoa/tab_contents/ |
web_drop_target.h | 30 // Keep track of the render view host we're dragging over. If it changes 46 // calls from the view system. Communicates the drag messages to WebCore. 48 view:(NSView*)view; 51 view:(NSView*)view; 53 view:(NSView*)view; 72 // Given a point in window coordinates and a view in that window, return a 73 // flipped point in the coordinate system of |view| [all...] |
/external/chromium_org/content/browser/web_contents/ |
web_drag_dest_mac.h | 37 // Keep track of the render view host we're dragging over. If it changes 63 // calls from the view system. Communicates the drag messages to WebCore. 65 view:(NSView*)view; 68 view:(NSView*)view; 70 view:(NSView*)view; 80 // Given a point in window coordinates and a view in that window, return a 81 // flipped point in the coordinate system of |view| [all...] |
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/ |
InputMethodManagerWrapper.java | 10 import android.view.View; 11 import android.view.inputmethod.InputMethodManager; 28 * @see android.view.inputmethod.InputMethodManager#restartInput(View) 30 public void restartInput(View view) { 31 getInputMethodManager().restartInput(view); 35 * @see android.view.inputmethod.InputMethodManager#showSoftInput(View, int, ResultReceiver [all...] |
/external/chromium_org/ui/views/win/ |
hwnd_util_aurawin.cc | 12 HWND HWNDForView(const View* view) { 13 return view->GetWidget() ? HWNDForWidget(view->GetWidget()) : NULL; 20 HWND HWNDForNativeView(const gfx::NativeView view) { 21 return view && view->GetRootWindow() ? 22 view->GetRootWindow()->GetAcceleratedWidget() : NULL; 30 gfx::Rect GetWindowBoundsForClientBounds(View* view, [all...] |
/external/clang/tools/clang-format/ |
clang-format-sublime.py | 28 encoding = self.view.encoding() 33 for region in self.view.sel(): 39 old_viewport_position = self.view.viewport_position() 40 buf = self.view.substr(sublime.Region(0, self.view.size())) 45 self.view.replace( 46 edit, sublime.Region(0, self.view.size()), 48 self.view.sel().clear() 50 self.view.sel().add(region) 52 sublime.set_timeout(lambda: self.view.set_viewport_position [all...] |
/frameworks/base/core/java/com/android/internal/view/ |
IInputMethodSession.aidl | 17 package com.android.internal.view; 21 import android.view.KeyEvent; 22 import android.view.MotionEvent; 23 import android.view.inputmethod.CompletionInfo; 24 import android.view.inputmethod.ExtractedText;
|
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/ |
GridAdapter.java | 6 import android.view.View; 7 import android.view.ViewGroup; 22 private View mHeaderView; 23 private View mFooterView; 39 * For a view at the specified position, return the region around the view that is a possible 42 * @param isLastColumnInGrid Flag to indicate whether the view at the specified position is 44 * when it comes to reordering. As an example, if a view has reordering area set to Left, and 46 * for this view as well so that the user has the convenience have dropping views on the righ [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridModel.java | 144 /** List of all the view data for the children in this layout */ 173 // the grid model is called repeatedly for the same view object.) 206 * @param index the position of the child node whose view we want to look up 216 * @param node the node for which we want the view info 217 * @return the view info for the node, or null if not found 220 for (ViewData view : mChildViews) { 221 if (view.node == node) { 222 return view; 241 for (ViewData view : mChildViews) { 242 if (view.column > column || view.column == column && view.row >= row) 412 ViewData view = new ViewData(child, index++); local 903 ViewData view = getView(first); local 1030 ViewData view = getView(child); local 1116 ViewData view = getView(first); local 1234 ViewData view = getView(child); local 2277 ViewData view = new ViewData(spacer, index != -1 ? index : mChildViews.size()); local [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
CharacterPickerDialogTest.java | 27 import android.view.View; 49 final View view = new TextView(mActivity); local 50 new CharacterPickerDialog(view.getContext(), view, content, "\u00A1", false); local 53 new CharacterPickerDialog(null, view, content, "\u00A1", false); 68 final View view = new TextView(mActivity); local 70 new CharacterPickerDialog(view.getContext(), view, text, "abc", false) 108 final View view = new TextView(mActivity); local [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
WorkSpaceController.java | 54 /* VIEW */ 55 private final WorkSpaceView view = new WorkSpaceView(); field in class:WorkSpaceController 61 view.resultPane = (JPanel) runner.getView(); 62 view.initComponents(); 68 this.view.setTitle("gUnitEditor"); 69 this.view.setVisible(true); 70 this.view.pack(); 74 return view.paneEditor.getView(); 78 this.view.tabEditors.addChangeListener(new TabChangeListener()); 79 this.view.listRules.setListSelectionListener(new RuleListSelectionListener()) [all...] |
/cts/tests/tests/holo/src/android/holo/cts/modifiers/ |
DialogModifier.java | 21 import android.view.View; 22 import android.view.ViewGroup; 26 * parent view group. 37 public View modifyView(View view) { 38 Dialog dialog = mBuilder.buildDialog(view); 40 ViewGroup parent = (ViewGroup) view.getParent(); 41 parent.removeView(view); // remove the filler vie [all...] |
/external/chromium_org/chrome/browser/resources/memory_internals/ |
extension_view.css | 5 #extension-view .extension-id { 10 #extension-view .extension-info { 14 #extension-view .extension-memory {
|
/external/chromium_org/third_party/WebKit/Source/web/ |
PageWidgetDelegate.cpp | 54 return page->mainFrame()->view(); 59 FrameView* view = mainFrameView(page); local 60 if (!view) 62 view->serviceScriptedAnimations(monotonicFrameBeginTime); 67 FrameView* view = mainFrameView(page); local 68 if (!view) 76 view->setFrameRect(view->frameRect()); 80 view->updateLayoutAndStyleIfNeededRecursive(); 93 FrameView* view = mainFrameView(page) local [all...] |
/external/chromium_org/ui/views/widget/ |
drop_helper.cc | 8 #include "ui/views/view.h" 13 DropHelper::DropHelper(View* root_view) 22 void DropHelper::ResetTargetViewIfEquals(View* view) { 23 if (target_view_ == view) 25 if (deepest_view_ == view) 32 View* view = CalculateTargetViewImpl(root_view_location, data, true, local 35 if (view != target_view_) { 38 target_view_ = view; 84 View* view = root_view_->GetEventHandlerForPoint(root_view_location); local [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/gridview/ |
GridSimple.java | 21 import android.view.View; 22 import android.view.ViewGroup; 49 protected View createView(int position, ViewGroup parent, int desiredHeight) { 50 View view = super.createView(position, parent, desiredHeight); local 51 view.setBackgroundColor(0xFF000000); 52 ((TextView) view).setTextSize(16.0f); 53 return view;
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListSimple.java | 21 import android.view.View; 22 import android.view.ViewGroup; 45 protected View createView(int position, ViewGroup parent, int desiredHeight) { 46 View view = super.createView(position, parent, desiredHeight); local 47 view.setBackgroundColor(0xFF191919); 48 ((TextView) view).setTextSize(16.0f); 49 return view;
|
/frameworks/support/v7/appcompat/src/android/support/v7/view/ |
ActionMode.java | 17 package android.support.v7.view; 19 import android.view.Menu; 20 import android.view.MenuInflater; 21 import android.view.MenuItem; 22 import android.view.View; 32 * <em>only</em>, you should instead use the framework {@link android.view.ActionMode} class.</p> 76 * Set the title of the action mode. This method will have no visible effect if a custom view 81 * @see #setCustomView(View) 86 * Set the title of the action mode. This method will have no visible effect if a custom view [all...] |
/packages/apps/Camera2/src/com/android/camera/ |
AnimationManager.java | 22 import android.view.View; 43 * @param view a thumbnail view that shows a picture captured and gets animated 45 public void startCaptureAnimation(final View view) { 49 View parentView = (View) view.getParent(); 50 float slideDistance = (float) (parentView.getWidth() - view.getLeft()) [all...] |
/packages/apps/Contacts/src/com/android/contacts/list/ |
PostalAddressListAdapter.java | 28 import android.view.View; 29 import android.view.ViewGroup; 111 protected View newView(Context context, int partition, Cursor cursor, int position, 113 final ContactListItemView view = new ContactListItemView(context, null); local 114 view.setUnknownNameText(mUnknownNameText); 115 view.setQuickContactEnabled(isQuickContactEnabled()); 116 return view; 120 protected void bindView(View itemView, int partition, Cursor cursor, int position) { 121 ContactListItemView view = (ContactListItemView)itemView local [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/ |
MockContactPhotoManager.java | 31 public void loadThumbnail(ImageView view, long photoId, boolean darkTheme, 33 defaultProvider.applyDefaultImage(view, -1, darkTheme); 37 public void loadPhoto(ImageView view, Uri photoUri, int requestedExtent, boolean darkTheme, 39 defaultProvider.applyDefaultImage(view, requestedExtent, darkTheme); 43 public void removePhoto(ImageView view) { 44 view.setImageDrawable(null);
|
/cts/suite/pts/deviceTests/opengl/jni/graphics/ |
ProgramNode.h | 25 void drawProgram(Matrix& model, Matrix& view, Matrix& projection); 27 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection); 28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
|
/dalvik/dx/tests/098-dex-jsr-ret-throw/ |
ViewDebug$ViewServer.class | |
/developers/samples/android/ui/actionbarcompat/ListPopupMenu/ListPopupMenu/src/main/src/com/example/android/actionbarcompat/listpopupmenu/ |
MainActivity.java | 20 import android.support.v4.view.MenuItemCompat; 22 import android.view.Menu; 23 import android.view.MenuItem; 40 // Set content view (which contains a PopupListFragment)
|