HomeSort by relevance Sort by last modified time
    Searched refs:view (Results 951 - 975 of 3607) sorted by null

<<31323334353637383940>>

  /external/chromium_org/ui/views/
drag_utils.h 26 VIEWS_EXPORT void RunShellDrag(gfx::NativeView view,
33 // returned object. |widget| is Widget hosting the view being dragged.
mouse_watcher_view_host.h 12 class View;
17 // bounds of the view to determine the active zone. For example, if
19 // the y coordinate is between the origin of the view and height of the view
21 MouseWatcherViewHost(View* view, const gfx::Insets& hot_zone_insets);
32 // View we're listening for events over.
33 View* view_;
34 // Insets added to the bounds of the view.
shadow_border.h 25 virtual void Paint(const views::View& view, gfx::Canvas* canvas) OVERRIDE;
view_model_utils.cc 9 #include "ui/views/view.h"
34 View* view = model.view_at(i); local
35 if (view->bounds() != model.ideal_bounds(i))
43 View* view,
48 int current_index = model.GetIndexOfView(view);
62 // For indices after the current index ignore the bounds of the view being
63 // dragged. This keeps the view from bouncing around as moved.
  /external/chromium_org/ui/views/widget/
tooltip_manager.h 22 class View;
26 // the various tooltip methods on View.
60 // Notification that the view hierarchy has changed in some way.
64 virtual void TooltipTextChanged(View* view) = 0;
  /external/llvm/include/llvm/CodeGen/
EdgeBundles.h 54 /// view - Visualize the annotated bipartite CFG with Graphviz.
55 void view() const;
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_program.h 58 struct pipe_sampler_view *view; member in struct:program
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
AbstractTestListActivity.java 24 import android.view.View;
72 protected void onListItemClick(ListView listView, View view, int position, long id) {
73 super.onListItemClick(listView, view, position, id);
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
PerspectiveMeshNode.cpp 23 void PerspectiveMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
43 // This multiplies the view matrix by the model matrix, and stores the result in the MVP
44 // matrix (which currently contains model * view).
45 prog.mMVMatrix.multiply(view, model);
51 // the MVP matrix (which now contains model * view * projection).
64 void PerspectiveMeshNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
  /cts/tests/tests/acceleration/src/android/acceleration/cts/
BaseAccelerationTest.java 24 import android.view.View;
31 /** View with android:layerType="hardware" set */
34 /** View with android:layerType="software" set */
37 /** View with setLayerType(HARDWARE) called */
40 /** View with setLayerType(SOFTWARE) called */
59 View view = new View(mActivity); local
60 assertFalse(view.isHardwareAccelerated())
    [all...]
  /cts/tests/tests/accessibility/src/android/view/accessibility/cts/
AccessibilityServiceInfoTest.java 17 package android.view.accessibility.cts;
23 import android.view.accessibility.AccessibilityEvent;
24 import android.view.accessibility.AccessibilityManager;
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityWindowQueryActivity.java 18 import android.view.View;
20 import android.view.accessibility.AccessibilityNodeInfo;
21 import android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction;
27 * requesting an action to be performed on a given view from an
37 findViewById(R.id.button5).setOnClickListener(new View.OnClickListener() {
38 public void onClick(View v) {
42 findViewById(R.id.button5).setOnLongClickListener(new View.OnLongClickListener() {
43 public boolean onLongClick(View v) {
48 findViewById(R.id.button5).setAccessibilityDelegate(new View.AccessibilityDelegate()
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
Camera2MultiViewCtsActivity.java 22 import android.view.SurfaceView;
23 import android.view.TextureView;
24 import android.view.WindowManager;
48 throw new IllegalArgumentException("Texture view index must be 0 or 1");
55 throw new IllegalArgumentException("Surface view index must be 0 or 1");
  /cts/tests/tests/nativeopengl/standalone/src/com/android/gltest/
GLTestActivity.java 23 import android.view.SurfaceHolder;
24 import android.view.SurfaceView;
25 import android.view.Surface;
  /cts/tests/tests/view/src/android/view/cts/
GestureDetectorTest.java 17 package android.view.cts;
24 import android.view.GestureDetector;
25 import android.view.GestureDetector.SimpleOnGestureListener;
35 super("com.android.cts.view", GestureDetectorCtsActivity.class);
  /developers/build/prebuilts/gradle/ActionBarCompat-Basic/Application/src/main/java/com/example/android/actionbarcompat/basic/
MainActivity.java 20 import android.support.v4.view.MenuItemCompat;
22 import android.view.Menu;
23 import android.view.MenuItem;
  /developers/build/prebuilts/gradle/BasicManagedProfile/Application/src/main/java/com/example/android/basicmanagedprofile/
EnableProfileActivity.java 26 import android.view.View;
31 public class EnableProfileActivity extends Activity implements View.OnClickListener {
57 public void onClick(View view) {
58 switch (view.getId()) {
  /developers/build/prebuilts/gradle/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
CardEmulationFragment.java 23 import android.view.LayoutInflater;
24 import android.view.View;
25 import android.view.ViewGroup;
42 public View onCreateView(LayoutInflater inflater, ViewGroup container,
45 View v = inflater.inflate(R.layout.main_fragment, container, false);
  /developers/build/prebuilts/gradle/DoneBar/Application/src/main/java/com/example/android/donebar/
DoneBarActivity.java 22 import android.view.LayoutInflater;
23 import android.view.View;
24 import android.view.ViewGroup;
35 // Inflate a "Done/Cancel" custom action bar view.
38 final View customActionBarView = inflater.inflate(
41 new View.OnClickListener() {
43 public void onClick(View v) {
49 new View.OnClickListener() {
51 public void onClick(View v)
    [all...]
  /developers/build/prebuilts/gradle/FloatingActionButtonBasic/Application/src/main/java/com/example/android/floatingactionbuttonbasic/
FloatingActionButtonBasicFragment.java 25 import android.view.LayoutInflater;
26 import android.view.View;
27 import android.view.ViewGroup;
39 public View onCreateView(LayoutInflater inflater, ViewGroup container,
42 View rootView = inflater.inflate(R.layout.fab_layout, container, false);
  /developers/build/prebuilts/gradle/RecyclerView/Application/src/main/java/com/example/android/recyclerview/
CustomAdapter.java 22 import android.view.LayoutInflater;
23 import android.view.View;
24 import android.view.ViewGroup;
42 public ViewHolder(View v) {
44 // Define click listener for the ViewHolder's View.
45 v.setOnClickListener(new View.OnClickListener() {
47 public void onClick(View v) {
73 // Create a new view.
74 View v = LayoutInflater.from(viewGroup.getContext()
    [all...]
  /developers/build/prebuilts/gradle/SpeedTracker/Wearable/src/main/java/com/example/android/wearable/speedtracker/ui/
LocationSettingActivity.java 24 import android.view.View;
46 public void onClick(View view) {
47 switch (view.getId()) {
  /developers/samples/android/admin/BasicManagedProfile/Application/src/main/java/com/example/android/basicmanagedprofile/
EnableProfileActivity.java 26 import android.view.View;
31 public class EnableProfileActivity extends Activity implements View.OnClickListener {
57 public void onClick(View view) {
58 switch (view.getId()) {
  /developers/samples/android/connectivity/nfc/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
CardEmulationFragment.java 23 import android.view.LayoutInflater;
24 import android.view.View;
25 import android.view.ViewGroup;
42 public View onCreateView(LayoutInflater inflater, ViewGroup container,
45 View v = inflater.inflate(R.layout.main_fragment, container, false);
  /developers/samples/android/ui/actionbar/DoneBar/Application/src/main/java/com/example/android/donebar/
DoneBarActivity.java 22 import android.view.LayoutInflater;
23 import android.view.View;
24 import android.view.ViewGroup;
35 // Inflate a "Done/Cancel" custom action bar view.
38 final View customActionBarView = inflater.inflate(
41 new View.OnClickListener() {
43 public void onClick(View v) {
49 new View.OnClickListener() {
51 public void onClick(View v)
    [all...]

Completed in 332 milliseconds

<<31323334353637383940>>