HomeSort by relevance Sort by last modified time
    Searched refs:secondary (Results 1 - 25 of 508) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/091-override-package-private-method/
run 17 # Use secondary switch to add secondary dex file to class path.
18 exec ${RUN} "${@}" --secondary
  /art/test/127-checker-secondarydex/
run 17 # Use secondary switch to add secondary dex file to class path.
18 exec ${RUN} "${@}" --secondary
  /art/test/146-bad-interface/
run 19 exec ${RUN} --secondary "${@}"
  /art/test/529-checker-unresolved/
run 17 # Use secondary switch to add secondary dex file to class path.
18 exec ${RUN} "${@}" --secondary
  /art/test/608-checker-unresolved-lse/
run 17 # Use secondary switch to add secondary dex file to class path.
18 exec ${RUN} "${@}" --secondary
  /art/test/706-checker-scheduler/
run 17 # Use secondary switch to add secondary dex file to class path.
18 exec ${RUN} "${@}" --secondary
  /art/test/648-inline-caches-unresolved/
run 17 exec ${RUN} $@ --secondary --profile
  /device/google/cuttlefish_common/host/vsoc/lib/
host_region_e2e_test.cpp 65 auto secondary = local
67 ASSERT_TRUE(!!secondary);
70 EXPECT_FALSE(secondary->HasIncomingInterrupt());
76 SetHostStrings(secondary);
77 EXPECT_TRUE(secondary->MaybeInterruptPeer());
79 secondary->WaitForInterrupt();
81 CheckPeerStrings(secondary);
84 EXPECT_FALSE(secondary->HasIncomingInterrupt());
98 secondary->SendSignal(vsoc::layout::Sides::Peer,
99 &secondary->data()->host_to_guest_signal)
    [all...]
  /art/test/164-resolution-trampoline-dex-cache/
run 17 # Use the --secondary switch to add secondary dex file to class path.
20 exec ${RUN} "${@}" --secondary \
  /external/vboot_reference/cgpt/
cgpt.h 150 GptEntry *GetEntry(GptData *gpt, int secondary, uint32_t entry_index);
152 void SetPriority(struct drive *drive, int secondary, uint32_t entry_index,
154 int GetPriority(struct drive *drive, int secondary, uint32_t entry_index);
155 void SetTries(struct drive *drive, int secondary, uint32_t entry_index,
157 int GetTries(struct drive *drive, int secondary, uint32_t entry_index);
158 void SetSuccessful(struct drive *drive, int secondary, uint32_t entry_index,
160 int GetSuccessful(struct drive *drive, int secondary, uint32_t entry_index);
162 void SetRaw(struct drive *drive, int secondary, uint32_t entry_index,
172 int IsUnused(struct drive *drive, int secondary, uint32_t index);
173 int IsKernel(struct drive *drive, int secondary, uint32_t index)
    [all...]
cgpt_common.c 172 Error("Cannot read secondary GPT header\n");
197 Error("Cannot read secondary partition entry array\n");
201 Warning("Secondary GPT header is invalid\n");
222 Error("Cannot write secondary header: %s\n", strerror(errno));
242 Error("Cannot write secondary entries: %s\n", strerror(errno));
705 GptEntry *GetEntry(GptData *gpt, int secondary, uint32_t entry_index) {
712 if (secondary == PRIMARY) {
714 } else if (secondary == SECONDARY) {
717 require(secondary == ANY_VALID)
    [all...]
  /device/google/cuttlefish_common/guest/vsoc/lib/
guest_region_e2e_test.cpp 89 auto secondary = vsoc::E2ESecondaryRegionView::GetInstance(); local
91 ASSERT_TRUE(!!secondary);
95 EXPECT_FALSE(secondary->HasIncomingInterrupt());
103 SetGuestStrings(secondary);
104 LOG(INFO) << "Secondary guest strings are set";
105 EXPECT_TRUE(secondary->MaybeInterruptPeer());
107 secondary->WaitForInterrupt();
109 CheckPeerStrings(secondary);
110 LOG(INFO) << "Verified peer's secondary strings";
113 EXPECT_FALSE(secondary->HasIncomingInterrupt())
    [all...]
  /external/autotest/client/site_tests/audio_CRASFormatConversion/
audio_CRASFormatConversion.py 60 def loopback(self, noise_profile, primary, secondary):
67 @param secondary: The second sample rate, will be SRC'd to the first.
72 'record-%s-%s.wav' % (primary, secondary))
77 # Start with the primary sample rate, then add the secondary. This
78 # causes the secondary to be SRC'd to the primary rate.
85 popens += self.play_sine_tone(_TEST_TONE_TWO, secondary)
102 primary, secondary, str(sox_stat))
123 for secondary in test_sample_rates:
124 key = 'rms_value_%d_%d' % (primary, secondary)
126 noise_profile.name, primary, secondary)
    [all...]
  /packages/apps/Launcher3/src_ui_overrides/com/android/launcher3/uioverrides/dynamicui/
WallpaperManagerCompatVOMR1.java 69 Color secondary = colors.getSecondaryColor(); local
72 int secondaryVal = secondary != null ? secondary.toArgb() : 0;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
brokw-1.s 8 ; Short jump around secondary jump table inserted here :
12 ; Secondary jump table inserted here :
brokw-2.s 9 ; Short jump around secondary jump table inserted here :
13 ; Secondary jump table inserted here :
rd-bkw5.s 39 ; Force a secondary jump-table entry for every label.
  /packages/apps/Dialer/java/com/android/incallui/
CallCardPresenter.java 120 private DialerCall secondary; field in class:CallCardPresenter
204 } else if (isIncomingEmergencyCall(primary) || isIncomingEmergencyCall(secondary)) {
262 DialerCall secondary = null; local
273 // highest priority call to display as the secondary call.
274 secondary = getCallToDisplay(callList, null, true);
277 secondary = getCallToDisplay(callList, primary, true);
281 LogUtil.v("CallCardPresenter.onStateChange", "secondary call: " + secondary);
287 if (secondary != null) {
288 secondaryNumber = secondary.getNumber()
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
TriDiagonalTransformer.java 48 /** Secondary diagonal. */
49 private final double[] secondary; field in class:TriDiagonalTransformer
76 secondary = new double[m - 1];
113 final double inv = 1.0 / (secondary[k - 1] * hK[k]);
116 double beta = 1.0 / secondary[k - 1];
156 cachedT.setEntry(i, i - 1, secondary[i - 1]);
159 cachedT.setEntry(i, i + 1, secondary[i]);
191 * Get the secondary diagonal elements of the matrix T of the transform.
194 * @return the secondary diagonal elements of the T matrix
197 return secondary;
    [all...]
BiDiagonalTransformer.java 46 /** Secondary diagonal. */
47 private final double[] secondary; field in class:BiDiagonalTransformer
69 secondary = new double[p - 1];
96 final double[] diagonal = (m >= n) ? main : secondary;
148 cachedB.setEntry(i, i - 1, secondary[i - 1]);
152 cachedB.setEntry(i, i + 1, secondary[i]);
177 final double[] diagonal = (m >= n) ? secondary : main;
235 * Get the secondary diagonal elements of the matrix B of the transform.
238 * @return the secondary diagonal elements of the B matrix
241 return secondary;
    [all...]
  /external/guava/guava/src/com/google/common/collect/
CompoundOrdering.java 30 Comparator<? super T> secondary) {
32 = ImmutableList.<Comparator<? super T>>of(primary, secondary);
  /external/libdrm/tests/vbltest/
vbltest.c 54 int secondary = 0; variable
70 if (secondary)
96 fprintf(stderr, " -s use secondary pipe\n");
118 secondary = 1;
132 if (secondary)
148 if (secondary)
  /art/test/137-cfi/src/
Main.java 30 // We fork ourself to create the secondary process for remote unwinding.
31 private boolean secondary; field in class:Main
47 if (arg.equals("--secondary")) {
48 secondary = true;
64 if (secondary) {
66 throw new RuntimeException("Should not be running secondary!");
90 // Fork the secondary.
94 secCmdLine[secCmdLine.length - 1] = "--secondary";
118 // Note: this is potentially non-terminating code, if the secondary is totally stuck.
123 System.out.println("Output from the secondary:")
    [all...]
  /external/v8/src/ic/
stub-cache.cc 67 // secondary cache before overwriting it.
72 Entry* secondary = entry(secondary_, secondary_offset); local
73 *secondary = *primary;
92 Entry* secondary = entry(secondary_, secondary_offset); local
93 if (secondary->key == name && secondary->map == map) {
94 return secondary->value;
143 // Lookup in secondary table and add matches.
  /packages/apps/Dialer/java/com/android/contacts/common/model/account/
AccountType.java 325 public boolean secondary; field in class:AccountType.EditType
341 public EditType setSecondary(boolean secondary) {
342 this.secondary = secondary;
377 + " secondary="
378 + secondary

Completed in 730 milliseconds

1 2 3 4 5 6 7 8 91011>>