HomeSort by relevance Sort by last modified time
    Searched full:text_view (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_key_bindings_handler.cc 194 GtkTextView* text_view) {
196 text_view, HandlerGetType(), Handler);
201 void Gtk2KeyBindingsHandler::BackSpace(GtkTextView* text_view) {
202 GetHandlerOwner(text_view)
207 void Gtk2KeyBindingsHandler::CopyClipboard(GtkTextView* text_view) {
208 GetHandlerOwner(text_view)->EditCommandMatched(
212 void Gtk2KeyBindingsHandler::CutClipboard(GtkTextView* text_view) {
213 GetHandlerOwner(text_view)->EditCommandMatched(
218 GtkTextView* text_view, GtkDeleteType type, gint count) {
271 Gtk2KeyBindingsHandler* owner = GetHandlerOwner(text_view);
    [all...]
gtk2_key_bindings_handler.h 92 static Gtk2KeyBindingsHandler* GetHandlerOwner(GtkTextView* text_view);
95 static void BackSpace(GtkTextView* text_view);
98 static void CopyClipboard(GtkTextView* text_view);
101 static void CutClipboard(GtkTextView* text_view);
104 static void DeleteFromCursor(GtkTextView* text_view, GtkDeleteType type,
108 static void InsertAtCursor(GtkTextView* text_view, const gchar* str);
111 static void MoveCursor(GtkTextView* text_view, GtkMovementStep step,
115 static void MoveViewport(GtkTextView* text_view, GtkScrollStep step,
119 static void PasteClipboard(GtkTextView* text_view);
122 static void SelectAll(GtkTextView* text_view, gboolean select)
    [all...]
  /cts/tests/tests/appwidget/res/layout/
collection_widget_item_layout.xml 19 android:id="@+id/text_view"
  /external/chromium_org/chrome/browser/ui/cocoa/find_bar/
find_bar_browsertest.mm 19 NSText* text_view = base::mac::ObjCCast<NSText>([window firstResponder]);
20 return [[text_view delegate] isKindOfClass:[FindBarTextField class]];
  /development/samples/devbytes/animation/ListViewCellInsertion/res/layout/
list_view_item.xml 31 android:id="@+id/text_view"
  /developers/build/prebuilts/gradle/ClippingBasic/Application/src/main/res/layout/
clipping_basic_fragment.xml 31 android:id="@+id/text_view"
  /developers/samples/android/ui/views/Clipping/ClippingBasic/Application/src/main/res/layout/
clipping_basic_fragment.xml 31 android:id="@+id/text_view"
  /development/samples/browseable/ClippingBasic/res/layout/
clipping_basic_fragment.xml 31 android:id="@+id/text_view"
  /development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
ListViewDraggingAnimation.java 45 StableArrayAdapter adapter = new StableArrayAdapter(this, R.layout.text_view, mCheeseList);
  /developers/build/prebuilts/gradle/ClippingBasic/Application/tests/src/com/example/android/clippingbasic/tests/
SampleTests.java 56 assertNotNull("Text view is null", mTestActivity.findViewById(R.id.text_view));
  /developers/samples/android/ui/views/Clipping/ClippingBasic/Application/tests/src/com/example/android/clippingbasic/tests/
SampleTests.java 56 assertNotNull("Text view is null", mTestActivity.findViewById(R.id.text_view));
  /development/samples/devbytes/animation/ListViewExpandingCells/res/layout/
list_view_item.xml 55 android:id="@+id/text_view"
  /frameworks/base/core/tests/coretests/res/layout/
drawable_background_minimum_size.xml 38 android:id="@+id/text_view"
  /frameworks/base/core/tests/coretests/src/android/view/
DrawableBgMinSize.java 64 mTextView = (TextView) findViewById(R.id.text_view);
DrawableBgMinSizeTest.java 64 mTextView = (TextView) a.findViewById(R.id.text_view);
  /developers/build/prebuilts/gradle/ClippingBasic/Application/src/main/java/com/example/android/clippingbasic/
ClippingBasicFragment.java 68 mTextView = (TextView) view.findViewById(R.id.text_view);
99 view.findViewById(R.id.text_view).setOnClickListener(new View.OnClickListener() {
  /developers/samples/android/ui/views/Clipping/ClippingBasic/Application/src/main/java/com/example/android/clippingbasic/
ClippingBasicFragment.java 68 mTextView = (TextView) view.findViewById(R.id.text_view);
99 view.findViewById(R.id.text_view).setOnClickListener(new View.OnClickListener() {
  /development/samples/browseable/ClippingBasic/src/com.example.android.clippingbasic/
ClippingBasicFragment.java 68 mTextView = (TextView) view.findViewById(R.id.text_view);
99 view.findViewById(R.id.text_view).setOnClickListener(new View.OnClickListener() {
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
CustomArrayAdapter.java 102 TextView textView = (TextView)convertView.findViewById(R.id.text_view);
InsertionListView.java 144 TextView textView = (TextView)newCell.findViewById(R.id.text_view);
  /development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
CustomArrayAdapter.java 82 TextView textView = (TextView)convertView.findViewById(R.id.text_view);
  /packages/apps/Mms/res/layout/
message_list_item_recv.xml 56 <TextView android:id="@+id/text_view"
message_list_item_send.xml 56 <TextView android:id="@+id/text_view"
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UseCompoundDrawableRefactoring.java 39 import static com.android.SdkConstants.TEXT_VIEW;
163 first.getTagName().equals(TEXT_VIEW)
164 || second.getTagName().equals(TEXT_VIEW);
229 if (first.getTagName().equals(TEXT_VIEW)) {
  /external/chromium_org/chrome/browser/ui/cocoa/profiles/
profile_chooser_controller.mm 161 base::scoped_nsobject<HyperlinkTextView> text_view(
167 [text_view setMessageAndLink:[NSString stringWithFormat:@"%@\n", message]
175 [text_view setLinkTextAttributes:nil];
176 NSTextStorage* text_storage = [text_view textStorage];
182 NSRect frame = [[text_view attributedString]
186 [text_view setFrame:frame];
187 [text_view setDelegate:delegate];
188 return text_view.autorelease();
    [all...]

Completed in 1404 milliseconds

1 2