Searched refs:flag (Results 126 - 150 of 223) sorted by relevance

123456789

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s57 ; * [in] ACPredFlag a flag indicating if AC prediction should be
198 CMP ACPredFlag,#1 ;// Check if the AC prediction flag is set or not
/frameworks/base/core/java/android/app/
H A DInstrumentation.java756 * @param flag Additional flags, if any.
761 int id, int flag) {
785 MenuRunnable mr = new MenuRunnable(targetActivity, id, flag);
796 * @param flag Additional flags, if any.
800 public boolean invokeContextMenuAction(Activity targetActivity, int id, int flag) { argument
847 ContextMenuRunnable cmr = new ContextMenuRunnable(targetActivity, id, flag);
760 invokeMenuActionSync(Activity targetActivity, int id, int flag) argument
H A DActionBar.java140 @IntDef(flag = true,
152 * Use logo instead of icon if available. This flag will cause appropriate
173 * Set this flag if selecting the 'home' button in the action bar to return
797 * Hiding the ActionBar through this system UI flag allows you to more
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DRootInfo.java58 @IntDef(flag = false, value = {
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/
H A DFileOperationService.java71 @IntDef(flag = true, value = {
/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java901 public void setMasterSyncAutomatically(boolean flag) { argument
902 setMasterSyncAutomaticallyAsUser(flag, UserHandle.getCallingUserId());
906 public void setMasterSyncAutomaticallyAsUser(boolean flag, int userId) { argument
916 syncManager.getSyncStorageEngine().setMasterSyncAutomatically(flag, userId);
/frameworks/compile/mclinker/lib/LD/
H A DELFObjectReader.cpp171 if (((*section)->flag() & llvm::ELF::SHF_EXECINSTR) != 0)
H A DELFObjectWriter.cpp317 shdr[sectIdx].sh_flags = ld_sect->flag();
353 phdr[index].p_flags = (*seg)->flag();
586 if (pSection.flag() & llvm::ELF::SHF_STRINGS)
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java140 @IntDef(flag=true, value={
151 * Use logo instead of icon if available. This flag will cause appropriate
172 * Set this flag if selecting the 'home' button in the action bar to return
807 * Hiding the ActionBar through this system UI flag allows you to more
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp384 if ((pSection.getLink()->flag() & llvm::ELF::SHF_ALLOC) == 0)
470 // If the flag of target section is not ALLOC, we will not scan this
472 if (0x0 == (llvm::ELF::SHF_ALLOC & target_sect.flag())) {
520 // If the flag of target section is not ALLOC, we will not scan this
522 if (0x0 != (llvm::ELF::SHF_ALLOC & target_sect.flag())) {
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.cpp212 if ((pSection.getLink()->flag() & llvm::ELF::SHF_ALLOC) == 0)
703 // if the flag of target section is not ALLOC, we eprform only static
706 pReloc.targetRef().frag()->getParent()->getSection().flag())) {
750 if ((llvm::ELF::SHF_ALLOC & target_sect.flag()) == 0) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java338 boolean flag = true;
349 flag = false;
352 return flag;
562 // the ME should set the CR(comprehension required) flag to
565 // the CR flag is not set.
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DLayoutBinderWriter.kt728 fun declareDirtyFlags() = kcode("// dirty flag") {
729 model.ext.localizedFlags.forEach { flag ->
730 flag.notEmpty { suffix, value ->
732 app(" ", if(flag.isDynamic) null else "static final");
733 app(" ", " ${flag.type} ${flag.localName}$suffix = ${longToBinary(value)};")
738 fun flagMapping() = kcode("/* flag mapping") {
742 tab("flag $i: ${mapping[i]}")
745 nl("flag mapping end*/")
895 L.d("flag se
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DANetworkSession.cpp1015 int flag = 1; local
1016 res = setsockopt(s, IPPROTO_TCP, TCP_NODELAY, &flag, sizeof(flag));
/frameworks/base/core/java/android/text/
H A DStaticLayout.java757 // Calculate width and flag.
759 int flag = 0;
768 flag |= flags[i] & TAB_MASK;
773 flags[remainingLineCount - 1] = flag;
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp449 if ((pSD.getSection().flag() & llvm::ELF::SHF_MIPS_GPREL) ||
1070 // PIC code is inherently CPIC and may not set CPIC flag explicitly.
1071 // Ensure that this flag will exist in the linked file.
1155 if (sect->flag() & llvm::ELF::SHF_TLS) {
1193 if (pSection.flag() & llvm::ELF::SHF_MIPS_GPREL) {
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp2413 int32_t flag = TextDescriptions::IN_BAND_TEXT_3GPP; local
2427 flag |= TextDescriptions::GLOBAL_DESCRIPTIONS;
2429 flag |= TextDescriptions::LOCAL_DESCRIPTIONS;
2432 (const uint8_t *)data, size, flag, timeUs / 1000, &parcel);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s57 ; * [in] ACPredFlag a flag indicating if AC prediction should be
225 CMP ACPredFlag,#1 ;// Check if the AC prediction flag is set or not
/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java221 * This flag only applies to activities that
292 * Note that this flag will always reflect the Activity's
304 * relinquish its identity to the activity above it using this flag. Set from the
344 * {@link android.R.attr#singleUser} attribute. Note that this flag is
507 @IntDef(flag = true,
/frameworks/base/core/java/android/text/util/
H A DLinkify.java108 @IntDef(flag = true, value = { WEB_URLS, EMAIL_ADDRESSES, PHONE_NUMBERS, MAP_ADDRESSES, ALL })
/frameworks/base/core/java/android/transition/
H A DVisibility.java55 @IntDef(flag=true, value={MODE_IN, MODE_OUT})
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskPositioner.java71 @IntDef(flag = true,
/frameworks/support/compat/java/android/support/v4/text/util/
H A DLinkifyCompat.java76 @IntDef(flag = true, value = { Linkify.WEB_URLS, Linkify.EMAIL_ADDRESSES, Linkify.PHONE_NUMBERS,
/frameworks/support/media-compat/java/android/support/v4/media/session/
H A DPlaybackStateCompat.java48 @IntDef(flag=true, value={ACTION_STOP, ACTION_PAUSE, ACTION_PLAY, ACTION_REWIND,
/frameworks/base/core/java/android/content/
H A DContext.java137 * SharedPreference loading flag: when set, the file on disk will
146 * before Gingerbread (Android 2.3) and this flag is implied when
148 * versions <em>greater than</em> Android 2.3, this flag must be
164 * Database open flag: when set, the database is opened with write-ahead
174 * Database open flag: when set, the database is opened without support for
184 @IntDef(flag = true,
208 * not supplying this flag would also impact how important the system
212 * achieve this behavior you must explicitly supply the new flag
223 * calls to unbind. When this flag is set, the callstack of the following
281 * activity is visible to the user, regardless whether another flag i
[all...]

Completed in 827 milliseconds

123456789