/packages/apps/Launcher3/src/com/android/launcher3/ |
Launcher.java | 460 setContentView(R.layout.launcher); 463 grid.layout(this); 929 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId, local 1436 CellLayout layout = getCellLayout(container, screenId); local 1524 CellLayout layout = getCellLayout(container, screenId); local 3959 HolographicLinearLayout layout = (HolographicLinearLayout) container; local [all...] |
FolderIcon.java | 302 public void setCellLayout(CellLayout layout) { 303 mCellLayout = layout; 342 CellLayout layout = (CellLayout) getParent().getParent(); local 344 mFolderRingAnimator.setCellLayout(layout); 346 layout.showFolderAccept(mFolderRingAnimator);
|
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/ |
maven-artifact-3.2.1.jar | |
/frameworks/base/core/java/android/widget/ |
TextView.java | 53 import android.text.Layout; 490 * extensively in the same layout. This mode indicates how the marquee 497 * the layout that should be used when the mode switches. 499 private Layout mSavedMarqueeModeLayout; 507 private Layout mHintLayout; 520 private Layout mLayout; 5347 Layout layout = mLayout; local 6878 Layout layout = isShowingHint() ? mHintLayout : mLayout; local 6955 Layout layout = isShowingHint() ? mHintLayout: mLayout; local [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
WebViewTest.cpp | 283 webView->layout(); 384 frameView->layout(); 391 frameView->layout(); [all...] |
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
DirectoryFragment.java | 191 final View view = inflater.inflate(R.layout.fragment_directory, container, false); 649 convertView = inflater.inflate(R.layout.item_loading_list, parent, false); 651 convertView = inflater.inflate(R.layout.item_loading_grid, parent, false); 679 convertView = inflater.inflate(R.layout.item_message_list, parent, false); 681 convertView = inflater.inflate(R.layout.item_message_grid, parent, false); 763 convertView = inflater.inflate(R.layout.item_doc_list, parent, false); 765 convertView = inflater.inflate(R.layout.item_doc_grid, parent, false); [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
SMSDispatcher.java | 908 View layout = inflater.inflate(R.layout.sms_short_code_confirmation_dialog, null); local [all...] |
/external/clang/lib/CodeGen/ |
CGBlocks.cpp | 110 // GC layout. 131 Purely notional variadic template describing the layout of a block. 307 assert(intSize <= ptrSize && "layout assumptions horribly violated"); 329 /// Compute the layout of the given block. Attempts to lay the block 349 // Collect the layout chunks. 350 SmallVector<BlockLayoutChunk, 16> layout; local 351 layout.reserve(block->capturesCXXThis() + 367 layout.push_back(BlockLayoutChunk(tinfo.second, tinfo.first, 388 layout.push_back(BlockLayoutChunk(tinfo.second, tinfo.first, 393 // Otherwise, build a layout chunk with the size and alignment o [all...] |
/external/clang/lib/AST/ |
DeclObjC.cpp | 1279 SmallVector<SynthesizeIvarChunk, 16> layout; local [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
ScrollingMovementMethodTest.java | 24 import android.text.Layout; 84 * All these assertions depends on whether the TextView has a layout.The text view will not 85 * get layout in setContent method but in otherhandler's function. Assertion which is 88 * several steps,setting the content at first, waiting the layout, and checking the 190 * All these assertions depends on whether the TextView has a layout.The text view will not 191 * get layout in setContent method but in otherhandler's function. Assertion which is 194 * several steps,setting the content at first, waiting the layout, and checking the 293 * All these assertions depends on whether the TextView has a layout.The text view will not 294 * get layout in setContent method but in otherhandler's function. Assertion which is 297 * several steps,setting the content at first, waiting the layout, and checking th [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
WindowTest.java | 227 mWindow.addContentView(inflater.inflate(R.layout.windowstub_addlayout, null), lp); 410 * setContentView(int): set the screen content from a layout resource. 432 mWindow.setContentView(R.layout.windowstub_layout); 438 setView = inflate.inflate(R.layout.windowstub_addlayout, null); 445 setView = inflate.inflate(R.layout.windowstub_layout, null); 575 * Set the width and height layout parameters of the window. [all...] |
/developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/ |
MainActivity.java | 260 // Initialize the layout. 261 setContentView(R.layout.sample_media_router); 653 super(MainActivity.this, R.layout.media_item); 660 v = getLayoutInflater().inflate(R.layout.media_item, null); 690 super(MainActivity.this, R.layout.media_item); 697 v = getLayoutInflater().inflate(R.layout.media_item, null);
|
/developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/ |
MainActivity.java | 260 // Initialize the layout. 261 setContentView(R.layout.sample_media_router); 653 super(MainActivity.this, R.layout.media_item); 660 v = getLayoutInflater().inflate(R.layout.media_item, null); 690 super(MainActivity.this, R.layout.media_item); 697 v = getLayoutInflater().inflate(R.layout.media_item, null);
|
/development/samples/Support7Demos/src/com/example/android/supportv7/media/ |
SampleMediaRouterActivity.java | 263 // Initialize the layout. 264 setContentView(R.layout.sample_media_router); 667 super(SampleMediaRouterActivity.this, R.layout.media_item); 674 v = getLayoutInflater().inflate(R.layout.media_item, null); 702 super(SampleMediaRouterActivity.this, R.layout.media_item); 709 v = getLayoutInflater().inflate(R.layout.media_item, null);
|
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
Adapters.java | 76 * <li><code>android:layout</code>: Reference to the XML layout to be inflated for 221 * android:layout="@layout/contact_item"> 626 int layout = a.getResourceId(R.styleable.CursorAdapter_layout, 0); local 627 if (layout == 0) { 628 throw new IllegalArgumentException("The layout specified in " + 671 return new XmlCursorAdapter(mContext, layout, uri, fromArray, toArray, selection, [all...] |
/development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/ |
MainActivity.java | 260 // Initialize the layout. 261 setContentView(R.layout.sample_media_router); 653 super(MainActivity.this, R.layout.media_item); 660 v = getLayoutInflater().inflate(R.layout.media_item, null); 690 super(MainActivity.this, R.layout.media_item); 697 v = getLayoutInflater().inflate(R.layout.media_item, null);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/ |
nouveau_texture.c | 99 st->layout = LINEAR; 176 st->layout = LINEAR; 384 enum nouveau_surface_layout layout = local 405 .layout = layout,
|
/external/chromium_org/ui/views/layout/ |
grid_layout.cc | 5 #include "ui/views/layout/grid_layout.h" 12 #include "ui/views/layout/layout_constants.h" 24 // Invokes ResetSize on all the layout elements. 27 // Reset the layout width of each column. 38 // Reset the layout width of each column. 349 // The preferred width/height. These are reset during the layout process. 353 // Used during layout. Gives how much width/height has not yet been 614 // Let layout element reset the sizes for us. 672 GridLayout* layout = new GridLayout(host); local 673 layout->SetInsets(kPanelVertMargin, kButtonHEdgeMarginNew [all...] |
/external/deqp/modules/glshared/ |
glsFragOpInteractionCase.cpp | 79 static void computeVertexLayout (const vector<rsg::ShaderInput*>& attributes, int numVertices, vector<glu::VertexArrayBinding>* layout, int* stride) 81 DE_ASSERT(layout->empty()); 94 layout->push_back(glu::va::Float(var->getName(), numComps, numVertices, 0 /* computed later */, (const float*)(deUintptr)curOffset)); 99 for (vector<glu::VertexArrayBinding>::iterator vaIter = layout->begin(); vaIter != layout->end(); ++vaIter)
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
PerformanceResultsPreferencePage.java | 31 import org.eclipse.swt.layout.GridData; 32 import org.eclipse.swt.layout.GridLayout; 93 * layout data. 134 * Creates composite control and sets the default layout data. 147 GridLayout layout = new GridLayout(); local 148 layout.numColumns = numColumns; 149 composite.setLayout(layout); 243 // Default dimension layout 253 // Results dimensions layout 262 // Config descriptors layout [all...] |
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nouveau_texture.c | 99 st->layout = LINEAR; 176 st->layout = LINEAR; 384 enum nouveau_surface_layout layout = local 405 .layout = layout,
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
SlidingChallengeLayout.java | 43 * This layout handles interaction with the sliding security challenge views 150 // True if at least one layout pass has happened since the view was attached. 205 * <p>Do not perform expensive operations (e.g. layout) 215 * <p>NOTE: It is NOT safe to modify layout or call any View methods that may 440 // These might not be here yet if we haven't been through layout. 441 // If we haven't, the first layout pass will set everything up correctly 721 // the widget pager or otherwise transformed it during layout. [all...] |
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
TestService.java | 699 super("LayoutInflater", "Inflate layout resource"); 712 inf.inflate(R.layout.small_layout, null); 721 super("LayoutInflaterLarge", "Inflate large layout resource"); 734 inf.inflate(R.layout.large_layout, null); 743 super("LayoutInflaterView", "Inflate layout with 50 View objects"); 756 inf.inflate(R.layout.view_layout, null); 765 super("LayoutInflaterButton", "Inflate layout with 50 Button objects"); 778 inf.inflate(R.layout.button_layout, null); 787 super("LayoutInflaterImageButton", "Inflate layout with 50 ImageButton objects"); 800 inf.inflate(R.layout.image_button_layout, null) [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
ConversationList.java | 137 setContentView(R.layout.conversation_list_screen); 232 .inflate(R.layout.conversation_list_actionbar, null); 771 View contents = View.inflate(context, R.layout.delete_thread_dialog_view, null); [all...] |
/packages/apps/MusicFX/src/com/android/musicfx/ |
ActivityMusic.java | 265 setContentView(R.layout.music_main); 296 // Enable Linear layout (in scroll layout) view with all 307 // Show msg when disabled slider (layout) is touched 369 // Show msg when disabled slider (layout) is touched 499 android.R.layout.simple_spinner_item, PRESETREVERBPRESETSTRINGS); 500 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); 521 android.R.layout.simple_spinner_item, mEQPresetNames); 522 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); 543 * En/disables all children for a given view. For linear and relative layout children do thi [all...] |