HomeSort by relevance Sort by last modified time
    Searched refs:primary (Results 101 - 125 of 802) sorted by null

1 2 3 45 6 7 8 91011>>

  /device/google/cuttlefish_common/guest/hals/audio/
Android.mk 62 LOCAL_MODULE := audio.primary.vsoc
  /device/linaro/bootloader/edk2/BeagleBoardPkg/Library/BeagleBoardLib/
BeagleBoardHelper.asm 48 // The BeagleBoard is a uniprocessor platform. The MPIDR of primary core is
  /device/linaro/hikey/hikey960/
device-hikey960.mk 35 PRODUCT_PACKAGES += audio.primary.hikey960
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 12 (* primary
86 * ::= ('+' primary)* *)
99 (* Parse the primary expression after the binary operator. *)
122 * ::= primary binoprhs *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 12 (* primary
86 * ::= ('+' primary)* *)
99 (* Parse the primary expression after the binary operator. *)
122 * ::= primary binoprhs *)
  /hardware/qcom/audio/visualizer/
Android.mk 31 # It should be retrieved from the primary hal USECASE_AUDIO_RECORD_AFE_PROXY.
  /build/make/target/board/generic_x86/
device.mk 45 audio.primary.goldfish \
  /build/make/target/board/generic_x86_64/
device.mk 45 audio.primary.goldfish \
  /compatibility/cdd/3_software/
3_9_device-administration.md 108 profile to the primary user or vice versa, if enabled by the Device Policy
111 affordances for both the primary user and the managed profile:
113 for the primary user and managed profile.
114 * Independent management of VPN Applications installed within the primary
116 * Independent management of applications installed within the primary user
118 * Independent management of accounts within the primary user or managed
122 profile (if one exists) alongside those from the primary profile, if the
127 is not counted as another user in addition to the primary user.
  /device/google/atv/products/
sdk_atv_armv7.mk 23 audio.primary.goldfish \
  /device/linaro/bootloader/edk2/ArmPlatformPkg/PrePeiCore/Arm/
PrePeiCoreEntryPoint.asm 39 // Is it the Primary Core ?
42 // Get the top of the primary stacks (and the base of the secondary stacks)
45 // r0 is equal to 1 if I am the primary core
  /external/apache-http/src/org/apache/commons/codec/language/
DoubleMetaphone.java 1037 private StringBuffer primary = new StringBuffer(getMaxCodeLen()); field in class:DoubleMetaphone.DoubleMetaphoneResult
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
parser.ml 12 (* primary
100 * ::= primary
107 (* If the current token is not an operator, it must be a primary expr. *)
111 * ::= ('+' primary)* *)
124 (* Parse the primary expression after the binary operator. *)
159 * ::= primary binoprhs *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
parser.ml 12 (* primary
100 * ::= primary
107 (* If the current token is not an operator, it must be a primary expr. *)
111 * ::= ('+' primary)* *)
124 (* Parse the primary expression after the binary operator. *)
159 * ::= primary binoprhs *)
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactEditorSpringBoardActivity.java 99 final String primary = ContactEditorFragment.INTENT_EXTRA_MATERIAL_PALETTE_PRIMARY_COLOR; local
102 if (intent.hasExtra(primary) && intent.hasExtra(secondary)) {
103 mMaterialPalette = new MaterialPalette(intent.getIntExtra(primary, -1),
  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
DataItem.java 130 Integer primary = mContentValues.getAsInteger(Data.IS_PRIMARY); local
131 return primary != null && primary != 0;
219 // If any of the collapsed entries are super primary make the whole thing super primary.
225 // If any of the collapsed entries are primary make the whole thing primary.
  /packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
DataItem.java 121 Integer primary = mContentValues.getAsInteger(Data.IS_PRIMARY); local
122 return primary != null && primary != 0;
208 // If any of the collapsed entries are super primary make the whole thing super primary.
214 // If any of the collapsed entries are primary make the whole thing primary.
  /packages/apps/Dialer/java/com/android/incallui/
VideoCallPresenter.java 495 // Determine the primary active call).
496 DialerCall primary = null; local
499 // incoming call waiting call, the primary call is still the active video call, however
505 // We don't want to replace active video call (primary call)
509 primary = callList.getActiveCall();
511 if (!isActiveVideoCall(primary)) {
512 primary = callList.getIncomingCall();
515 currentCall = primary = callList.getOutgoingCall();
517 currentCall = primary = callList.getPendingOutgoingCall();
519 currentCall = primary = callList.getActiveCall()
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
RawContactDeltaList.java 363 ValuesDelta primary = null; local
372 } else if (primary == null && entry.isPrimary()) {
373 primary = entry;
379 // When no direct super primary, return something
380 if (primary != null) {
381 return primary;
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscapers.java 1083 private final CharEscaper primary; field in class:CharEscapers.FallThroughCharEscaper
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandler.java 97 throw new AssertionError("Some of ContactsContract.CommonDataKinds class primary"
119 final Integer primary = values.getAsInteger(Data.IS_PRIMARY); local
121 if ((primary != null && primary != 0) || (superPrimary != null && superPrimary != 0)) {
127 // configured super primary
135 // if there is already another data item configured as super-primary,
250 * Ensures that all super-primary and primary flags of this raw_contact are
299 // Set both super primary and primary
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManager.java 645 /** Finds all widgets in the layout that have the same type as the primary */
670 /** Selects the siblings of the primary */
1131 NodeProxy primary = selections.get(0).getNode(); local
1186 NodeProxy primary = selections.get(0).getNode(); local
    [all...]
  /external/python/cpython2/Lib/bsddb/test/
test_associate.py 98 dupDB.open(self.filename, "primary", db.DB_BTREE, db.DB_CREATE)
149 self.primary = db.DB(self.env)
150 self.primary.set_get_returns_none(2)
151 self.primary.open(self.filename, "primary", self.dbtype,
161 self.primary.close()
162 self.primary = None
165 return self.primary
242 print "Primary key traversal:"
248 self.assertTrue(int(rec[0])) # for primary db, key is a numbe
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/
test_associate.py 98 dupDB.open(self.filename, "primary", db.DB_BTREE, db.DB_CREATE)
149 self.primary = db.DB(self.env)
150 self.primary.set_get_returns_none(2)
151 self.primary.open(self.filename, "primary", self.dbtype,
161 self.primary.close()
162 self.primary = None
165 return self.primary
242 print "Primary key traversal:"
248 self.assertTrue(int(rec[0])) # for primary db, key is a numbe
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/
test_associate.py 98 dupDB.open(self.filename, "primary", db.DB_BTREE, db.DB_CREATE)
149 self.primary = db.DB(self.env)
150 self.primary.set_get_returns_none(2)
151 self.primary.open(self.filename, "primary", self.dbtype,
161 self.primary.close()
162 self.primary = None
165 return self.primary
242 print "Primary key traversal:"
248 self.assertTrue(int(rec[0])) # for primary db, key is a numbe
    [all...]

Completed in 933 milliseconds

1 2 3 45 6 7 8 91011>>