Searched refs:primary (Results 1 - 19 of 19) sorted by relevance

/frameworks/av/services/audiopolicy/
H A Daudio_policy.conf30 # For instance, "primary" corresponds to audio.primary.<device>.so.
31 # The "primary" module is mandatory and must include at least one output with
73 # primary {
84 primary {
106 primary {
115 primary {
/frameworks/base/core/tests/coretests/src/android/widget/espresso/
H A DTextViewActions.java329 * @param primary whether to use primary direction to get coordinate form index when endIndex is
333 boolean primary) {
338 new HandleCoordinates(textView, handleType, endIndex, primary),
407 public HandleCoordinates(TextView textView, Handle handleType, int index, boolean primary) { argument
411 mPrimary = primary;
414 + " (" + (primary ? "primary" : "secondary" ) + ")";
494 public TextCoordinates(int index, boolean primary) { argument
496 mPrimary = primary;
332 dragHandle(TextView textView, Handle handleType, int endIndex, boolean primary) argument
523 locateTextAtIndex(TextView textView, int index, boolean primary) argument
[all...]
/frameworks/data-binding/compiler/src/test/java/android/databinding/
H A DBindingExpressionParserTest.java145 PrimaryContext primary = parsePrimary("void.class");
146 assertNotNull(primary.classExtraction());
147 assertNull(primary.classExtraction().type());
148 assertEquals("void", primary.classExtraction().getChild(0).getText());
153 PrimaryContext primary = parsePrimary("int.class");
154 PrimitiveTypeContext type = primary.classExtraction().type().primitiveType();
160 PrimaryContext primary = parsePrimary("abcdEfg");
161 assertEquals("abcdEfg", primary.identifier().getText());
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbEtwsInfo.java62 /** Whether ETWS primary message or not/ */
66 * 50-byte security information (ETWS primary notification for GSM only). As of Release 10,
67 * 3GPP TS 23.041 states that the UE shall ignore the ETWS primary notification timestamp
76 boolean primary, byte[] warningSecurityInformation) {
80 mPrimary = primary;
134 * @return true if the message is primary message, otherwise secondary message
141 * Returns the Warning-Security-Information timestamp (GSM primary notifications only).
184 * Returns the digital signature (GSM primary notifications only). As of Release 10,
186 * @return a byte array containing a copy of the primary notification digital signature
75 SmsCbEtwsInfo(int warningType, boolean emergencyUserAlert, boolean activatePopup, boolean primary, byte[] warningSecurityInformation) argument
/frameworks/av/media/audioserver/
H A DAndroid.mk43 # and use primary target architecture (32 or 64) for audioserver.
44 # first to build libraries and audioserver for the primary target architecture only.
/frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
H A DDomainMatcher.java67 public DomainMatcher(List<String> primary, List<List<String>> secondary) { argument
73 mRoot.addDomain(primary.iterator(), Match.Primary);
81 * @return None if domain is not a sub-domain, Primary if it matched one of the primary domains
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
H A DDomainMatcher.java70 public DomainMatcher(List<String> primary, List<List<String>> secondary) { argument
76 mRoot.addDomain(primary.iterator(), Match.Primary);
83 * @return None if domain is not a sub-domain, Primary if it matched one of the primary domains
/frameworks/base/services/core/java/com/android/server/notification/
H A DCalendarTracker.java94 final String primary = "\"primary\"";
96 "(" + Calendars.ACCOUNT_NAME + "=" + Calendars.OWNER_ACCOUNT + ") AS " + primary };
97 final String selection = primary + " = 1";
/frameworks/base/core/java/android/os/storage/
H A DStorageVolume.java40 * A device always has one (and one only) primary storage volume, but it could have extra volumes,
61 * <li>To get read and write access to the primary storage volume, applications can declare the
124 public StorageVolume(String id, int storageId, File path, String description, boolean primary, argument
131 mPrimary = primary;
188 * Returns true if the volume is the primary shared/external storage, which is the volume
324 * Access to the entire volume is only available for non-primary volumes (for the primary
/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java433 final StorageVolume primary = storage.getPrimaryVolume();
434 return (sizeBytes > 0) && !primary.isEmulated()
435 && Environment.MEDIA_MOUNTED.equals(primary.getState())
436 && sizeBytes <= storage.getStorageBytesUntilLow(primary.getPathFile());
/frameworks/base/core/java/android/text/
H A DLayout.java691 * Returns the primary directionality of the paragraph containing the
877 * Get the primary horizontal position for the specified text offset.
879 * the paragraph's primary direction.
886 * Get the primary horizontal position for the specified text offset, but
898 * the direction other than the paragraph's primary direction.
914 private float getHorizontal(int offset, boolean primary) { argument
915 return primary ? getPrimaryHorizontal(offset) : getSecondaryHorizontal(offset);
1155 * @param primary whether to use the primary position or secondary position to find the offset
1159 public int getOffsetForHorizontal(int line, float horiz, boolean primary) { argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackControlsRowPresenter.java119 Presenter getPresenter(boolean primary) { argument
120 ObjectAdapter adapter = primary ?
129 return primary ? selector.getPrimaryPresenter() :
250 * Sets the primary color for the progress bar. If not set, a default from
259 * Returns the primary color for the progress bar. If no color was set, transparent
269 * When "more actions" is selected, the primary actions are replaced with
293 * Displays the primary actions. This will override the user having selected "more actions"
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp1074 static inline bool isValidPrimary(const mkvparser::PrimaryChromaticity *primary) { argument
1075 return primary != NULL && primary->x >= 0 && primary->x <= 1
1076 && primary->y >= 0 && primary->y <= 1;
/frameworks/base/core/java/android/widget/
H A DDialerFilter.java65 mPrimary = (EditText) findViewById(com.android.internal.R.id.primary);
67 throw new IllegalStateException("DialerFilter must have a child EditText named primary");
H A DEditor.java3950 final float primary = layout.getPrimaryHorizontal(offset);
3961 left = primary;
3962 right = primary + charWidth;
3969 left = primary - charWidth;
3970 right = primary;
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbDeviceManager.java232 // We do not show the USB notification if the primary volume supports mass storage.
236 final StorageVolume primary = storageManager.getPrimaryVolume();
237 massStorageSupported = primary != null && primary.allowMassStorage();
/frameworks/base/services/core/java/com/android/server/
H A DMountService.java1269 Slog.v(TAG, "Found primary storage at " + vol);
1275 Slog.v(TAG, "Found primary storage at " + vol);
1285 Slog.v(TAG, "Found primary storage at " + vol);
1891 // If this had been primary storage, revert back to internal and
2048 // When moving to/from primary physical volume, we probably just nuked
2052 Slog.d(TAG, "Skipping move to/from primary physical");
2113 // Cool beans, we have a mounted primary volume
2119 Slog.w(TAG, "No primary storage mounted!");
3063 Log.w(TAG, "No primary storage defined yet; hacking together a stub");
3071 final boolean primary
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 4660 milliseconds