HomeSort by relevance Sort by last modified time
    Searched full:mcontext (Results 526 - 550 of 1623) sorted by null

<<21222324252627282930>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
AccessibilityUtils.java 49 private Context mContext;
84 mContext = context;
138 final boolean speakPassword = Settings.Secure.getInt(mContext.getContentResolver(),
186 return mContext.getString(R.string.spoken_auto_correct_obscured,
189 return mContext.getString(R.string.spoken_auto_correct, keyCodeDescription,
249 final CharSequence text = mContext.getText(R.string.spoken_use_headphones);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
GoNegRespTestCase.java 43 mContext.registerReceiver(mReceiver, mIntentFilter);
71 mContext.unregisterReceiver(mReceiver);
  /cts/tests/tests/app/src/android/app/cts/
LifecycleTest.java 53 mTabIntent = new Intent(mContext, LaunchpadTabActivity.class);
54 mTabIntent.putExtra("tab", new ComponentName(mContext, LaunchpadActivity.class));
  /cts/tests/tests/permission2/src/android/permission2/cts/
NoProcessOutgoingCallPermissionTest.java 43 mContext.startActivity(intent);
56 Intent ntnt = mContext.registerReceiver(rcvr,
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
Adapters.java 283 protected final Context mContext;
303 mContext = context;
339 protected final Context mContext;
347 mContext = context;
593 private final Context mContext;
605 mContext = c;
610 mResources = mContext.getResources();
614 mIdentity = new IdentityTransformation(mContext);
671 return new XmlCursorAdapter(mContext, layout, uri, fromArray, toArray, selection,
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
Tokenizer.l 276 mContext.diagnostics = diagnostics;
288 mContext.input = Input(count, string, length);
309 mContext.diagnostics->report(Diagnostics::TOKEN_TOO_LONG,
316 token->setAtStartOfLine(mContext.lineStart);
317 mContext.lineStart = token->type == '\n';
319 token->setHasLeadingSpace(mContext.leadingSpace);
320 mContext.leadingSpace = false;
325 if ((mHandle == NULL) && yylex_init_extra(&mContext, &mHandle))
  /frameworks/base/core/java/android/hardware/
SerialManager.java 37 private final Context mContext;
44 mContext = context;
  /frameworks/base/core/java/com/android/internal/app/
ActionBarImpl.java 73 private Context mContext;
178 mContext = decor.getContext();
208 ActionBarPolicy abp = ActionBarPolicy.get(mContext);
214 setHasEmbeddedTabs(ActionBarPolicy.get(mContext).hasEmbeddedTabs());
250 ScrollingTabContainerView tabScroller = new ScrollingTabContainerView(mContext);
352 setTitle(mContext.getString(resId));
357 setSubtitle(mContext.getString(resId));
708 anim.setInterpolator(AnimationUtils.loadInterpolator(mContext,
767 anim.setInterpolator(AnimationUtils.loadInterpolator(mContext,
803 Resources.Theme currentTheme = mContext.getTheme()
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LifecycleTest.java 32 mTabIntent = new Intent(mContext, LaunchpadTabActivity.class);
33 mTabIntent.putExtra("tab", new ComponentName(mContext,
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
StorageBrowser.java 48 private final Context mContext;
52 mContext = c;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
SettingsUI.java 48 mBrightnessDialog = new BrightnessDialog(mContext);
70 mContext.registerReceiverAsUser(mIntentReceiver, UserHandle.ALL, filter, null, mHandler);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DateView.java 76 mContext.registerReceiver(mIntentReceiver, filter, null, null);
86 mContext.unregisterReceiver(mIntentReceiver);
  /frameworks/base/services/java/com/android/server/
IdleMaintenanceService.java 95 private final Context mContext;
108 mContext = context;
116 mHandler = new Handler(mContext.getMainLooper());
120 mUpdateIdleMaintenanceStatePendingIntent = PendingIntent.getBroadcast(mContext, 0,
143 mContext.registerReceiverAsUser(this, UserHandle.ALL,
148 mContext.registerReceiverAsUser(this, UserHandle.ALL,
221 mContext.sendOrderedBroadcastAsUser(sIdleMaintenanceStartIntent, UserHandle.ALL,
227 mContext.sendOrderedBroadcastAsUser(sIdleMaintenanceEndIntent, UserHandle.ALL,
  /frameworks/ex/common/java/com/android/common/widget/
GroupingListAdapter.java 59 private Context mContext;
117 mContext = context;
460 view = newStandAloneView(mContext, parent);
463 view = newGroupView(mContext, parent);
466 view = newChildView(mContext, parent);
474 bindStandAloneView(view, mContext, mCursor);
477 bindGroupView(view, mContext, mCursor, mPositionMetadata.childCount,
481 bindChildView(view, mContext, mCursor);
  /frameworks/support/v13/java/android/support/v13/app/
FragmentTabHost.java 46 private Context mContext;
67 private final Context mContext;
70 mContext = context;
75 View v = new View(mContext);
182 mContext = context;
190 mContext = context;
219 tabSpec.setContent(new DummyTabFactory(mContext));
335 newTab.fragment = Fragment.instantiate(mContext,
  /frameworks/support/v4/java/android/support/v4/app/
FragmentTabHost.java 54 private Context mContext;
75 private final Context mContext;
78 mContext = context;
83 View v = new View(mContext);
190 mContext = context;
198 mContext = context;
227 tabSpec.setContent(new DummyTabFactory(mContext));
343 newTab.fragment = Fragment.instantiate(mContext,
  /frameworks/testing/androidtestlib/tests/src/com/android/test/runner/
ClassPathScannerTest.java 46 public Context mContext;
50 mClassPathScanner = new ClassPathScanner(mContext.getPackageCodePath()) {
  /packages/apps/Browser/src/com/android/browser/
PageDialogsHandler.java 39 private Context mContext;
60 mContext = context;
90 mHttpAuthenticationDialog = new HttpAuthenticationDialog(mContext, host, realm);
140 final LayoutInflater factory = LayoutInflater.from(mContext);
164 new AlertDialog.Builder(mContext)
344 View certificateView = certificate.inflateCertificateView(mContext);
348 LayoutInflater factory = LayoutInflater.from(mContext);
386 return new AlertDialog.Builder(mContext)
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
ExchangeTestCase.java 36 mContext = getContext();
38 mProviderContext = mContext;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorGrad.java 92 if (ParametricEditor.useCompact(mContext)) {
115 if (useCompact(mContext)) {
116 view.setText(mContext.getString(R.string.editor_grad_brightness));
127 view.setText(mContext.getString(R.string.grad));
144 if (ParametricEditor.useCompact(mContext)) {
153 (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
217 mEffectName = mContext.getResources().getString(getModeNameid(mMode));
258 ((FilterShowActivity)mContext).onShowMenu(mPopupMenu);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
PackageIconLoaderTest.java 56 return new PackageIconLoader(mContext, mContext.getPackageName(), mThread.getHandler(),
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderDisplayer.java 40 protected Context mContext;
47 mContext = context;
  /packages/apps/VideoEditor/src/com/android/videoeditor/
TransitionsAdapter.java 77 (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
101 return BitmapFactory.decodeResource(mContext.getResources(),
  /packages/services/Telephony/src/com/android/phone/
AudioRouter.java 47 private final Context mContext;
58 mContext = context;
219 PhoneUtils.restoreSpeakerMode(mContext);
221 if (PhoneUtils.isSpeakerOn(mContext)) {
229 PhoneUtils.turnOnSpeaker(mContext, false, false);
290 if (PhoneUtils.isSpeakerOn(mContext) != onOff) {
291 PhoneUtils.turnOnSpeaker(mContext, onOff, true /* storeState */);
310 } else if (PhoneUtils.isSpeakerOn(mContext)) {
  /packages/apps/Calendar/src/com/android/calendar/
CalendarController.java 64 private final Context mContext;
93 mTime.switchTimezone(Utils.getTimeZone(mContext, this));
310 mContext = context;
313 mDetailViewType = Utils.getSharedPreference(mContext,
375 info.startTime = new Time(Utils.getTimeZone(mContext, mUpdateTimezone));
378 info.selectedTime = new Time(Utils.getTimeZone(mContext, mUpdateTimezone));
383 info.endTime = new Time(Utils.getTimeZone(mContext, mUpdateTimezone));
724 intent.setClass(mContext, SelectVisibleCalendarsActivity.class);
726 mContext.startActivity(intent);
731 intent.setClass(mContext, CalendarSettingsActivity.class)
    [all...]

Completed in 972 milliseconds

<<21222324252627282930>>