/packages/apps/Contacts/src/com/android/contacts/ |
ContactsSearchManager.java | 33 * An extra that provides context for search UI and defines the scope for 41 public static void startSearch(Activity context, String initialQuery) { 42 context.startActivity(buildIntent(context, initialQuery, null)); 45 public static void startSearchForResult(Activity context, String initialQuery, 47 context.startActivityForResult( 48 buildIntent(context, initialQuery, originalRequest), requestCode); 51 public static void startSearch(Activity context, String initialQuery, 53 context.startActivity(buildIntent(context, initialQuery, originalRequest)) [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
HandleView.java | 21 import android.content.Context; 36 public HandleView(Context context) { 37 super(context); 40 public HandleView(Context context, AttributeSet attrs) { 41 this(context, attrs, 0); 44 public HandleView(Context context, AttributeSet attrs, int defStyle) { 45 super(context, attrs, defStyle) [all...] |
HolographicLinearLayout.java | 19 import android.content.Context; 36 public HolographicLinearLayout(Context context) { 37 this(context, null); 40 public HolographicLinearLayout(Context context, AttributeSet attrs) { 41 this(context, attrs, 0); 44 public HolographicLinearLayout(Context context, AttributeSet attrs, int defStyle) { 45 super(context, attrs, defStyle) [all...] |
/external/clang/include/clang/AST/ |
ASTImporter.h | 11 // context into another context. 36 /// \brief Imports selected nodes from one AST context into another context, 52 /// \brief Mapping from the already-imported types in the "from" context 53 /// to the corresponding types in the "to" context. 57 /// context to the corresponding declarations in the "to" context. 61 /// context to the corresponding statements in the "to" context [all...] |
/development/samples/BrowserPlugin/src/com/android/sampleplugin/ |
AnimationSurface.java | 3 import android.content.Context; 10 public AnimationSurface(Context context) { 11 super(context);
|
/development/tools/glesv2debugger/ |
contexts.xml | 2 <context id="viewer" title="Sample View"> 3 <description>This is the context help for the sample view with a table viewer. It was generated by a PDE template.</description> 4 <topic href="/PLUGINS_ROOT/org.eclipse.platform.doc.isv/guide/ua_help_context.htm" label="Context-sensitive help"> 11 </context>
|
/external/clang/test/Parser/ |
objc-missing-impl.m | 2 @end // expected-error {{@end must appear in an @implementation context}}
|
/external/clang/test/SemaObjC/ |
method-no-context.m | 3 - im0 { // expected-error{{missing context for method declaration}}
|
missing-atend-metadata.m | 6 @implementation I0 // expected-error {{'@end' is missing in implementation context}} 12 @implementation I1 // expected-error {{'@end' is missing in implementation context}} 19 @implementation I2 // expected-error {{'@end' is missing in implementation context}} 22 @implementation I2(CAT) // expected-error {{'@end' is missing in implementation context}}
|
/external/webkit/Source/WebKit2/UIProcess/API/C/ |
WKContext.h | 55 typedef void (*WKContextDidNavigateWithNavigationDataCallback)(WKContextRef context, WKPageRef page, WKNavigationDataRef navigationData, WKFrameRef frame, const void *clientInfo); 56 typedef void (*WKContextDidPerformClientRedirectCallback)(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo); 57 typedef void (*WKContextDidPerformServerRedirectCallback)(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo); 58 typedef void (*WKContextDidUpdateHistoryTitleCallback)(WKContextRef context, WKPageRef page, WKStringRef title, WKURLRef URL, WKFrameRef frame, const void *clientInfo); 59 typedef void (*WKContextPopulateVisitedLinksCallback)(WKContextRef context, const void *clientInfo); 73 typedef void (*WKContextDownloadDidStartCallback)(WKContextRef context, WKDownloadRef download, const void *clientInfo); 74 typedef void (*WKContextDownloadDidReceiveAuthenticationChallengeCallback)(WKContextRef context, WKDownloadRef download, WKAuthenticationChallengeRef authenticationChallenge, const void *clientInfo); 75 typedef void (*WKContextDownloadDidReceiveResponseCallback)(WKContextRef context, WKDownloadRef download, WKURLResponseRef response, const void *clientInfo); 76 typedef void (*WKContextDownloadDidReceiveDataCallback)(WKContextRef context, WKDownloadRef download, uint64_t length, const void *clientInfo); 77 typedef bool (*WKContextDownloadShouldDecodeSourceDataOfMIMETypeCallback)(WKContextRef context, WKDownloadRef download, WKStringRef mimeType, const void *clientInfo) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
Prefs.java | 19 import android.content.Context; 31 public static SharedPreferences read(Context context) { 32 return context.getSharedPreferences(Prefs.SHARED_PREFS_NAME, Context.MODE_PRIVATE); 35 public static SharedPreferences.Editor edit(Context context) { 36 return context.getSharedPreferences(Prefs.SHARED_PREFS_NAME, Context.MODE_PRIVATE).edit();
|
/frameworks/media/libvideoeditor/osal/src/ |
M4OSA_Mutex.c | 33 /* Context for the mutex */ 36 M4OSA_UInt32 coreID; /* mutex context identifiant */ 46 * @note This function creates and allocates a unique context. It's the 47 * OSAL real time responsibility for managing its context. It must 48 * be freed by the M4OSA_mutexClose function. The context parameter 51 * @param pContext:(OUT) Context of the created mutex 54 * @return M4ERR_CONTEXT_FAILED: the context creation failed 70 M4OSA_MUTEX, (M4OSA_Char*)"M4OSA_mutexOpen: mutex context"); 116 * @brief This method locks the mutex. "Context" identifies the mutex. 120 * @param context:(IN/OUT) Context of the mute [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
LayoutSelectorAdapter.java | 20 import android.content.Context; 31 public LayoutSelectorAdapter(Context context) { 32 super(context, getData(context)); 35 protected static List<IconListItem> getData(Context context) { 37 addItem(data, context.getString(R.string.select_top_text), 39 addItem(data, context.getString(R.string.select_bottom_text),
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
SearchWidgetProvider.java | 30 import android.content.Context; 63 public void onReceive(Context context, Intent intent) { 69 updateSearchWidgets(context); 75 private static SearchWidgetState[] getSearchWidgetStates(Context context) { 76 AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context); 77 int[] appWidgetIds = appWidgetManager.getAppWidgetIds(myComponentName(context)); 80 states[i] = getSearchWidgetState(context, appWidgetIds[i]); 89 public static void updateSearchWidgets(Context context) [all...] |
/packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/ |
CameraPreviewView.java | 6 import android.content.Context; 15 * @param context 17 public CameraPreviewView(Context context) { 18 this(context, null); 23 * @param context 26 public CameraPreviewView(Context context, AttributeSet attrs) { 27 super(context, attrs);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/ |
contexts.xml | 2 <context id="viewer" title="Sample View"> 3 <description>This is the context help for the sample view with a table viewer. It was generated by a PDE template.</description> 4 <topic href="/PLUGINS_ROOT/org.eclipse.platform.doc.isv/guide/ua_help_context.htm" label="Context-sensitive help"> 11 </context>
|
/frameworks/base/services/java/com/android/server/ |
AttributeCache.java | 20 import android.content.Context; 38 private final Context mContext; 44 public final Context context; field in class:AttributeCache.Package 48 public Package(Context c) { 49 context = c; 54 public final Context context; field in class:AttributeCache.Entry 57 public Entry(Context c, TypedArray ta) { 58 context = c 111 Context context; local [all...] |
/external/bluetooth/glib/glib/ |
goption.c | 122 static void free_changes_list (GOptionContext *context, 124 static void free_pending_nulls (GOptionContext *context, 182 return g_quark_from_static_string ("g-option-context-error-quark"); 192 * Creates a new option context. 221 GOptionContext *context; local 223 context = g_new0 (GOptionContext, 1); 225 context->parameter_string = g_strdup (parameter_string); 226 context->help_enabled = TRUE; 227 context->ignore_unknown = FALSE; 229 return context; [all...] |
/external/icu4c/samples/layout/ |
layout.cpp | 28 struct Context 50 void InitParagraph(HWND hwnd, Context *context) 54 if (context->paragraph != NULL) { 57 if (context->width > 0 && context->height > 0) { 58 context->paragraph->breakLines(context->width, context->height); 64 si.nMax = context->paragraph->getLineCount() - 1 120 Context *context; local [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMDefaultBaseTraversers.java | 206 * @param context The context node if this iteration. 211 public int next(int context, int current) 220 * @param context The context node of this iteration. 226 public int next(int context, int current, int expandedTypeID) 248 * By the nature of the stateless traversal, the context node can not be 252 * @param context The context node of this traversal. 256 public int first(int context) [all...] |
/packages/apps/Contacts/src/com/android/contacts/util/ |
AccountSelectionUtil.java | 26 import android.content.Context; 54 final private Context mContext; 59 public AccountSelectedListener(Context context, List<AccountWithDataSet> accountList, 64 mContext = context; 75 public static Dialog getSelectAccountDialog(Context context, int resId) { 76 return getSelectAccountDialog(context, resId, null, null); 79 public static Dialog getSelectAccountDialog(Context context, int resId [all...] |
/packages/apps/Settings/src/com/android/settings/widget/ |
SettingsAppWidgetProvider.java | 25 import android.content.Context; 139 public final void toggleState(Context context) { 140 int currentState = getTriState(context); 164 requestStateChange(context, newState); 193 public final void setImageViewResources(Context context, RemoteViews views) { 197 switch (getTriState(context)) { 230 public abstract void onActualStateChange(Context context, Intent intent) [all...] |
/frameworks/base/libs/rs/ |
rsContext.cpp | 35 pthread_mutex_t Context::gInitMutex = PTHREAD_MUTEX_INITIALIZER; 36 pthread_mutex_t Context::gLibMutex = PTHREAD_MUTEX_INITIALIZER; 38 bool Context::initGLThread() { 51 void Context::deinitEGL() { 55 Context::PushState::PushState(Context *con) { 66 Context::PushState::~PushState() { 77 uint32_t Context::runScript(Script *s) { 84 uint32_t Context::runRootScript() { 94 uint64_t Context::getTime() const [all...] |
/dalvik/dexgen/src/com/android/dexgen/util/ |
ExceptionWithContext.java | 23 * Exception which carries around structured context. 27 /** {@code non-null;} human-oriented context of the exception */ 28 private StringBuffer context; field in class:ExceptionWithContext 31 * Augments the given exception with the given context, and return the 37 * @param str {@code non-null;} context to add 83 String ctx = ((ExceptionWithContext) cause).context.toString(); 84 context = new StringBuffer(ctx.length() + 200); 85 context.append(ctx); 87 context = new StringBuffer(200); 95 out.println(context); [all...] |
/dalvik/dx/src/com/android/dx/util/ |
ExceptionWithContext.java | 23 * Exception which carries around structured context. 27 /** {@code non-null;} human-oriented context of the exception */ 28 private StringBuffer context; field in class:ExceptionWithContext 31 * Augments the given exception with the given context, and return the 37 * @param str {@code non-null;} context to add 83 String ctx = ((ExceptionWithContext) cause).context.toString(); 84 context = new StringBuffer(ctx.length() + 200); 85 context.append(ctx); 87 context = new StringBuffer(200); 95 out.println(context); [all...] |