Home
last modified time | relevance | path

Searched refs:LABEL (Results 1 – 20 of 20) sorted by relevance

/expo/docs/ui/components/Sidebar/
H A DSidebarTitle.tsx3 import { LABEL } from '../Text';
12 <LABEL weight="medium" crawlable={false}>
14 </LABEL>
/expo/docs/ui/components/Snippet/
H A DSnippetHeader.tsx4 import { LABEL } from '~/ui/components/Text';
28 <LABEL
35 </LABEL>
/expo/docs/ui/components/Navigation/
H A DApiVersionSelect.tsx8 import { A, LABEL } from '~/ui/components/Text';
24 <LABEL className="flex">{versionToText(version)}</LABEL>
/expo/packages/expo-contacts/android/src/main/java/expo/modules/contacts/models/
H A DBaseModel.java61 putString(cursor, EXColumns.LABEL, EXColumns.LABEL); in fromCursor()
134 final String label = cursor.getString(cursor.getColumnIndex(EXColumns.LABEL)); in getLabelFromCursor()
168 values.put(EXColumns.LABEL, getLabel()); in getContentValues()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/contacts/models/
H A DBaseModel.java61 putString(cursor, EXColumns.LABEL, EXColumns.LABEL); in fromCursor()
134 final String label = cursor.getString(cursor.getColumnIndex(EXColumns.LABEL)); in getLabelFromCursor()
168 values.put(EXColumns.LABEL, getLabel()); in getContentValues()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/contacts/models/
H A DBaseModel.java61 putString(cursor, EXColumns.LABEL, EXColumns.LABEL); in fromCursor()
134 final String label = cursor.getString(cursor.getColumnIndex(EXColumns.LABEL)); in getLabelFromCursor()
168 values.put(EXColumns.LABEL, getLabel()); in getContentValues()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/contacts/models/
H A DBaseModel.java61 putString(cursor, EXColumns.LABEL, EXColumns.LABEL); in fromCursor()
134 final String label = cursor.getString(cursor.getColumnIndex(EXColumns.LABEL)); in getLabelFromCursor()
168 values.put(EXColumns.LABEL, getLabel()); in getContentValues()
/expo/docs/ui/components/Home/
H A DCells.tsx8 import { A, CALLOUT, LABEL, P } from '~/ui/components/Text';
61 <LABEL css={cellTitleWrapperStyle}>
64 </LABEL>
101 <LABEL className="block !leading-normal !mb-1">{title}</LABEL>
/expo/android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/components/datetimepicker/
H A DCommon.java29 public static final String LABEL = "label"; field in Common
137 if (buttonConfig == null || buttonConfig.getString(LABEL) == null) {
140 dialog.setButton(whichButton, buttonConfig.getString(LABEL), listener);
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/components/datetimepicker/
H A DCommon.java29 public static final String LABEL = "label"; field in Common
137 if (buttonConfig == null || buttonConfig.getString(LABEL) == null) {
140 dialog.setButton(whichButton, buttonConfig.getString(LABEL), listener);
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/api/components/datetimepicker/
H A DCommon.java29 public static final String LABEL = "label"; field in Common
137 if (buttonConfig == null || buttonConfig.getString(LABEL) == null) {
140 dialog.setButton(whichButton, buttonConfig.getString(LABEL), listener);
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/contacts/
H A DEXColumns.java14 String LABEL = "data3"; field
H A DContactsModule.java602 projection.add(CommonDataKinds.Phone.LABEL); in createProjectionForQuery()
613 projection.add(CommonDataKinds.Email.LABEL); in createProjectionForQuery()
623 projection.add(CommonDataKinds.StructuredPostal.LABEL); in createProjectionForQuery()
/expo/packages/expo-contacts/android/src/main/java/expo/modules/contacts/
H A DEXColumns.java14 String LABEL = "data3"; field
H A DContactsModule.java602 projection.add(CommonDataKinds.Phone.LABEL); in createProjectionForQuery()
613 projection.add(CommonDataKinds.Email.LABEL); in createProjectionForQuery()
623 projection.add(CommonDataKinds.StructuredPostal.LABEL); in createProjectionForQuery()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/contacts/
H A DEXColumns.java14 String LABEL = "data3"; field
H A DContactsModule.java602 projection.add(CommonDataKinds.Phone.LABEL); in createProjectionForQuery()
613 projection.add(CommonDataKinds.Email.LABEL); in createProjectionForQuery()
623 projection.add(CommonDataKinds.StructuredPostal.LABEL); in createProjectionForQuery()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/contacts/
H A DEXColumns.java14 String LABEL = "data3"; field
H A DContactsModule.java602 projection.add(CommonDataKinds.Phone.LABEL); in createProjectionForQuery()
613 projection.add(CommonDataKinds.Email.LABEL); in createProjectionForQuery()
623 projection.add(CommonDataKinds.StructuredPostal.LABEL); in createProjectionForQuery()
/expo/docs/ui/components/Text/
H A Dindex.tsx212 export const LABEL = createTextComponent(TextElement.SPAN, css(typography.body.label));