HomeSort by relevance Sort by last modified time
    Searched defs:primary (Results 26 - 50 of 511) sorted by null

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/include/opcode/
m68k.h 84 const char *primary; member in struct:m68k_opcode_alias
  /packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
ClipStorage.java 48 * - [file] primary
49 * - [symlink] 1 > primary # copying to location X
50 * - [symlink] 2 > primary # copying to location Y
66 private static final String PRIMARY_DATA_FILE_NAME = "primary";
96 * operations after cutting a primary clip, then the primary clip is overwritten.</li>
113 // No file or only primary file exists, we deem it available.
159 File primary = toSlotDataFile(slot); local
165 Os.symlink(primary.getAbsolutePath(), link.getAbsolutePath());
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
StdCatchBuilder.java 220 int primary = block.getPrimarySuccessor(); local
228 if (((primary == -1) && (succSize != catchSize))
229 || ((primary != -1) &&
231 || (primary != successors.get(catchSize))))) {
233 * Blocks that throw are supposed to list their primary
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 325 int primary = bb.getPrimarySuccessor(); local
331 if ((ssz != 1) && (succ == primary)) {
  /dalvik/dx/src/com/android/dx/dex/code/
StdCatchBuilder.java 222 int primary = block.getPrimarySuccessor(); local
230 if (((primary == -1) && (succSize != catchSize))
231 || ((primary != -1) &&
233 || (primary != successors.get(catchSize))))) {
235 * Blocks that throw are supposed to list their primary
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
res_update.c 123 char name[MAXDNAME], zname[MAXDNAME], primary[MAXDNAME], local
342 if ((n = dn_expand(answer, eom, cp, primary,
343 sizeof primary)) < 0)
351 strcpy(cp1, primary);
517 * Sort primary to be the first in the list of nameservers.
  /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/icu/icu4c/source/i18n/
ucoleitr.cpp 219 uint64_t primary = 0, secondary = 0, tertiary = 0, quaternary = 0; local
234 primary = ucol_primaryOrder(ce);
238 // **** That means that we need 24 bits for the primary ****
244 // **** the primary is... ****
245 if ((toShift && variableTop > ce && primary != 0)
246 || (isShifted && primary == 0)) {
248 if (primary == 0) {
253 quaternary = primary;
256 primary = secondary = tertiary = 0;
266 return primary << 48 | secondary << 32 | tertiary << 16 | quaternary
    [all...]
collationiterator.cpp 749 // Note: We use primary byte values 2..255: digits are not compressible.
756 // Primary weight second byte values:
757 // 74 byte values 2.. 75 for small numbers in two-byte primary weights.
758 // 40 byte values 76..115 for medium numbers in three-byte primary weights.
759 // 16 byte values 116..131 for large numbers in four-byte primary weights.
764 // Two-byte primary for 0..73, good for day & month numbers etc.
765 uint32_t primary = numericPrimary | ((firstByte + value) << 16); local
766 ceBuffer.append(Collation::makeCE(primary), errorCode);
773 // Three-byte primary for 74..10233=74+40*254-1, good for year numbers and more.
774 uint32_t primary = numericPrimary local
784 uint32_t primary = numericPrimary | (2 + value % 254); local
803 uint32_t primary = numericPrimary | ((132 - 4 + numPairs) << 16); local
    [all...]
  /external/libunwind/src/ia64/
unwind_decoder.h 449 unsigned char code, primary; local
452 primary = code >> 5;
454 if (primary < 2)
456 else if (primary == 2)
458 else if (primary == 3)
461 switch (primary)
469 switch (primary)
  /external/turbine/java/com/google/turbine/parse/
ConstExpressionParser.java 98 private Tree.Expression primary(boolean negate) { method in class:ConstExpressionParser
223 return new Tree.TypeCast(position, asClassTy(cvar.name()), primary(false));
405 Tree.Expression expr = primary(negate);
484 Tree.Expression term1 = primary(false);
551 Tree.Expression rhs = primary(false);
  /external/webrtc/webrtc/modules/audio_coding/neteq/
packet_buffer_unittest.cc 62 packet->primary = true;
73 bool primary; member in struct:webrtc::PacketsToInsert
271 packet->primary = packet_facts[i].primary;
481 // Test equal timestamps and sequence numbers, but only 'b' is primary.
483 a->primary = false;
484 b->primary = true;
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 268 final StorageVolume primary = storage.getPrimaryVolume(); local
269 return (params.sizeBytes > 0) && !primary.isEmulated()
270 && Environment.MEDIA_MOUNTED.equals(primary.getState())
271 && params.sizeBytes <= storage.getStorageBytesUntilLow(primary.getPathFile());
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/
RestrictedLockUtilsTest.java 217 EnforcedAdmin primary = RestrictedLockUtils.checkIfKeyguardFeaturesDisabled( local
219 assertThat(primary).isNull();
287 UserInfo userInfo = new UserInfo(userId, "primary", 0);
  /frameworks/base/services/core/java/com/android/server/notification/
CalendarTracker.java 95 final String primary = "\"primary\""; local
97 "(" + Calendars.ACCOUNT_NAME + "=" + Calendars.OWNER_ACCOUNT + ") AS " + primary };
98 final String selection = primary + " = 1";
  /frameworks/data-binding/compiler/src/test/java/android/databinding/
BindingExpressionParserTest.java 147 PrimaryContext primary = parsePrimary("int.class"); local
148 PrimitiveTypeContext type = primary.classExtraction().type().primitiveType();
154 PrimaryContext primary = parsePrimary("abcdEfg"); local
155 assertEquals("abcdEfg", primary.identifier().getText());
  /frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/testing/
TestEvents.java 42 TestEvents.builder().mouse().primary().build();
44 TestEvents.builder().mouse().primary().ctrl().build();
46 TestEvents.builder().mouse().primary().alt().build();
48 TestEvents.builder().mouse().primary().shift().build();
218 public Builder primary() { method in class:TestEvents.Builder
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestEvents.java 41 TestEvents.builder().mouse().primary().build();
43 TestEvents.builder().mouse().primary().ctrl().build();
45 TestEvents.builder().mouse().primary().alt().build();
47 TestEvents.builder().mouse().primary().shift().build();
220 public Builder primary() { method in class:TestEvents.Builder
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/selection/testing/
TestEvents.java 41 TestEvents.builder().mouse().primary().build();
43 TestEvents.builder().mouse().primary().ctrl().build();
45 TestEvents.builder().mouse().primary().alt().build();
47 TestEvents.builder().mouse().primary().shift().build();
220 public Builder primary() { method in class:TestEvents.Builder
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeEventRuleSettings.java 205 final String primary = "\"primary\""; local
207 "(" + Calendars.ACCOUNT_NAME + "=" + Calendars.OWNER_ACCOUNT + ") AS " + primary };
208 final String selection = primary + " = 1";
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscapers.java 1083 private final CharEscaper primary; field in class:CharEscapers.FallThroughCharEscaper
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntitySet.java 276 ValuesDelta primary = null; local
285 } else if (primary == null && entry.isPrimary()) {
286 primary = entry;
292 // When no direct super primary, return something
293 if (primary != null) {
294 return primary;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CursorAnchorInfoUtils.java 183 final float primary = layout.getPrimaryHorizontal(offset); local
194 left = primary;
195 right = primary + charWidth;
202 left = primary - charWidth;
203 right = primary;
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpService.java 156 final StorageVolume primary = StorageManager.getPrimaryVolume(mVolumes); local
157 startServer(primary, subdirs);
161 private synchronized void startServer(StorageVolume primary, String[] subdirs) {
177 " with storage " + primary.getPath() + (mUnlocked ? " unlocked" : "") + " as user " + UserHandle.myUserId());
210 addStorage(primary);
  /external/dnsmasq/src/
dhcp.c 22 struct in_addr relay, primary; member in struct:iface_param
210 parm.primary = iface_addr;
354 context->local = param->primary;
716 /* use primary (first) address */

Completed in 667 milliseconds

12 3 4 5 6 7 8 91011>>