HomeSort by relevance Sort by last modified time
    Searched refs:Config (Results 326 - 350 of 1082) sorted by null

<<11121314151617181920>>

  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
ProfileObserver.java 36 Config.init(mContext);
  /packages/apps/DevCamera/src/com/android/devcamera/
BitmapUtility.java 54 Bitmap b = Bitmap.createBitmap(colors, w, h, Bitmap.Config.ARGB_8888);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 20 import android.graphics.Bitmap.Config;
87 public Config config; field in class:UploadedTexture.BorderKey
92 int x = config.hashCode() ^ length;
101 && config == o.config && length == o.length;
119 boolean vertical, Config config, int length) {
122 key.config = config;
233 Config config = bitmap.getConfig(); local
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 20 import android.graphics.Bitmap.Config;
88 public Config config; field in class:UploadedTexture.BorderKey
93 int x = config.hashCode() ^ length;
102 && config == o.config && length == o.length;
120 boolean vertical, Config config, int length) {
123 key.config = config;
234 Config config = bitmap.getConfig(); local
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
QsbApplication.java 51 private Config mConfig;
155 public synchronized Config getConfig() {
162 protected Config createConfig() {
163 return new Config(getContext());
  /packages/apps/TV/tests/unit/src/com/android/tv/util/
ImageCacheTest.java 33 private static final Bitmap ORIG = Bitmap.createBitmap(100, 100, Bitmap.Config.RGB_565);
  /system/connectivity/apmanager/dbus/
dbus_control.h 39 Config* config, int service_identifier) override;
service_dbus_adaptor.h 47 void SetConfig(Config* config) override;
  /system/connectivity/apmanager/
mock_control.h 49 Config* config, int service_identifier) override;
  /external/deqp/modules/egl/
teglRenderCase.cpp 112 void RenderCase::executeForConfig (EGLDisplay display, EGLConfig config)
118 const EGLint configId = eglu::getConfigID(egl, display, config);
129 string("Config") + de::toString(configId) + "-Window",
130 string("Config ID ") + de::toString(configId) + ", window surface");
137 de::UniquePtr<eglu::NativeWindow> window (windowFactory.createWindow(&nativeDisplay, display, config, DE_NULL, params));
138 EGLSurface eglSurface = createWindowSurface(nativeDisplay, *window, display, config, DE_NULL);
141 executeForSurface(display, *surface, Config(config, EGL_WINDOW_BIT, 0));
154 string("Config") + de::toString(configId) + "-Pixmap",
155 string("Config ID ") + de::toString(configId) + ", pixmap surface")
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvideoengine2.h 211 void ConfigureReceiverRtp(webrtc::VideoReceiveStream::Config* config,
242 const webrtc::VideoSendStream::Config& config,
283 const webrtc::VideoSendStream::Config& config,
287 webrtc::VideoSendStream::Config config; member in struct:cricket::WebRtcVideoChannel2::WebRtcVideoSendStream::VideoSendStreamParameters
392 const webrtc::VideoReceiveStream::Config& config,
    [all...]
  /external/webrtc/webrtc/call/
rampup_tests.cc 69 Call::Config RampUpTester::GetSenderCallConfig() {
70 Call::Config call_config;
100 VideoSendStream::Config* send_config,
101 std::vector<VideoReceiveStream::Config>* receive_configs,
154 for (VideoReceiveStream::Config& recv_config : *receive_configs) {
180 AudioSendStream::Config* send_config,
181 std::vector<AudioReceiveStream::Config>* receive_configs) {
202 for (AudioReceiveStream::Config& recv_config : *receive_configs) {
351 Call::Config RampUpDownUpTester::GetReceiverCallConfig() {
352 Call::Config config local
    [all...]
bitrate_estimator_tests.cc 110 AudioState::Config audio_state_config;
112 Call::Config config; local
113 config.audio_state = AudioState::Create(audio_state_config);
114 receiver_call_.reset(Call::Create(config));
115 sender_call_.reset(Call::Create(config));
122 video_send_config_ = VideoSendStream::Config(send_transport_.get());
131 receive_config_ = VideoReceiveStream::Config(receive_transport_.get());
185 AudioReceiveStream::Config receive_config;
258 VideoReceiveStream::Config receive_config_
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
NinePatchTest.java 71 Bitmap bitmap = Bitmap.createBitmap(COLOR, 10, 10, Bitmap.Config.ARGB_4444);
81 Bitmap.Config.ARGB_8888);
89 Bitmap.Config.ARGB_8888);
96 Bitmap.Config.ARGB_8888);
106 Bitmap.Config.ARGB_8888);
ColorMatrixColorFilterTest.java 25 import android.graphics.Bitmap.Config;
44 Bitmap bitmap = Bitmap.createBitmap(1, 1, Config.ARGB_8888);
  /cts/tests/tests/text/src/android/text/cts/
EmojiTest.java 61 sb.append(" Config:");
62 if (bmp.getConfig() == Bitmap.Config.ALPHA_8) {
64 } else if (bmp.getConfig() == Bitmap.Config.RGB_565) {
66 } else if (bmp.getConfig() == Bitmap.Config.ARGB_4444) {
68 } else if (bmp.getConfig() == Bitmap.Config.ARGB_8888) {
279 Bitmap.Config.ARGB_8888);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
Downsampler.java 193 Bitmap.Config config = getConfig(is, decodeFormat); local
195 options.inPreferredConfig = config;
200 setInBitmap(options, pool.getDirty(targetWidth, targetHeight, config));
233 private static Bitmap.Config getConfig(InputStream is, DecodeFormat format) {
236 return Bitmap.Config.ARGB_8888;
258 return hasAlpha ? Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565;
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/drawable/
IconTest.java 45 final Bitmap bm1 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_8888);
46 final Bitmap bm2 = Bitmap.createBitmap(100, 200, Bitmap.Config.RGB_565);
64 draw1.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
66 draw2.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
68 draw3.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
118 draw1.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
145 draw1.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
178 draw1.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
251 draw1.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 23 import android.graphics.Bitmap.Config;
541 * @param config The bitmap configuration.
544 private static int getBytesPerPixel(Config config) {
545 if (config == Config.ARGB_8888) {
547 } else if (config == Config.RGB_565) {
549 } else if (config == Config.ARGB_4444)
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 23 import android.graphics.Bitmap.Config;
541 * @param config The bitmap configuration.
544 private static int getBytesPerPixel(Config config) {
545 if (config == Config.ARGB_8888) {
547 } else if (config == Config.RGB_565) {
549 } else if (config == Config.ARGB_4444)
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageCache.java 23 import android.graphics.Bitmap.Config;
541 * @param config The bitmap configuration.
544 private static int getBytesPerPixel(Config config) {
545 if (config == Config.ARGB_8888) {
547 } else if (config == Config.RGB_565) {
549 } else if (config == Config.ARGB_4444)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ColorDrawableTest.java 21 import android.graphics.Bitmap.Config;
143 final Bitmap b = Bitmap.createBitmap(1, 1, Config.ARGB_8888);
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
RectShapeTest.java 22 import android.graphics.Bitmap.Config;
54 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Config.ARGB_8888);
RoundRectShapeTest.java 22 import android.graphics.Bitmap.Config;
68 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Config.ARGB_8888);
ShapeTest.java 22 import android.graphics.Bitmap.Config;
101 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Config.ARGB_8888);

Completed in 736 milliseconds

<<11121314151617181920>>