OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:getconfig
(Results
26 - 50
of
263
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/common/
BitmapUtils.java
122
Bitmap target = Bitmap.createBitmap(width, height,
getConfig
(bitmap));
131
private static Bitmap.Config
getConfig
(Bitmap bitmap) {
132
Bitmap.Config config = bitmap.
getConfig
();
158
Bitmap target = Bitmap.createBitmap(size, size,
getConfig
(bitmap));
/sdk/emulator/opengl/host/libs/Translator/EGL/
EglContext.h
48
EglConfig*
getConfig
(){ return m_config;};
/external/chromium_org/ui/gl/
gl_surface.cc
139
void* GLSurface::
GetConfig
() {
249
void* GLSurfaceAdapter::
GetConfig
() {
250
return surface_->
GetConfig
();
gl_context_glx.cc
64
static_cast<GLXFBConfig>(compatible_surface->
GetConfig
()),
77
static_cast<GLXFBConfig>(compatible_surface->
GetConfig
()),
gl_surface.h
91
virtual void*
GetConfig
();
147
virtual void*
GetConfig
() OVERRIDE;
gl_surface_egl.cc
278
GetConfig
(),
315
EGLConfig NativeViewGLSurfaceEGL::
GetConfig
() {
523
GetConfig
(),
548
EGLConfig PbufferGLSurfaceEGL::
GetConfig
() {
630
EGLConfig SurfacelessEGL::
GetConfig
() {
/frameworks/av/media/libstagefright/omx/
SoftOMXComponent.cpp
48
mComponent->
GetConfig
= GetConfigWrapper;
156
return me->
getConfig
(index, params);
274
OMX_ERRORTYPE SoftOMXComponent::
getConfig
(
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchActivity.java
114
if (
getConfig
().showScrollingResults()) {
115
mSearchActivityView.setMaxPromotedResults(
getConfig
().getMaxPromotedResults());
229
private Config
getConfig
() {
230
return getQsbApplication().
getConfig
();
454
long delay =
getConfig
().getTypingUpdateSuggestionsDelayMillis();
EventLogLogger.java
56
protected Config
getConfig
() {
SearchSettingsImpl.java
86
protected Config
getConfig
() {
162
if (currentTime - firstHintTime >
getConfig
().getVoiceSearchHintActivePeriod()) {
/frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp
63
static inline EGLConfig
getConfig
(JNIEnv* env, jobject o) {
232
EGLConfig cnf =
getConfig
(_env, config);
248
EGLConfig cnf =
getConfig
(_env, config);
275
EGLConfig cnf =
getConfig
(_env, config);
319
EGLContext cnf =
getConfig
(_env, config);
346
EGLContext cnf =
getConfig
(_env, config);
374
EGLContext cnf =
getConfig
(_env, config);
/frameworks/av/media/libstagefright/
OMXClient.cpp
58
virtual status_t
getConfig
(
253
status_t MuxOMX::
getConfig
(
256
return getOMX(node)->
getConfig
(node, index, params, size);
/external/chromium/chrome/browser/extensions/
extension_test_api.cc
19
// to be returned by chrome.test.
getConfig
(). Do this by calling
/external/chromium_org/chrome/browser/notifications/sync_notifier/
notification_bitmap_fetcher.cc
68
decoded_image.deepCopyTo(bitmap_.get(), decoded_image.
getConfig
());
/external/chromium_org/remoting/host/setup/
daemon_controller_delegate_win.h
26
virtual scoped_ptr<base::DictionaryValue>
GetConfig
() OVERRIDE;
daemon_controller.cc
40
void DaemonController::
GetConfig
(const GetConfigCallback& done) {
128
scoped_ptr<base::DictionaryValue> config = delegate_->
GetConfig
();
/external/clang/lib/CodeGen/
CGCUDARuntime.cpp
34
CGF.EmitBranchOnBoolExpr(E->
getConfig
(), ContBlock, ConfigOKBlock);
/external/jmonkeyengine/engine/src/android/com/jme3/asset/
AndroidImageInfo.java
67
switch (bitmap.
getConfig
()) {
/external/markdown/markdown/extensions/
footnotes.py
85
if child.text.find(self.
getConfig
("PLACE_MARKER")) > -1:
88
if child.tail.find(self.
getConfig
("PLACE_MARKER")) > -1:
102
if self.
getConfig
("UNIQUE_IDS"):
109
if self.
getConfig
("UNIQUE_IDS"):
/frameworks/av/media/libstagefright/include/
SoftOMXComponent.h
64
virtual OMX_ERRORTYPE
getConfig
(
/cts/apps/CtsVerifier/jni/cameraanalyzer/
com_android_cts_verifier_camera_analyzer_CameraTests.cpp
182
jmethodID
getConfig
= env->GetStaticMethodID(
189
getConfig
,
/cts/tests/src/android/widget/cts/
WidgetTestUtils.java
52
|| b1.
getConfig
() != b2.
getConfig
()) {
/cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java
165
mBitmap.
getConfig
());
188
assertEquals(Config.RGB_565, ret.
getConfig
());
261
assertEquals(Config.RGB_565, ret.
getConfig
());
307
assertEquals(Config.RGB_565, ret.
getConfig
());
406
assertEquals(Bitmap.Config.ALPHA_8, bm0.
getConfig
());
407
assertEquals(Bitmap.Config.ARGB_8888, bm1.
getConfig
());
408
assertEquals(Bitmap.Config.RGB_565, bm2.
getConfig
());
410
assertEquals(Bitmap.Config.ARGB_8888, bm3.
getConfig
());
/cts/tests/tests/widget/src/android/widget/cts/
ImageSwitcherTest.java
109
currViewBitmap.getBitmap().
getConfig
());
118
currViewBitmap.getBitmap().
getConfig
());
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
BitmapTest.java
41
assertEquals(bitmap.
getConfig
(), Config.ARGB_8888);
137
assertEquals(shadowOf(bitmapCopy).
getConfig
(), Config.ARGB_8888);
Completed in 882 milliseconds
1
2
3
4
5
6
7
8
9
10
11