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

1 2 3 4 5 6 7 8 910

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
QsbApplication.java 170 public synchronized Config getConfig() {
190 return new SearchSettingsImpl(getContext(), getConfig());
234 getIconLoaderExecutor(), getConfig());
238 int numWebCorpusThreads = getConfig().getNumWebCorpusThreads();
239 return new SearchableCorpusFactory(getContext(), getConfig(), getSettings(),
288 return ShortcutRepositoryImplLog.create(getContext(), getConfig(), getCorpora(),
340 int priority = getConfig().getQueryThreadPriority();
361 return new SuggestionsProviderImpl(getConfig(),
384 return new ShortcutPromoter(getConfig(),
385 new RankAwarePromoter(getConfig(), null, null), null)
    [all...]
AbstractPromoter.java 44 protected Config getConfig() {
SearchActivity.java 124 if (getConfig().showScrollingSuggestions()) {
125 mSearchActivityView.setMaxPromotedSuggestions(getConfig().getMaxPromotedSuggestions());
129 if (getConfig().showScrollingResults()) {
130 mSearchActivityView.setMaxPromotedResults(getConfig().getMaxPromotedResults());
286 private Config getConfig() {
287 return getQsbApplication().getConfig();
612 long delay = getConfig().getTypingUpdateSuggestionsDelayMillis();
643 if (query.length() == 0 && !getConfig().showShortcutsForZeroQuery()) {
ShortcutPromoter.java 50 int maxShortcuts = source.getMaxShortcuts(getConfig());
  /external/chromium/chrome/browser/extensions/
extension_test_api.h 58 // Set the dictionary returned by chrome.test.getConfig().
86 DECLARE_EXTENSION_FUNCTION_NAME("test.getConfig")
extension_apitest.h 105 // will be available to javascript tests using chrome.test.getConfig().
126 // javascript using chrome.test.getConfig().
extension_test_api.cc 19 // to be returned by chrome.test.getConfig(). Do this by calling
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglDisplay.h 46 EglConfig* getConfig(EGLConfig conf);
47 EglConfig* getConfig(EGLint id );
EglSurface.h 42 EglConfig* getConfig(){return m_config;};
EglContext.h 48 EglConfig* getConfig(){ return m_config;};
  /external/markdown/markdown/extensions/
rss.py 70 for tag, text in (("title", self.ext.getConfig("TITLE")),
71 ("link", self.ext.getConfig("URL")),
84 link.text = self.ext.getConfig("URL")
  /external/skia/legacy/src/effects/
SkTransparentShader.cpp 25 switch (fDevice->getConfig()) {
45 switch (fDevice->getConfig()) {
121 SkASSERT(fDevice->getConfig() == SkBitmap::kRGB_565_Config);
  /external/skia/src/effects/
SkTransparentShader.cpp 26 switch (fDevice->getConfig()) {
46 switch (fDevice->getConfig()) {
122 SkASSERT(fDevice->getConfig() == SkBitmap::kRGB_565_Config);
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
BitmapTest.java 55 assertTrue("getConfig", bm1.getConfig() == Bitmap.Config.ARGB_8888);
56 assertTrue("getConfig", bm2.getConfig() == Bitmap.Config.RGB_565);
57 assertTrue("getConfig", bm3.getConfig() == Bitmap.Config.ARGB_4444);
  /cts/tests/tests/drm/src/android/drm/cts/
ConfigFactory.java 33 public static Config getConfig(String plugInName) {
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
SoftMPEG4.h 42 virtual OMX_ERRORTYPE getConfig(OMX_INDEXTYPE index, OMX_PTR params);
  /sdk/emulator/opengl/host/libs/libOpenglRender/
RenderContext.h 32 int getConfig() const { return m_config; }
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerRunningTaskInfoTest.java 72 assertEquals(Bitmap.Config.RGB_565, values.thumbnail.getConfig());
99 assertEquals(Bitmap.Config.RGB_565, values.thumbnail.getConfig());
  /development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/
HelloCompute.java 43 mBitmapIn.getConfig());
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/
SoftAVC.h 44 virtual OMX_ERRORTYPE getConfig(OMX_INDEXTYPE index, OMX_PTR params);
  /packages/apps/Gallery2/gallerycommon/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));
  /frameworks/av/media/libstagefright/omx/
SoftOMXComponent.cpp 48 mComponent->GetConfig = GetConfigWrapper;
156 return me->getConfig(index, params);
274 OMX_ERRORTYPE SoftOMXComponent::getConfig(
  /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);
276 EGLConfig cnf = getConfig(_env, config);
320 EGLContext cnf = getConfig(_env, config);
347 EGLContext cnf = getConfig(_env, config);
376 EGLContext cnf = getConfig(_env, config);
  /frameworks/av/media/libstagefright/
OMXClient.cpp 58 virtual status_t getConfig(
238 status_t MuxOMX::getConfig(
241 return getOMX(node)->getConfig(node, index, params, size);
  /external/clang/lib/CodeGen/
CGCUDARuntime.cpp 34 CGF.EmitBranchOnBoolExpr(E->getConfig(), ContBlock, ConfigOKBlock);

Completed in 436 milliseconds

1 2 3 4 5 6 7 8 910