HomeSort by relevance Sort by last modified time
    Searched full:objects (Results 76 - 100 of 21490) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/tools/common/jfreechart/
PREBUILT 1 The objects in this prebuilt directory can be rebuilt
  /prebuilts/tools/common/kxml2-tools/
PREBUILT 1 The objects in this prebuilt directory can be rebuilt
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
PREBUILT 1 The objects in this prebuilt directory can be rebuilt
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
PREBUILT 1 The objects in this prebuilt directory can be rebuilt
  /prebuilts/tools/common/m2/repository/jfree/jfreechart-swt/1.0.9/
PREBUILT 1 The objects in this prebuilt directory can be rebuilt
  /prebuilts/tools/common/netbeans-visual/
PREBUILT 1 The objects in this prebuilt directory can be rebuilt
  /prebuilts/tools/darwin-x86/swt/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
  /prebuilts/tools/darwin-x86_64/swt/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
  /prebuilts/tools/linux-x86/swt/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
  /prebuilts/tools/linux-x86_64/swt/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
  /prebuilts/tools/windows/swt/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
  /prebuilts/tools/windows-x86_64/swt/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
  /external/guava/guava-tests/test/com/google/common/base/
ToStringHelperTest.java 29 * Tests for {@link Objects#toStringHelper(Object)}.
38 String toTest = Objects.toStringHelper(this).toString();
43 String toTest = Objects.toStringHelper(this).toString();
49 String toTest = Objects.toStringHelper(new TestClass()).toString();
54 String toTest = Objects.toStringHelper(new TestClass()).toString();
60 String toTest = Objects.toStringHelper(new Object() {}).toString();
65 String toTest = Objects.toStringHelper(new Object() {}).toString();
71 String toTest = Objects.toStringHelper(TestClass.class).toString();
76 String toTest = Objects.toStringHelper(TestClass.class).toString();
81 String toTest = Objects.toStringHelper("FooBar").toString()
    [all...]
  /external/robolectric-shadows/processor/src/test/resources/org/robolectric/
Robolectric_InnerClassCollision.java 3 import com.example.objects.Dummy;
4 import com.example.objects.OuterDummy;
5 import com.example.objects.UniqueDummy;
6 import com.example.objects.UniqueDummy.UniqueInnerDummy;
23 SHADOW_MAP.put("com.example.objects.Dummy", "org.robolectric.annotation.processing.shadows.ShadowDummy");
24 SHADOW_MAP.put("com.example.objects.OuterDummy", "org.robolectric.annotation.processing.shadows.ShadowOuterDummy");
25 SHADOW_MAP.put("com.example.objects.OuterDummy.InnerDummy", "org.robolectric.annotation.processing.shadows.ShadowOuterDummy$ShadowInnerDummy");
26 SHADOW_MAP.put("com.example.objects.UniqueDummy", "org.robolectric.annotation.processing.shadows.ShadowUniqueDummy");
27 SHADOW_MAP.put("com.example.objects.UniqueDummy.InnerDummy", "org.robolectric.annotation.processing.shadows.ShadowUniqueDummy$ShadowInnerDummy");
28 SHADOW_MAP.put("com.example.objects.UniqueDummy.UniqueInnerDummy", "org.robolectric.annotation.processing.shadows.ShadowUniqueDummy$Sh (…)
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
cref.cc 72 // A list of input objects.
73 typedef std::vector<Object*> Objects;
80 // List of objects included from the archive.
81 Objects* objects; member in struct:gold::Cref_inputs::Archive_info
86 // A mapping from the name of an archive to the list of objects in
91 // symbols to lists of objects. The symbols are sorted
101 typedef std::map<const Symbol*, Objects*, Cref_table_compare> Cref_table;
103 // Report symbol counts for a list of Objects.
105 print_objects_symbol_counts(const Symbol_table*, FILE*, const Objects*) const
302 const Objects* objects = pc->second; local
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/
relay_device_controller.py 26 """Creates RelayDevice controller objects.
37 A list of RelayDevice objects.
46 """Creates RelayDevice controller objects from an external config file.
52 A list of RelayDevice objects.
59 """Creates RelayDevice controller objects from a dictionary.
65 A list of RelayDevice objects.
77 """Cleans up RelayDevice objects.
80 relay_devices: A list of AndroidDevice objects.
88 """Get information on a list of RelayDevice objects.
91 relay_devices: A list of RelayDevice objects
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
formatter_unicode.c 8 #include "../Objects/stringlib/unicodedefs.h"
16 #include "../Objects/stringlib/formatter.h"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
formatter_unicode.c 8 #include "../Objects/stringlib/unicodedefs.h"
16 #include "../Objects/stringlib/formatter.h"
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
InMemoryRepresentable.java 6 * Interface implemented by objects that can be converted from streaming to in-memory objects.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemObjectParser.java 6 * Base interface for parsers to convert PEM objects into specific objects.
  /external/python/cpython2/Python/
formatter_unicode.c 8 #include "../Objects/stringlib/unicodedefs.h"
16 #include "../Objects/stringlib/formatter.h"
  /external/python/cpython3/Include/
rangeobject.h 14 Range objects behave like the corresponding tuple objects except that
  /external/robolectric-shadows/processor/src/test/resources/org/robolectric/annotation/processing/shadows/
ShadowRealObjectWithCorrectAnything.java 6 import com.example.objects.Dummy;
9 className="com.example.objects.Dummy"
ShadowRealObjectWithNestedClassName.java 6 import com.example.objects.OuterDummy;
9 className="com.example.objects.OuterDummy$InnerDummy")

Completed in 428 milliseconds

1 2 34 5 6 7 8 91011>>