/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/mojo/shell/ |
run.h | 11 class Context; 13 void Run(Context* context);
|
/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) {
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/ |
InfoBarView.java | 7 import android.content.Context; 21 * @param context Context to pull the string from. 24 public CharSequence getMessageText(Context context); 29 * @param context Context to pull the string from. 32 public String getPrimaryButtonText(Context context); 41 * @param context Context to pull the string from [all...] |
TranslateSubPanel.java | 7 import android.content.Context; 17 * @param context Context containing the View's resources. 20 void createContent(Context context, InfoBarLayout layout);
|
/frameworks/support/v4/kitkat/android/support/v4/content/ |
ContextCompatKitKat.java | 19 import android.content.Context; 24 public static File[] getExternalCacheDirs(Context context) { 25 return context.getExternalCacheDirs(); 28 public static File[] getExternalFilesDirs(Context context, String type) { 29 return context.getExternalFilesDirs(type); 32 public static File[] getObbDirs(Context context) { 33 return context.getObbDirs() [all...] |
/external/chromium_org/mojo/shell/android/apk/src/org/chromium/mojo_shell_apk/ |
MojoMain.java | 7 import android.content.Context; 16 public static void init(Context context) { 17 nativeInit(context); 21 * Starts the specified application in the specified context. 23 public static void start(Context context, String appUrl) { 24 nativeStart(context, appUrl); 27 private static native void nativeInit(Context context); [all...] |
/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; 13 * Holds a WeakReference to Context to allow it to be GC'd. 15 * other thread (may return null, if the Context has been nullified). 18 private static WeakReference<Context> sWeakContext; 20 public static void initializeWeakContext(final Context context) { 21 sWeakContext = new WeakReference<Context>(context); 24 public static Context getContext() { 31 // May return null if context is no longer available 33 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/libs/deviceutil/src/android/cts/util/ |
CtsAndroidTestCase.java | 20 import android.content.Context; 32 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) {
|