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

1 2 3 4 5 6

  /cts/tests/camera/src/android/hardware/multiprocess/camera/cts/
Camera2Activity.java 92 final String chosen = cameraIds[0]; local
94 manager.openCamera(chosen, new CameraDevice.StateCallback() {
98 chosen);
99 Log.i(TAG, "Camera " + chosen + " is opened");
105 chosen);
106 Log.i(TAG, "Camera " + chosen + " is disconnected");
112 " Camera " + chosen + " experienced error " + i);
113 Log.e(TAG, "Camera " + chosen + " onError called with error " + i);
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
ldsym1.d 8 # value as _start, and will collate before _start and be chosen
  /external/avahi/avahi-core/
probe-sched.c 43 int chosen; /* Use for packet assembling */ member in struct:AvahiProbeJob
74 pj->chosen = 0;
174 assert(!pj->chosen);
193 pj->chosen = 1;
197 if (pj->chosen)
209 pj->chosen = 1;
278 if (pj->chosen)
291 /* Now add the chosen records to the authorative section */
296 if (!pj->chosen)
304 pj->chosen = 0
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_schedule_instructions.cpp 443 schedule_node *chosen = NULL; local
449 if (!chosen || n->unblocked_time < chosen_time) {
450 chosen = n;
456 assert(chosen);
457 chosen->remove();
458 next_block_header->insert_before(chosen->inst);
471 for (int i = 0; i < chosen->child_count; i++) {
472 schedule_node *child = chosen->children[i];
475 time + chosen->child_latency[i]);
488 if (chosen->inst->is_math())
    [all...]
  /prebuilts/tools/common/m2/
Android.mk 5 # trove prebuilt. Module stem is chosen so it can be used as a static library.
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
Scope.java 168 List<Location> chosen = new ArrayList<Location>(); local
172 chosen.add(absLocation);
175 return chosen.isEmpty() ? locations : chosen;
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/util/
DiffUtilActivity.java 160 String chosen = Cheeses.sCheeseStrings[mRandom.nextInt(Cheeses.sCheeseStrings.length)]; local
161 while (excludes.contains(chosen)) {
162 chosen = Cheeses.sCheeseStrings[mRandom.nextInt(Cheeses.sCheeseStrings.length)];
164 return chosen;
  /external/llvm/test/MC/ARM/
arm-thumb-cpus-default.s 19 @ Make sure the architecture chosen by LLVM defaults to a compatible
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
GridLayoutManagerNoOpUpdateTest.java 70 View chosen = mGlm.findViewByPosition(1); local
71 assertNotNull("test sanity", chosen);
GridLayoutManagerTest.java 307 final View chosen = recyclerView.getChildAt(recyclerView.getChildCount() - 2); local
308 final int position = recyclerView.getChildLayoutPosition(chosen);
312 delegateCompat.onInitializeAccessibilityNodeInfo(chosen, info);
    [all...]
  /external/android-clat/
config.c 246 in_addr_t chosen = INADDR_NONE; local
250 return chosen;
263 chosen = htonl(ipv4);
269 return chosen;
  /external/tpm2/
RSAKeySieve.c 115 // The chosen bit is in the byte that was just accessed
555 // the one bits in the field is chosen for testing with Miller-Rabin. If the value is prime, pnP is updated with
557 // is chosen and tested. This process repeats until all values in the field have been checked. If all bits in the
559 // to be chosen.
577 INT32 chosen; local
624 chosen = FindNthSetBit(defaultFieldSize, field,((first % ones) + 1));
625 if(chosen >= ((defaultFieldSize) * 8))
628 BN_add_word(bnP, chosen * 2);
639 BN_sub_word(bnP, chosen * 2);
641 ClearBit(field, chosen);
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewFactory.java 236 private static void verifyPackageInfo(PackageInfo chosen, PackageInfo toUse) {
237 if (!chosen.packageName.equals(toUse.packageName)) {
240 + chosen.packageName + " actual: " + toUse.packageName);
242 if (chosen.versionCode > toUse.versionCode) {
244 + "version code is lower than expected: " + chosen.versionCode
251 if (!signaturesEquals(chosen.signatures, toUse.signatures)) {
282 // Fetch package info and verify it against the chosen package
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssistTest.java 926 ICompletionProposal chosen = null; local
    [all...]
  /external/llvm/test/MC/Mips/
higher-highest-addressing.s 33 # is chosen so that it is just below the value that triggers the addition of +1
  /external/v8/test/webkit/
dfg-constant-fold-uncaptured-variable-that-is-later-captured.js 42 // chosen for the callee here is the same as the one that will be chosen for the first non-this argument below,
  /system/bt/doc/
power_management.md 128 `BTA_DM_PM_NO_ACTION`. Only the highest power mode action is chosen from
130 - If the chosen action is `BTA_DM_PM_PARK` or `BTA_DM_PM_SNIFF` but the
134 - If the action chosen is `BTA_DM_PM_PARK`, `bta_dm_pm_park` is called,
137 - If the action chosen is `BTA_DM_PM_SNIFF`, the peer device's link policy
142 - If the action chosen is `BTA_DM_PM_ACTIVE`, a call to `bta_dm_pm_active`
  /external/v8/test/mjsunit/regress/
regress-1132.js 32 // NOTE: stack size constant above has been empirically chosen.
regress-create-exception.js 43 // garbage collector. 93 is chosen to be a prime number to avoid the
  /external/guava/guava-tests/test/com/google/common/hash/
HashingTest.java 190 int chosen = Hashing.consistentHash(h, shards); local
191 if (chosen != last) {
193 last = chosen;
  /build/core/
dumpvar.mk 35 # what to add to the path given the config we have chosen.
  /external/v8/test/mjsunit/compiler/
alloc-object.js 60 // Value chosen based on kGenerousAllocationCount = 8.
division-by-constant.js 81 // Some "randomly" chosen numbers.
  /external/v8/test/mjsunit/es6/
typedarray-every.js 102 // The length of the ArrayBuffer is chosen so it is a multiple of
typedarray-foreach.js 106 // The length of the ArrayBuffer is chosen so it is a multiple of

Completed in 1094 milliseconds

1 2 3 4 5 6