HomeSort by relevance Sort by last modified time
    Searched refs:Context (Results 1 - 25 of 6100) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/unittests/Tooling/
RewriterTest.cpp 16 RewriterTestContext Context;
17 FileID ID = Context.createOnDiskFile("t.cpp", "line1\nline2\nline3\nline4");
18 Context.Rewrite.ReplaceText(Context.getLocation(ID, 2, 1), 5, "replaced");
19 EXPECT_FALSE(Context.Rewrite.overwriteChangedFiles());
21 Context.getFileContentFromDisk("t.cpp"));
25 RewriterTestContext Context;
26 FileID FailingID = Context.createInMemoryFile("invalid/failing.cpp", "test");
27 Context.Rewrite.ReplaceText(Context.getLocation(FailingID, 1, 2), 1, "other")
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
context.h 2 * context.h
43 #define PTW32_PROGCTR(Context) ((Context).Eip)
47 #define PTW32_PROGCTR(Context) ((Context).StIIP)
51 #define PTW32_PROGCTR(Context) ((Context).Fir)
55 #define PTW32_PROGCTR(Context) ((Context).Fir)
59 #define PTW32_PROGCTR(Context) ((Context).Iar
    [all...]
  /frameworks/rs/
rsDevice.h 26 class Context;
33 void addContext(Context *);
34 void removeContext(Context *);
39 Vector<Context *> mContexts;
rsProgramVertex.h 30 ProgramVertex(Context *,const char * shaderText, size_t shaderLength,
35 virtual void setup(Context *rsc, ProgramVertexState *state);
37 void setProjectionMatrix(Context *, const rsc_Matrix *) const;
38 void getProjectionMatrix(Context *, rsc_Matrix *) const;
39 void setModelviewMatrix(Context *, const rsc_Matrix *) const;
40 void setTextureMatrix(Context *, const rsc_Matrix *) const;
42 void transformToScreen(Context *, float *v4out, const float *v3in) const;
44 virtual void serialize(Context *rsc, OStream *stream) const;
46 static ProgramVertex *createFromStream(Context *rsc, IStream *stream);
54 void init(Context *rsc)
    [all...]
rsFBOCache.h 33 void init(Context *rsc);
34 void deinit(Context *rsc);
36 void bindColorTarget(Context *rsc, Allocation *a, uint32_t slot);
37 void bindDepthTarget(Context *, Allocation *a);
38 void resetAll(Context *);
40 void setup(Context *);
59 void checkError(Context *);
60 void setColorAttachment(Context *rsc);
61 void setDepthAttachment(Context *rsc);
  /external/chromium_org/third_party/WebKit/Source/core/testing/v8/
WebCoreTestSupport.h 30 class Context;
41 void injectInternalsObject(v8::Local<v8::Context>);
42 void resetInternalsObject(v8::Local<v8::Context>);
  /frameworks/base/core/java/android/webkit/
PluginStub.java 18 import android.content.Context;
33 * @param context The current application's Context.
36 public abstract View getEmbeddedView(int NPP, Context context);
43 * @param context The current application's Context.
46 public abstract View getFullScreenView(int NPP, Context context);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
PersonalizationDictionarySessionRegister.java 19 import android.content.Context;
23 public static void init(Context context) {
26 public static void onConfigurationChanged(final Context context, final Configuration conf) {
29 public static void onUpdateData(Context context, String type) {
32 public static void onRemoveData(Context context, String type) {
35 public static void onDestroy(Context context)
    [all...]
  /frameworks/base/core/java/android/content/
MutableContextWrapper.java 20 * Special version of {@link ContextWrapper} that allows the base context to
24 public MutableContextWrapper(Context base) {
29 * Change the base context for this ContextWrapper. All calls will then be
30 * delegated to the base context. Unlike ContextWrapper, the base context
33 * @param base The new base context for this wrapper.
35 public void setBaseContext(Context base) {
  /frameworks/base/test-runner/src/android/test/
TestCase.java 19 import android.content.Context;
40 public void setUp(Context context);
  /packages/apps/Calendar/src/com/android/calendar/
AnalyticsLogger.java 3 import android.content.Context;
13 * @param context need to open backend of logger.
16 public boolean initialize(Context context);
  /packages/apps/UnifiedEmail/src/com/android/mail/widget/
WidgetProvider.java 19 import android.content.Context;
23 protected void migrateLegacyWidgetInformation(Context context, int widgetId) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
Prefs.java 19 import android.content.Context;
25 public static SharedPreferences read(Context context) {
26 return context.getSharedPreferences(Prefs.SHARED_PREFS_NAME, Context.MODE_PRIVATE);
29 public static SharedPreferences.Editor edit(Context context) {
30 return context.getSharedPreferences(Prefs.SHARED_PREFS_NAME, Context.MODE_PRIVATE).edit();
  /external/chromium_org/base/android/java/src/org/chromium/base/
WeakContext.java 7 import android.content.Context;
12 // Holds a WeakReference to Context to allow it to be GC'd.
14 // other thread (may return null, if the Context has been nullified).
16 private static WeakReference<Context> sWeakContext;
18 public static void initializeWeakContext(final Context context) {
19 sWeakContext = new WeakReference<Context>(context);
22 public static Context getContext() {
29 // May return null if context is no longer available
31 final Context context = sWeakContext.get(); local
    [all...]
ContextTypes.java 7 import android.content.Context;
13 * Maintains the {@link Context}-to-"context type" mapping. The context type
14 * {@code MODE_APP} is chosen for the application context associated with
22 // Available context types.
26 private final Map<Context, Integer> mContextMap;
29 mContextMap = new ConcurrentHashMap<Context, Integer>();
41 * Adds the mapping for the given {@link Context}.
43 * @param context {@link Context} in interes
    [all...]
  /cts/suite/pts/deviceTests/ptsutil/src/com/android/pts/util/
PtsAndroidTestCase.java 20 import android.content.Context;
33 public Context getContext() {
  /external/replicaisland/src/com/replica/replicaisland/
TouchFilter.java 19 import android.content.Context;
26 public boolean supportsMultitouch(Context context) {
  /external/robolectric/src/main/java/com/foo/
Receiver.java 4 import android.content.Context;
10 public void onReceive(Context context, Intent intent) {
  /external/robolectric/src/main/java/com/xtremelabs/
ConfigTestReceiver.java 4 import android.content.Context;
10 public void onReceive(Context context, Intent intent) {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/
DotConfigTestReceiver.java 4 import android.content.Context;
10 public void onReceive(Context context, Intent intent) {
  /frameworks/base/core/java/android/view/animation/
LinearInterpolator.java 19 import android.content.Context;
31 public LinearInterpolator(Context context, AttributeSet attrs) {
  /frameworks/base/core/java/com/android/internal/notification/
NotificationScorer.java 20 import android.content.Context;
24 public void initialize(Context context);
  /frameworks/base/packages/InputDevices/src/com/android/inputdevices/
InputDeviceReceiver.java 20 import android.content.Context;
25 public void onReceive(Context context, Intent intent) {
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
Receiver.java 20 import android.content.Context;
28 public void onReceive(Context context, Intent intent) {
  /frameworks/base/tools/layoutlib/bridge/src/android/text/format/
DateFormat_Delegate.java 21 import android.content.Context;
34 /*package*/ static boolean is24HourFormat(Context context) {

Completed in 4581 milliseconds

1 2 3 4 5 6 7 8 91011>>