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

1 2 3 4 5 6

  /external/nist-sip/java/gov/nist/javax/sip/header/
ParametersHeader.java 56 protected DuplicateNameValueList duplicates; field in class:ParametersHeader
60 this.duplicates = new DuplicateNameValueList();
66 this.duplicates = new DuplicateNameValueList();
72 this.duplicates = new DuplicateNameValueList();
486 duplicates.set(nv);
494 this.duplicates.set(nameValue);
503 return this.duplicates.getParameter(name);
509 return duplicates;
520 return this.duplicates.getValue(name);
531 return duplicates.getNames()
    [all...]
  /frameworks/base/tools/aapt2/tools/consumers/
duplicates.py 27 duplicates = []
30 duplicates += entries[:-1]
32 # Sort the duplicates so that they are in order. That way we only do one pass.
33 duplicates = sorted(duplicates, key=lambda x: x.start)
39 for definition in duplicates:
74 if len(duplicates) > 0:
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UnitTest.java 195 List<String> duplicates = new ArrayList<>(); local
199 duplicates.add(name);
203 if (!duplicates.isEmpty()) {
204 throw new RuntimeException("duplicate name(s): " + duplicates);
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UnitTest.java 197 List<String> duplicates = new ArrayList<>(); local
201 duplicates.add(name);
205 if (!duplicates.isEmpty()) {
206 throw new RuntimeException("duplicate name(s): " + duplicates);
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PChargingFunctionAddresses.java 94 if (!duplicates.isEmpty())
96 encoding.append(duplicates.encode());
  /frameworks/base/tools/aapt2/tools/
fix_resources.py 13 from consumers.duplicates import DuplicateRemover
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationIconAreaController.java 223 // removing all duplicates
224 ArrayList<String> duplicates = new ArrayList<>(); local
228 duplicates.add(key);
231 replacingIcons.removeAll(duplicates);
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
textflag.go 18 // pick one of the duplicates to use.
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
binary.go 9 // This file contains duplicates of encoding/binary package.
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
textflag.go 18 // pick one of the duplicates to use.
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/
binary.go 9 // This file contains duplicates of encoding/binary package.
  /external/devlib/devlib/utils/
misc.py 298 def _merge_two_lists(base, other, duplicates='all', dict_type=dict): # pylint: disable=R0912
306 :duplicates: Indicates the strategy of handling entries that appear
320 if duplicates == 'all':
326 elif duplicates == 'first':
336 elif duplicates == 'last':
348 raise ValueError('Unexpected value for list duplicates argument: {}. '.format(duplicates) +
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
SpiUtils.java 106 * @param allowDuplicates If duplicates are allowed.
189 int duplicates = 0; local
232 duplicates++;
245 int expectedSize = 2 * (mapResults.size() + duplicates);
303 int duplicates = 0; local
323 duplicates++;
388 int expectedSize = (mapResults.size() + duplicates) * 3;
414 * @param allowDuplicates If duplicates are allowed.
548 int duplicates = 0; local
564 duplicates++
    [all...]
  /build/soong/python/
python.go 233 // check "libs" duplicates from current module dependencies.
242 ctx.PropertyErrorf("libs", "%q has duplicates within libs.", l)
251 ctx.PropertyErrorf(versionProp, "%q has duplicates within %q.", set[l])
320 // check duplicates.
395 // check Python/data files duplicates from current module and its whole dependencies.
398 // check duplicates.
  /bionic/libc/kernel/tools/
kernel.py 301 self.duplicates = False
317 self.duplicates = True
  /build/make/core/
aux_executable.mk 31 # This duplicates logic from base_rules.mk because we need to
  /prebuilts/go/darwin-x86/src/io/
multi.go 96 // MultiWriter creates a writer that duplicates its writes to all the
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
binary.go 9 // This file contains duplicates of encoding/binary package.
  /prebuilts/go/darwin-x86/test/chan/
doubleselect.go 48 // recver gets a steam of values from the four mux's and checks for duplicates.
  /prebuilts/go/darwin-x86/test/
switch5.go 94 // Ensure duplicates in ranges are detected (issue #17517).
  /prebuilts/go/linux-x86/src/io/
multi.go 96 // MultiWriter creates a writer that duplicates its writes to all the
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
binary.go 9 // This file contains duplicates of encoding/binary package.
  /prebuilts/go/linux-x86/test/chan/
doubleselect.go 48 // recver gets a steam of values from the four mux's and checks for duplicates.
  /prebuilts/go/linux-x86/test/
switch5.go 94 // Ensure duplicates in ranges are detected (issue #17517).
  /packages/apps/Dialer/java/com/android/dialer/app/list/
PhoneFavoritesTileAdapter.java 192 final LongSparseArray<Object> duplicates = new LongSparseArray<>(cursor.getCount()); local
230 final ContactEntry existing = (ContactEntry) duplicates.get(id);
293 duplicates.put(id, contact);

Completed in 616 milliseconds

1 2 3 4 5 6