HomeSort by relevance Sort by last modified time
    Searched defs:sup (Results 1 - 25 of 47) sorted by null

1 2

  /external/v8/test/mjsunit/
html-string-funcs.js 36 strike: 'strike', sub: 'sub', sup: 'sup' };
  /external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
PropertyChangeSupportTest.java 74 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
82 sup.addPropertyChangeListener(l1);
84 assertEquals(1, sup.getPropertyChangeListeners().length);
85 assertSame(l1, sup.getPropertyChangeListeners()[0]);
87 sup.removePropertyChangeListener(l1);
88 sup.addPropertyChangeListener(l3);
89 assertEquals(1, sup.getPropertyChangeListeners().length);
90 assertSame(l2, ((PropertyChangeListenerProxy) sup
92 assertNotSame(l3, sup.getPropertyChangeListeners()[0]);
94 sup.removePropertyChangeListener(sup.getPropertyChangeListeners()[0])
114 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
127 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
145 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
193 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
211 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
230 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
268 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
304 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
320 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
331 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
353 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
378 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
390 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
406 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
422 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
441 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
452 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
477 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
496 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
510 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
531 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
554 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
563 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
593 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
604 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
633 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
662 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
691 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
720 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
748 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
776 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
791 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
823 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
855 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
887 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
919 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
950 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
980 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
995 PropertyChangeSupport sup = new PropertyChangeSupport(new Object()); local
1010 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
1039 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
1067 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
1094 PropertyChangeSupport sup = new PropertyChangeSupport(new Object()); local
1107 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
1136 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
1165 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
1193 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
1204 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
1235 PropertyChangeSupport sup = new PropertyChangeSupport(src); local
    [all...]
  /external/opencv3/samples/cpp/
detect_blob.cpp 25 String sup = static_cast<ostringstream*>(&(ostringstream() << pAct.maxArea))->str(); local
26 s = " Area range [" + inf + " to " + sup + "]";
31 String sup = static_cast<ostringstream*>(&(ostringstream() << pAct.maxCircularity))->str(); local
33 s = " Circularity range [" + inf + " to " + sup + "]";
35 s += " AND Circularity range [" + inf + " to " + sup + "]";
48 String sup = static_cast<ostringstream*>(&(ostringstream() << pAct.maxConvexity))->str(); local
50 s = " Convexity range[" + inf + " to " + sup + "]";
52 s += " AND Convexity range[" + inf + " to " + sup + "]";
57 String sup = static_cast<ostringstream*>(&(ostringstream() << pAct.maxInertiaRatio))->str(); local
59 s = " Inertia ratio range [" + inf + " to " + sup + "]"
    [all...]
detect_mser.cpp 77 String sup = static_cast<ostringstream*>(&(ostringstream() << pAct.maxArea))->str(); local
78 s = " Area[" + inf + "," + sup + "]";
  /external/ipsec-tools/src/libipsec/
key_debug.c 308 struct sadb_supported *sup = (void *)ext; local
316 len = (PFKEY_UNUNIT64(sup->sadb_supported_len) - sizeof(*sup))
318 alg = (void *)(sup + 1);
pfkey.c 173 setsupportedmap(sup)
174 struct sadb_supported *sup;
178 switch (sup->sadb_supported_exttype) {
193 *ipsup = malloc((size_t)sup->sadb_supported_len);
198 memcpy(*ipsup, sup, (size_t)sup->sadb_supported_len);
741 struct sadb_supported *sup; local
757 sup = (void *)p;
758 if (ep < p + sizeof(*sup) ||
759 PFKEY_EXTLEN(sup) < sizeof(*sup) |
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btConvexShape.cpp 162 btVector3 sup = vertices[dots.maxAxis()]; local
163 return btVector3(sup.getX(),sup.getY(),sup.getZ());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
LayoutDescriptors.java 537 ViewClassInfo sup = info.getSuperClass(); local
538 if (sup != null) {
539 ViewElementDescriptor supDesc = infoDescMap.get(sup);
540 while (supDesc == null && sup != null) {
545 sup = sup.getSuperClass();
546 if (sup != null) {
547 supDesc = infoDescMap.get(sup);
  /external/ipsec-tools/src/racoon/
pfkey.c 2777 int sup, error; local
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/jaxb-inheritance-plugin/1/
jaxb-inheritance-plugin-1.jar 
  /system/bt/bta/hf_client/
bta_hf_client_at.c 1911 int sup = bta_hf_client_cb.scb.at_cb.indicator_lookup[i] == -1 ? 0 : 1; local
    [all...]
  /external/icu/icu4c/source/i18n/
decNumber.c 7224 Unit *up, *sup; \/* work *\/ local
    [all...]
  /prebuilts/tools/common/m2/repository/org/glassfish/jaxb/jaxb-core/2.2.11/
jaxb-core-2.2.11.jar 
  /external/libgdx/extensions/gdx-jnigen/libs/
javaparser-core-2.3.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar 
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
  /prebuilts/tools/linux-x86_64/kythe/extractors/
javac_extractor.jar 
  /prebuilts/tools/linux-x86_64/kythe/indexers/
java_indexer.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/ST4/4.0.8/
ST4-4.0.8.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/ST4/4.0.8/
ST4-4.0.8.jar 
  /prebuilts/sdk/tools/jills/
jill-4.7.BETA.jar 
jill-3.36.CANDIDATE.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar 
  /prebuilts/devtools/tools/lib/
lombok-ast-0.2.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/lombok/lombok-ast/0.2.2/
lombok-ast-0.2.2.jar 

Completed in 1125 milliseconds

1 2