/external/chromium-trace/trace-viewer/src/about_tracing/ |
profiling_view.css | 6 .profiling-view { 13 .profiling-view .controls .save { 17 .profiling-view > .container {
|
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
FullScreenVideoTestAwContentsClient.java | 8 import android.view.Gravity; 9 import android.view.View; 10 import android.view.ViewGroup; 11 import android.view.WindowManager; 35 public void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback) { 40 mActivity.getWindow().addContentView(view,
|
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/ |
AwTestRunnerActivity.java | 10 import android.view.View; 11 import android.view.ViewGroup.LayoutParams; 12 import android.view.WindowManager; 52 * Adds a view to the main linear layout. 54 public void addView(View view) { 55 view.setLayoutParams(new LinearLayout.LayoutParams( 57 mLinearLayout.addView(view);
|
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/ |
DOMUtils.java | 28 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) 46 view, viewClient, sb.toString()); 74 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) 82 JavaScriptUtils.executeJavaScriptAndWaitForResult(view, viewClient, sb.toString()); 89 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) 91 int[] clickTarget = getClickTargetForNode(view, viewClient, nodeId); 93 touchCommon.singleClickView(view, clickTarget[0], clickTarget[1]); 100 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) 102 int[] clickTarget = getClickTargetForNode(view, viewClient, nodeId); 104 touchCommon.longPressView(view, clickTarget[0], clickTarget[1]) [all...] |
/external/chromium_org/content/renderer/ |
mouse_lock_dispatcher_browsertest.cc | 28 // fixture containing a RenderViewImpl view() and interacting to that interface. 33 route_id_ = view()->GetRoutingID(); 45 RenderViewImpl* view() { return static_cast<RenderViewImpl*>(view_); } function in class:content::__anon10432::MouseLockDispatcherTest 46 MouseLockDispatcher* dispatcher() { return view()->mouse_lock_dispatcher(); } 57 EXPECT_FALSE(view()->isPointerLocked()); 60 EXPECT_TRUE(view()->requestPointerLock()); 61 view()->OnMessageReceived(ViewMsg_LockMouse_ACK(route_id_, true)); 62 EXPECT_TRUE(view()->isPointerLocked()); 65 view()->requestPointerUnlock(); 66 view()->OnMessageReceived(ViewMsg_MouseLockLost(route_id_)) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
i915_state_sampler.c | 65 const struct pipe_sampler_view* view, 167 i915->fragment_sampler_views[unit], /* sampler view */ 190 const struct pipe_sampler_view* view) 192 if ( (view->swizzle_r != PIPE_SWIZZLE_RED || 193 view->swizzle_g != PIPE_SWIZZLE_GREEN || 194 view->swizzle_b != PIPE_SWIZZLE_BLUE || 195 view->swizzle_a != PIPE_SWIZZLE_ALPHA ) && 247 if ( view->swizzle_r == PIPE_SWIZZLE_RED && 248 view->swizzle_g == PIPE_SWIZZLE_RED && 249 view->swizzle_b == PIPE_SWIZZLE_RED & [all...] |
/external/jmonkeyengine/engine/src/android/jme3test/android/ |
DemoLaunchAdapter.java | 4 import android.view.LayoutInflater; 5 import android.view.View; 6 import android.view.View.OnClickListener; 7 import android.view.ViewGroup; 13 * The view adapter which gets a list of LaunchEntries and displaqs them 41 public View getView(int position, View convertView, ViewGroup viewGroup) { 58 public void onClick(View view) [all...] |
/external/mesa3d/src/gallium/drivers/i915/ |
i915_state_sampler.c | 65 const struct pipe_sampler_view* view, 167 i915->fragment_sampler_views[unit], /* sampler view */ 190 const struct pipe_sampler_view* view) 192 if ( (view->swizzle_r != PIPE_SWIZZLE_RED || 193 view->swizzle_g != PIPE_SWIZZLE_GREEN || 194 view->swizzle_b != PIPE_SWIZZLE_BLUE || 195 view->swizzle_a != PIPE_SWIZZLE_ALPHA ) && 247 if ( view->swizzle_r == PIPE_SWIZZLE_RED && 248 view->swizzle_g == PIPE_SWIZZLE_RED && 249 view->swizzle_b == PIPE_SWIZZLE_RED & [all...] |
/frameworks/base/core/java/android/transition/ |
Slide.java | 22 import android.view.View; 23 import android.view.ViewGroup; 24 import android.view.animation.AccelerateInterpolator; 25 import android.view.animation.DecelerateInterpolator; 45 View endView = (endValues != null) ? endValues.view : null; 47 ObjectAnimator anim = ObjectAnimator.ofFloat(endView, View.TRANSLATION_Y, 57 View startView = (startValues != null) ? startValues.view : null [all...] |
/frameworks/base/services/java/com/android/server/wm/ |
PointerEventDispatcher.java | 19 import android.view.InputChannel; 20 import android.view.InputDevice; 21 import android.view.InputEvent; 22 import android.view.InputEventReceiver; 23 import android.view.MotionEvent; 24 import android.view.WindowManagerPolicy.PointerEventListener;
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
MaxBitmapSizeActivity.java | 24 import android.view.View; 35 CanvasView view = new CanvasView(this); local 36 layout.addView(view, new LinearLayout.LayoutParams(200, 200)); 38 view = new CanvasView(this); 39 view.setLayerType(View.LAYER_TYPE_SOFTWARE, null); 40 layout.addView(view, new LinearLayout.LayoutParams(200, 200)); 45 private static class CanvasView extends View {
|
SmallCircleActivity.java | 25 import android.view.View; 37 View view = new PathView(this); local 38 layout.addView(view, new LinearLayout.LayoutParams(PathView.SIZE, PathView.SIZE)); 39 view = new PathView(this); 40 view.setLayerType(View.LAYER_TYPE_SOFTWARE, null); 41 layout.addView(view, new LinearLayout.LayoutParams(PathView.SIZE, PathView.SIZE)); 46 static class PathView extends View { [all...] |
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/ |
AutoCompleteTextViewActivityLandscape.java | 24 import android.view.KeyEvent; 25 import android.view.View; 26 import android.view.ViewGroup; 27 import android.view.Window; 28 import android.view.WindowManager; 30 import android.view.inputmethod.InputMethodManager;
|
BigEditTextActivityNonScrollablePanScan.java | 23 import android.view.View; 24 import android.view.ViewGroup; 25 import android.view.WindowManager; 30 private View mRootView; 31 private View mDefaultFocusedView; 45 View view = getLayoutInflater().inflate( local 48 ((LinearLayout) mRootView).addView(view); 50 mDefaultFocusedView = view.findViewById(R.id.data) [all...] |
BigEditTextActivityNonScrollableResize.java | 23 import android.view.View; 24 import android.view.ViewGroup; 25 import android.view.WindowManager; 30 private View mRootView; 31 private View mDefaultFocusedView; 45 View view = getLayoutInflater().inflate( local 48 ((LinearLayout) mRootView).addView(view); 50 mDefaultFocusedView = view.findViewById(R.id.data) [all...] |
BigEditTextActivityScrollablePanScan.java | 23 import android.view.View; 24 import android.view.ViewGroup; 25 import android.view.WindowManager; 31 private View mRootView; 32 private View mDefaultFocusedView; 53 View view = getLayoutInflater().inflate( local 56 mLayout.addView(view); 59 mDefaultFocusedView = view.findViewById(R.id.data) [all...] |
BigEditTextActivityScrollableResize.java | 23 import android.view.View; 24 import android.view.ViewGroup; 25 import android.view.WindowManager; 31 private View mRootView; 32 private View mDefaultFocusedView; 53 View view = getLayoutInflater().inflate( local 56 mLayout.addView(view); 59 mDefaultFocusedView = view.findViewById(R.id.data) [all...] |
BottomEditTextActivityPanScan.java | 21 import android.view.LayoutInflater; 22 import android.view.View; 23 import android.view.WindowManager; 36 private View mRootView; 37 private View mDefaultFocusedView; 47 View view = getLayoutInflater().inflate(R.layout.one_edit_text_activity, ((LinearLayout) mRootView), false); local 48 mDefaultFocusedView = view.findViewById(R.id.dialog_edit_text); 49 ((LinearLayout) mRootView).addView(view); [all...] |
BottomEditTextActivityResize.java | 21 import android.view.LayoutInflater; 22 import android.view.View; 23 import android.view.WindowManager; 36 private View mRootView; 37 private View mDefaultFocusedView; 47 View view = getLayoutInflater().inflate(R.layout.one_edit_text_activity, ((LinearLayout) mRootView), false); local 48 mDefaultFocusedView = view.findViewById(R.id.dialog_edit_text); 49 ((LinearLayout) mRootView).addView(view); [all...] |
/packages/apps/Browser/src/com/android/browser/view/ |
PieListView.java | 17 package com.android.browser.view; 24 import android.view.View; 61 for (View view : mViews) { 62 view.layout(mLeft, top, mLeft + mChildWidth, top + mChildHeight); 71 for (View view : mViews) { 72 drawView(view, canvas);
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
EmailAddressListAdapter.java | 29 import android.view.View; 30 import android.view.ViewGroup; 121 protected View newView(Context context, int partition, Cursor cursor, int position, 123 final ContactListItemView view = new ContactListItemView(context, null); local 124 view.setUnknownNameText(mUnknownNameText); 125 view.setQuickContactEnabled(isQuickContactEnabled()); 126 return view; 130 protected void bindView(View itemView, int partition, Cursor cursor, int position) { 131 ContactListItemView view = (ContactListItemView)itemView local [all...] |
/packages/apps/Settings/src/com/android/settings/accessibility/ |
PresetPreference.java | 21 import android.view.View; 22 import android.view.accessibility.CaptioningManager; 23 import android.view.accessibility.CaptioningManager.CaptionStyle; 51 protected void onBindListItem(View view, int index) { 52 final SubtitleView previewText = (SubtitleView) view.findViewById(R.id.preview); 61 final TextView summary = (TextView) view.findViewById(R.id.summary);
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
BatteryHistoryDetail.java | 22 import android.view.LayoutInflater; 23 import android.view.View; 24 import android.view.ViewGroup; 46 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 47 View view = inflater.inflate(R.layout.preference_batteryhistory, null); local 48 BatteryHistoryChart chart = (BatteryHistoryChart)view.findViewById( 51 return view;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
DictionaryListInterfaceState.java | 19 import android.view.View; 31 * when scrolling, the view is reused so it doesn't keep its state, which means we need to keep 43 private ArrayList<View> mViewCache = CollectionUtils.newArrayList(); 72 public View findFirstOrphanedView() { 73 for (final View v : mViewCache) { 79 public View addToCacheAndReturnView(final View view) { 80 mViewCache.add(view); [all...] |
/cts/tests/tests/animation/src/android/animation/cts/ |
AnimationActivity.java | 36 import android.view.MotionEvent; 37 import android.view.View; 38 import android.view.ViewGroup; 39 import android.view.animation.AccelerateInterpolator; 60 public AnimationView view = null; field in class:AnimationActivity 77 view = new AnimationView(this); 79 viewGroup.addView(view); 94 return createAnimator(view.newBall, "y", 1000, ValueAnimator.INFINITE, repeatMode, 99 return createAnimator(view.newBall, "y", 1000, repeatCount, ValueAnimator.REVERSE [all...] |