| /external/droiddriver/ |
| releasing_to_jcenter.md | 7 Note that you'll need to be a member of the appium organization on jcenter before publishing. Existing members are able to invite new ones. 9 Update the version number in `build.gradle` by modifying the value of `ddVersion`. Official releases should be made only after removing the `-SNAPSHOT` suffix. If the same version number is used as an existing release of droiddriver then jcenter will reject the upload.
|
| /external/guava/guava/src/com/google/common/collect/ |
| RegularImmutableMap.java | 63 @Nullable ImmutableMapEntry<K, V> existing = table[tableIndex]; local 65 ImmutableMapEntry<K, V> newEntry = (existing == null) 67 : new NonTerminalMapEntry<K, V>(entry, existing); 70 checkNoConflictInBucket(key, newEntry, existing); 90 @Nullable ImmutableMapEntry<K, V> existing = table[tableIndex]; local 92 ImmutableMapEntry<K, V> newEntry = (existing == null) 94 : new NonTerminalMapEntry<K, V>(key, value, existing); 97 checkNoConflictInBucket(key, newEntry, existing);
|
| /external/lzma/CPP/7zip/UI/GUI/ |
| Extract.rc | 31 IDS_EXTRACT_OVERWRITE_SKIP_EXISTING "Skip existing files"
33 IDS_EXTRACT_OVERWRITE_RENAME_EXISTING "Auto rename existing files"
|
| /external/markdown/docs/ |
| AUTHORS | 9 documentation and making general improvements to the existing codebase, 17 the script and is responsible for various parts of the existing codebase.
|
| /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
| HeadersMode.java | 29 /** Returns true if it is an error these headers to update an existing stream. */ 43 * Returns true if it is an error these headers to be update existing headers
|
| /frameworks/base/core/java/android/content/pm/ |
| SELinuxUtil.java | 27 /** Append to existing seinfo label for instant apps @hide */ 30 /** Append to existing seinfo when modifications are complete @hide */
|
| /frameworks/base/core/java/android/os/storage/ |
| IObbActionListener.aidl | 23 * Don't change the existing transaction Ids as they could be used in the native code. 39 * Don't change the existing transaction Ids as they could be used in the native code.
|
| IStorageShutdownObserver.aidl | 22 * Don't change the existing transaction Ids as they could be used in the native code. 36 * Don't change the existing transaction Ids as they could be used in the native code.
|
| /frameworks/opt/bitmap/src/com/android/bitmap/ |
| PooledCache.java | 28 * Purge existing Poolables from the pool+cache. Usually, this is done when situations 33 * The existing Poolables will be garbage collected when they are no longer being referenced
|
| /prebuilts/go/darwin-x86/src/net/textproto/ |
| header.go | 12 // It appends to any existing values associated with key. 19 // the single element value. It replaces any existing
|
| /prebuilts/go/linux-x86/src/net/textproto/ |
| header.go | 12 // It appends to any existing values associated with key. 19 // the single element value. It replaces any existing
|
| /test/vts/utils/python/os/ |
| env_utils.py | 20 """Saves and clears the values of existing environment variables. 39 """Restores the values of existing environment variables.
|
| /art/runtime/jit/ |
| profiling_info.cc | 85 mirror::Class* existing = cache->classes_[i].Read<kWithoutReadBarrier>(); local 86 mirror::Class* marked = ReadBarrier::IsMarked(existing); 92 // Note: it's ok to spin on 'existing' here: if 'existing' is not null, that means 95 GcRoot<mirror::Class> expected_root(existing);
|
| /frameworks/base/packages/SettingsLib/src/com/android/settingslib/net/ |
| ChartDataLoader.java | 130 * an existing {@link NetworkStatsHistory} if provided. 133 NetworkTemplate template, int uid, int set, NetworkStatsHistory existing) 138 if (existing != null) { 139 existing.recordEntireHistory(history); 140 return existing;
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/resources/ |
| ResourceNameValidatorTest.java | 79 Set<String> existing = new HashSet<String>(); local 80 existing.add("foo1"); 81 existing.add("foo2"); 82 existing.add("foo3"); 84 ResourceNameValidator validator = ResourceNameValidator.create(true, existing,
|
| /external/tensorflow/tensorflow/core/framework/ |
| variant_op_registry.cc | 50 VariantShapeFn* existing = GetShapeFn(type_name); local 51 CHECK_EQ(existing, nullptr) 103 VariantDecodeFn* existing = GetDecodeFn(type_name); local 104 CHECK_EQ(existing, nullptr) 156 AsyncVariantDeviceCopyFn* existing = GetDeviceCopyFn(direction, type_name); local 157 CHECK_EQ(existing, nullptr) 194 VariantUnaryOpFn* existing = GetUnaryOpFn(op, device, type_name); local 195 CHECK_EQ(existing, nullptr) 239 VariantBinaryOpFn* existing = GetBinaryOpFn(op, device, type_name); local 240 CHECK_EQ(existing, nullptr [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/ |
| ResourceNameValidator.java | 44 /** Set of existing names to check for conflicts with */ 68 private ResourceNameValidator(boolean allowXmlExtension, Set<String> existing, 71 mExisting = existing; 202 * @param existing An optional set of names that already exist (and therefore will not 207 public static ResourceNameValidator create(boolean allowXmlExtension, Set<String> existing, 210 return new ResourceNameValidator(allowXmlExtension, existing, isFileType, 227 Set<String> existing = null; local 229 existing = new HashSet<String>(); 234 existing.add(item.getName()); 239 return new ResourceNameValidator(allowXmlExtension, existing, isFileType [all...] |
| /external/llvm/test/CodeGen/AArch64/ |
| bitfield-insert.ll | 26 define void @test_whole32(i32* %existing, i32* %new) { 31 %oldval = load volatile i32, i32* %existing 39 store volatile i32 %combined, i32* %existing 44 define void @test_whole64(i64* %existing, i64* %new) { 50 %oldval = load volatile i64, i64* %existing 58 store volatile i64 %combined, i64* %existing 63 define void @test_whole32_from64(i64* %existing, i64* %new) { 71 %oldval = load volatile i64, i64* %existing 78 store volatile i64 %combined, i64* %existing 83 define void @test_32bit_masked(i32 *%existing, i32 *%new) [all...] |
| /art/compiler/dex/ |
| verification_results.cc | 59 const VerifiedMethod* existing = nullptr; local 65 CHECK(atomic_verified_methods_.Get(ref, &existing)); 66 CHECK_NE(verified_method.get(), existing); 76 existing = it->second; 88 auto ex_set = existing->GetSafeCastSet(); 94 // Let the unique_ptr delete the new verified method since there was already an existing one 95 // registered. It is unsafe to replace the existing one since the JIT may be using it to
|
| /external/autotest/client/common_lib/ |
| file_utils.py | 41 Verifies path given points to an existing file. 55 Verifies all paths given point to existing files. 59 @raises IOError if given paths do not point to existing files. 68 Verifies path given points to an existing directory. 72 @raises IOError if path does not point to an existing directory. 82 Verifies all paths given point to existing directories. 86 @raises IOError if given paths do not point to existing directories.
|
| /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/ |
| DataBinder.java | 117 final CallbackWrapper existing = uniqueWrappers.get(entry.getKey()); local 118 if (existing == null) { 129 .prepare(existing.getClassName(), existing.getListenerMethodName()); 147 private String makeUnique(Set<String> existing, String wanted) { 149 while (existing.contains(wanted)) { 153 existing.add(wanted);
|
| /prebuilts/vndk/v27/x86/arch-x86-x86/shared/vndk-core/ |
| libstagefright_xmlparser.so | |
| /prebuilts/vndk/v27/x86_64/arch-x86-x86_64/shared/vndk-core/ |
| libstagefright_xmlparser.so | |
| /external/tensorflow/tensorflow/core/util/ |
| tensor_slice_set.cc | 47 return errors::Internal("Overlapping slices: existing slice = ", 75 // multiple existing slices can be patched together to output the slice. 76 // We figure this out by computing the intersection of each of the existing 79 // existing slices don't have any intersection among themselves. 132 // multiple existing slices can be patched together to output the slice. 133 // We figure this out by computing the intersection of each of the existing 136 // existing slices don't have any intersection among themselves. 186 name, ": existing = ", tss_shape.DebugString(), 192 ": existing = ", DataTypeString(tss->type()),
|
| /frameworks/base/core/java/com/android/internal/widget/ |
| MessagingPropertyAnimator.java | 142 ObjectAnimator existing = (ObjectAnimator) v.getTag(TAG_TOP_ANIMATOR); local 143 if (existing != null) { 144 existing.cancel(); 182 ObjectAnimator existing = (ObjectAnimator) v.getTag(TAG_ALPHA_ANIMATOR); local 183 if (existing != null) { 184 existing.cancel(); 215 ObjectAnimator existing = (ObjectAnimator) view.getTag(TAG_ALPHA_ANIMATOR); local 216 if (existing != null) { 217 existing.cancel();
|