Searched defs:setup (Results 1 - 25 of 28) sorted by last modified time

12

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DOpReorderTest.java60 public void setup(int count) { method in class:OpReorderTest
80 setup(10);
87 setup(10);
94 setup(10);
101 setup(5);
108 setup(5);
115 setup(5);
122 setup(10);
129 setup(5);
136 setup(
[all...]
/frameworks/rs/driver/
H A DrsdShader.cpp458 rsdGLCheckError(rsc, "Sampler::setup tex env");
497 rsdGLCheckError(rsc, "ProgramFragment::setup tex bind");
510 rsdGLCheckError(rsc, "ProgramFragment::setup basic tex env");
512 rsdGLCheckError(rsc, "ProgramFragment::setup uniforms");
517 rsdGLCheckError(rsc, "ProgramFragment::setup");
567 void RsdShader::setup(const android::renderscript::Context *rsc, RsdShaderCache *sc) { function in class:RsdShader
H A DrsdShaderCache.cpp86 bool RsdShaderCache::setup(const Context *rsc) { function in class:RsdShaderCache
96 mFragment->setup(rsc, this);
100 mVertex->setup(rsc, this);
H A DrsdVertexArray.cpp82 void RsdVertexArray::setup(const Context *rsc) const { function in class:RsdVertexArray
88 rsdGLCheckError(rsc, "RsdVertexArray::setup start");
98 rsdGLCheckError(rsc, "RsdVertexArray::setup disabled");
117 rsdGLCheckError(rsc, "RsdVertexArray::setup done");
/frameworks/rs/java/tests/GenImages/src/com/android/rs/genimage/
H A DGenImage.java149 public String setup(int key) { method in class:Triangle
235 String ext = setup(key++);
/frameworks/rs/
H A DrsFBOCache.cpp85 void FBOCache::setup(Context *rsc) { function in class:FBOCache
H A DrsProgramFragment.cpp63 void ProgramFragment::setup(Context *rsc, ProgramFragmentState *state) { function in class:ProgramFragment
H A DrsProgramRaster.cpp46 void ProgramRaster::setup(const Context *rsc, ProgramRasterState *state) { function in class:ProgramRaster
H A DrsProgramStore.cpp57 void ProgramStore::setup(const Context *rsc, ProgramStoreState *state) { function in class:ProgramStore
H A DrsProgramVertex.cpp38 void ProgramVertex::setup(Context *rsc, ProgramVertexState *state) { function in class:ProgramVertex
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentTabHost.java169 * @deprecated Don't call the original TabHost setup, you must instead
170 * call {@link #setup(Context, FragmentManager)} or
171 * {@link #setup(Context, FragmentManager, int)}.
174 public void setup() { method in class:FragmentTabHost
176 "Must call setup() that takes a Context and FragmentManager");
179 public void setup(Context context, FragmentManager manager) { method in class:FragmentTabHost
180 ensureHierarchy(context); // Ensure views required by super.setup()
181 super.setup();
187 public void setup(Context context, FragmentManager manager, int containerId) { method in class:FragmentTabHost
188 ensureHierarchy(context); // Ensure views required by super.setup()
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentTabHost.java37 * the hierarchy you must call {@link #setup(Context, FragmentManager, int)}
177 * @deprecated Don't call the original TabHost setup, you must instead
178 * call {@link #setup(Context, FragmentManager)} or
179 * {@link #setup(Context, FragmentManager, int)}.
182 public void setup() { method in class:FragmentTabHost
184 "Must call setup() that takes a Context and FragmentManager");
187 public void setup(Context context, FragmentManager manager) { method in class:FragmentTabHost
188 ensureHierarchy(context); // Ensure views required by super.setup()
189 super.setup();
195 public void setup(Contex method in class:FragmentTabHost
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
H A DConfigGenerator.java17 package com.android.layoutlib.bridge.intensive.setup;
H A DLayoutLibTestCallback.java17 package com.android.layoutlib.bridge.intensive.setup;
H A DLayoutPullParser.java17 package com.android.layoutlib.bridge.intensive.setup;
/frameworks/base/wifi/java/android/net/wifi/
H A DWpsInfo.java40 /** Wi-Fi Protected Setup. www.wi-fi.org/wifi-protected-setup has details */
41 public int setup; field in class:WpsInfo
50 setup = INVALID;
57 sbuf.append(" setup: ").append(setup);
74 setup = source.setup;
82 dest.writeInt(setup);
92 config.setup = in.readInt();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardClockPositionAlgorithm.java88 public void setup(int maxKeyguardNotifications, int maxPanelHeight, float expandedHeight, method in class:KeyguardClockPositionAlgorithm
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRipple.java120 public void setup(int maxRadius, float density) { method in class:Ripple
H A DRippleBackground.java108 public void setup(int maxRadius, float density) { method in class:RippleBackground
/frameworks/base/libs/hwui/renderthread/
H A DCanvasContext.cpp131 void CanvasContext::setup(int width, int height, const Vector3& lightCenter, float lightRadius, function in class:android::uirenderer::renderthread::CanvasContext
H A DRenderProxy.cpp169 CREATE_BRIDGE7(setup, CanvasContext* context, int width, int height,
172 args->context->setup(args->width, args->height, args->lightCenter, args->lightRadius,
177 void RenderProxy::setup(int width, int height, const Vector3& lightCenter, float lightRadius, function in class:android::uirenderer::renderthread::RenderProxy
179 SETUP_TASK(setup);
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
H A DScoAudioTest.java436 setup();
461 public void setup() { method in class:ScoAudioTest.SimpleRecordController
462 Log.e(TAG, "SimpleRecordController setup()");
/frameworks/base/core/java/android/view/
H A DHardwareRenderer.java264 * was last set to in a call to {@link #setup(int, int, Rect)}.
272 * was last set to in a call to {@link #setup(int, int, Rect)}.
369 * Initializes the hardware renderer for the specified surface and setup the
372 * reinitialized and setup when the render {@link #isRequested()} and
389 setup(width, height, surfaceInsets);
404 abstract void setup(int width, int height, Rect surfaceInsets); method in class:HardwareRenderer
H A DThreadedRenderer.java193 void setup(int width, int height, Rect surfaceInsets) { method in class:ThreadedRenderer
/frameworks/base/core/java/android/widget/
H A DListView.java1108 public FocusSelector setup(int position, int top) { method in class:ListView.FocusSelector
1131 post(mFocusSelector.setup(childPosition, top));

Completed in 2992 milliseconds

12