Searched refs:flags (Results 1 - 25 of 728) sorted by last modified time

1234567891011>>

/frameworks/support/v4/honeycomb/android/support/v4/app/
H A DNotificationCompatHoneycomb.java38 .setOngoing((n.flags & Notification.FLAG_ONGOING_EVENT) != 0)
39 .setOnlyAlertOnce((n.flags & Notification.FLAG_ONLY_ALERT_ONCE) != 0)
40 .setAutoCancel((n.flags & Notification.FLAG_AUTO_CANCEL) != 0)
48 (n.flags & Notification.FLAG_HIGH_PRIORITY) != 0)
H A DTaskStackBuilderHoneycomb.java28 Intent[] intents, int flags) {
29 return PendingIntent.getActivities(context, requestCode, intents, flags);
27 getActivitiesPendingIntent(Context context, int requestCode, Intent[] intents, int flags) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java137 public void writeToParcel(Parcel dest, int flags) { argument
H A DFragment.java119 public void writeToParcel(Parcel dest, int flags) { argument
308 public void writeToParcel(Parcel dest, int flags) { argument
H A DFragmentManager.java213 * @param flags Either 0 or {@link #POP_BACK_STACK_INCLUSIVE}.
215 public abstract void popBackStack(String name, int flags); argument
223 public abstract boolean popBackStackImmediate(String name, int flags); argument
237 * @param flags Either 0 or {@link #POP_BACK_STACK_INCLUSIVE}.
239 public abstract void popBackStack(int id, int flags); argument
247 public abstract boolean popBackStackImmediate(int id, int flags); argument
356 public void writeToParcel(Parcel dest, int flags) { argument
357 dest.writeTypedArray(mActive, flags);
359 dest.writeTypedArray(mBackStack, flags);
451 public void popBackStack(final String name, final int flags) { argument
460 popBackStackImmediate(String name, int flags) argument
467 popBackStack(final int id, final int flags) argument
479 popBackStackImmediate(int id, int flags) argument
1455 popBackStackState(Handler handler, String name, int id, int flags) argument
[all...]
H A DNotificationCompat.java31 * Bit to be bitwise-ored into the {@link Notification#flags} field that should be set if
73 * all the flags, as well as help constructing the typical notification layouts.
313 mNotification.flags = (mNotification.flags & ~Notification.FLAG_SHOW_LIGHTS) |
367 mNotification.flags |= Notification.FLAG_SHOW_LIGHTS;
374 mNotification.flags |= mask;
376 mNotification.flags &= ~mask;
H A DTaskStackBuilder.java71 int flags);
76 int flags) {
79 return PendingIntent.getActivity(context, requestCode, topIntent, flags);
85 int flags) {
89 intents, flags);
186 * Useful if you need to modify the flags or extras of an intent that was previously added,
229 * @param flags May be {@link PendingIntent#FLAG_ONE_SHOT},
231 * {@link PendingIntent#FLAG_UPDATE_CURRENT}, or any of the flags supported by
236 public PendingIntent getPendingIntent(int requestCode, int flags) { argument
238 return IMPL.getPendingIntent(mSourceContext, intents, requestCode, flags);
70 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags) argument
75 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags) argument
84 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java839 public void writeToParcel(Parcel out, int flags) { argument
840 super.writeToParcel(out, flags);
842 out.writeParcelable(adapterState, flags);
/frameworks/support/v4/java/android/support/v4/widget/
H A DCursorAdapter.java146 * @param flags Flags used to determine the behavior of the adapter; may
150 public CursorAdapter(Context context, Cursor c, int flags) { argument
151 init(context, c, flags);
163 void init(Context context, Cursor c, int flags) { argument
164 if ((flags & FLAG_AUTO_REQUERY) == FLAG_AUTO_REQUERY) {
165 flags |= FLAG_REGISTER_CONTENT_OBSERVER;
175 if ((flags & FLAG_REGISTER_CONTENT_OBSERVER) == FLAG_REGISTER_CONTENT_OBSERVER) {
H A DResourceCursorAdapter.java89 * @param flags Flags used to determine the behavior of the adapter,
92 public ResourceCursorAdapter(Context context, int layout, Cursor c, int flags) { argument
93 super(context, c, flags);
H A DSimpleCursorAdapter.java84 * @param flags Flags used to determine the behavior of the adapter,
88 int[] to, int flags) {
89 super(context, layout, c, flags);
87 SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to, int flags) argument
/frameworks/compile/libbcc/include/bcc/
H A Dbcc.h77 unsigned long flags);
82 unsigned long flags);
86 unsigned long flags);
92 unsigned long flags);
96 unsigned long flags);
103 unsigned long flags);
108 unsigned long flags);
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DScript.cpp87 unsigned long flags) {
109 flags);
123 unsigned long flags) {
136 mSourceList[idx] = SourceInfo::createFromModule(module, flags);
150 unsigned long flags) {
170 mSourceList[idx] = SourceInfo::createFromFile(path, flags);
183 unsigned long flags) {
210 unsigned long flags) {
83 addSourceBC(size_t idx, char const *resName, const char *bitcode, size_t bitcodeSize, unsigned long flags) argument
121 addSourceModule(size_t idx, llvm::Module *module, unsigned long flags) argument
148 addSourceFile(size_t idx, char const *path, unsigned long flags) argument
181 prepareSharedObject(char const *cacheDir, char const *cacheName, unsigned long flags) argument
208 prepareExecutable(char const *cacheDir, char const *cacheName, unsigned long flags) argument
H A DScript.h98 unsigned long flags);
102 unsigned long flags);
106 unsigned long flags);
118 unsigned long flags);
122 unsigned long flags);
H A DSourceInfo.cpp51 unsigned long flags) {
62 result->flags = flags;
65 if (!resName && !(flags & BCC_SKIP_DEP_SHA1)) {
66 result->flags |= BCC_SKIP_DEP_SHA1;
70 LOGW("Set BCC_SKIP_DEP_SHA1 for flags to surpress this warning.\n");
73 if (result->flags & BCC_SKIP_DEP_SHA1) {
85 unsigned long flags) {
94 result->flags = flags;
48 createFromBuffer(char const *resName, char const *bitcode, size_t bitcodeSize, unsigned long flags) argument
84 createFromFile(char const *path, unsigned long flags) argument
108 createFromModule(llvm::Module *module, unsigned long flags) argument
[all...]
H A DSourceInfo.h58 unsigned long flags; member in class:bcc::SourceInfo
71 unsigned long flags);
74 unsigned long flags);
77 unsigned long flags);
H A Dbcc.cpp79 unsigned long flags) {
81 return unwrap(script)->addSourceBC(0, resName, bitcode, bitcodeSize, flags);
88 unsigned long flags) {
90 return unwrap(script)->addSourceModule(0, unwrap(module), flags);
96 unsigned long flags) {
98 return unwrap(script)->addSourceFile(0, path, flags);
106 unsigned long flags) {
108 return unwrap(script)->addSourceBC(1, resName, bitcode, bitcodeSize, flags);
114 unsigned long flags) {
116 return unwrap(script)->addSourceFile(1, path, flags);
75 bccReadBC(BCCScriptRef script, char const *resName, char const *bitcode, size_t bitcodeSize, unsigned long flags) argument
85 bccReadModule(BCCScriptRef script, char const *resName , LLVMModuleRef module, unsigned long flags) argument
94 bccReadFile(BCCScriptRef script, char const *path, unsigned long flags) argument
102 bccLinkBC(BCCScriptRef script, char const *resName, char const *bitcode, size_t bitcodeSize, unsigned long flags) argument
112 bccLinkFile(BCCScriptRef script, char const *path, unsigned long flags) argument
126 bccPrepareSharedObject(BCCScriptRef script, char const *cacheDir, char const *cacheName, unsigned long flags) argument
134 bccPrepareExecutable(BCCScriptRef script, char const *cacheDir, char const *cacheName, unsigned long flags) argument
[all...]
/frameworks/compile/libbcc/runtime/BlocksRuntime/
H A DBlock_private.h65 int flags; member in struct:Block_layout
76 int flags; /* refcount; */ member in struct:Block_byref
87 int flags; member in struct:Block_byref_header
104 BLOCK_EXPORT void _Block_object_assign(void *destAddr, const void *object, const int flags);
109 BLOCK_EXPORT void _Block_object_dispose(const void *object, const int flags);
H A Druntime.c286 static void *_Block_copy_internal(const void *arg, const int flags) { argument
288 const bool wantsOne = (WANTS_ONE & flags) == WANTS_ONE;
290 //printf("_Block_copy_internal(%p, %x)\n", arg, flags);
296 if (aBlock->flags & BLOCK_NEEDS_FREE) {
298 latching_incr_int(&aBlock->flags);
301 else if (aBlock->flags & BLOCK_IS_GC) {
303 if (wantsOne && ((latching_incr_int(&aBlock->flags) & BLOCK_REFCOUNT_MASK) == 1)) {
309 else if (aBlock->flags & BLOCK_IS_GLOBAL) {
319 result->flags &= ~(BLOCK_REFCOUNT_MASK); // XXX not needed
320 result->flags |
331 unsigned long int flags = aBlock->flags; local
369 _Block_byref_assign_copy(void *dest, const void *arg, const int flags) argument
561 _Block_object_assign(void *destAddr, const void *object, const int flags) argument
594 _Block_object_dispose(const void *object, const int flags) argument
[all...]
/frameworks/compile/libbcc/runtime/make/
H A Doptions.mk9 # The compiler flags to use.
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2001 public void writeToParcel(Parcel out, int flags) { argument
2002 super.writeToParcel(out, flags);
/frameworks/media/libvideoeditor/lvpp/
H A DPreviewPlayer.cpp218 mExtractorFlags = extractor->flags();
741 status_t PreviewPlayer::initVideoDecoder(uint32_t flags) { argument
754 NULL, flags, mVideoRenderer->getTargetWindow());
H A DPreviewPlayer.h109 status_t initVideoDecoder(uint32_t flags = 0);
H A DPreviewPlayerBase.cpp390 mExtractorFlags = extractor->flags();
1212 status_t PreviewPlayerBase::initVideoDecoder(uint32_t flags) { argument
1251 flags |= OMXCodec::kEnableGrallocUsageProtected;
1255 flags |= OMXCodec::kEnableGrallocUsageProtected;
1258 LOGV("initVideoDecoder flags=0x%x", flags);
1263 NULL, flags, USE_SURFACE_ALLOC ? mNativeWindow : NULL);
1839 uint32_t PreviewPlayerBase::flags() const { function in class:android::PreviewPlayerBase
H A DPreviewPlayerBase.h95 uint32_t flags() const;
242 status_t initVideoDecoder(uint32_t flags = 0);

Completed in 224 milliseconds

1234567891011>>