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

1 2 3

  /external/python/httplib2/
libhttplib2.tex 210 \subsection{Http Objects}
211 \label{http-objects}
215 Http objects have the following methods:
285 those error conditions will be turned into \class{Response} objects
298 \subsection{Cache Objects}
299 \label{cache-objects}
324 \subsection{Response Objects}
325 \label{response-objects}
329 Response objects are derived from \class{dict} and map
362 the request was sent to. All Response objects contain this key value
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
LeakDetector.cpp 25 static ManagedStatic<LeakDetectorImpl<void> > Objects;
28 Objects->clear();
34 Objects->addGarbage(Object);
44 Objects->removeGarbage(Object);
57 Objects->setName("GENERIC");
61 if (Objects->hasGarbage(Message) |
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
ObjectsTest.java 24 * Tests for {@link Objects}.
32 assertTrue(Objects.equal(1, 1));
33 assertTrue(Objects.equal(null, null));
35 // test distinct string objects
38 assertTrue(Objects.equal(s1, s2));
40 assertFalse(Objects.equal(s1, null));
41 assertFalse(Objects.equal(null, s1));
42 assertFalse(Objects.equal("foo", "bar"));
43 assertFalse(Objects.equal("1", 1));
47 int h1 = Objects.hashCode(1, "two", 3.0)
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
ObjectsTest.java 26 * Tests for {@link Objects}.
34 assertTrue(Objects.equal(1, 1));
35 assertTrue(Objects.equal(null, null));
37 // test distinct string objects
40 assertTrue(Objects.equal(s1, s2));
42 assertFalse(Objects.equal(s1, null));
43 assertFalse(Objects.equal(null, s1));
44 assertFalse(Objects.equal("foo", "bar"));
45 assertFalse(Objects.equal("1", 1));
49 int h1 = Objects.hashCode(1, "two", 3.0)
    [all...]
  /external/conscrypt/libcore-stub/src/main/java/libcore/util/
Objects.java 23 public final class Objects {
24 private Objects() {}
  /external/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.h 73 std::map<SymbolDesc, StringRef> Objects;
Symbolize.cpp 388 ObjectPair Objects = ObjectsOrErr.get();
393 if (auto CoffObject = dyn_cast<COFFObjectFile>(Objects.first)) {
401 Objects.first->getFileName(), Session)) {
410 Context.reset(new DWARFContextInMemory(*Objects.second));
413 SymbolizableObjectFile::create(Objects.first, std::move(Context));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.h 80 std::map<SymbolDesc, StringRef> Objects;
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
CodeGenHwModes.cpp 34 std::vector<Record*> Objects = R->getValueAsListOfDefs("Objects");
35 if (Modes.size() != Objects.size()) {
37 " derived from HwModeSelect: the lists Modes and Objects should "
43 Items.push_back(std::make_pair(ModeId, Objects[i]));
  /external/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp 106 for (auto &ObjForArch : Fat->objects()) {
160 std::vector<std::string> Objects;
163 Objects.insert(Objects.end(), Objs.begin(), Objs.end());
166 std::for_each(Objects.begin(), Objects.end(), DumpInput);
  /external/guava/guava/src/com/google/common/base/
Objects.java 33 * {@code Object} methods with {@code Objects}</a>.
39 public final class Objects {
40 private Objects() {}
43 * Determines whether two possibly-null objects are equal. Returns:
52 * <p>This assumes that any non-null objects passed to this function conform
56 * deprecated; use {@link java.util.Objects#equals} instead.
74 * return Objects.hashCode(getX(), getY(), getZ());
81 * deprecated; use {@link java.util.Objects#hash} instead.
83 public static int hashCode(@Nullable Object... objects) {
84 return Arrays.hashCode(objects);
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
GeneralRangeTest.java 21 import com.google.common.base.Objects;
81 assertEquals(Objects.equal(i, j), range.contains(j));
  /external/guava/guava-tests/test/com/google/common/collect/
GeneralRangeTest.java 22 import com.google.common.base.Objects;
83 assertEquals(Objects.equal(i, j), range.contains(j));
  /external/llvm/include/llvm/ExecutionEngine/Orc/
IRCompileLayer.h 53 /// set of objects to the base layer along with the memory manager and
63 Objects;
79 Objects.push_back(std::move(Object));
83 BaseLayer.addObjectSet(std::move(Objects), std::move(MemMgr),
ObjectLinkingLayer.h 29 /// @brief Holds a set of objects to be allocated/linked as a unit in the JIT.
31 /// An instance of this class will be created for each set of objects added
70 /// @brief Handle to a set of loaded objects.
75 /// @brief Default (no-op) action to perform when loading objects.
87 /// symbols queried. All objects added to this layer can see each other's
102 ConcreteLinkedObjectSet(ObjSetT Objects, MemoryManagerPtrT MemMgr,
107 PFC(llvm::make_unique<PreFinalizeContents>(std::move(Objects),
111 buildInitialSymbolTable(PFC->Objects);
125 PFC->Finalizer(PFC->Handle, RTDyld, std::move(PFC->Objects),
155 void buildInitialSymbolTable(const ObjSetT &Objects) {
    [all...]
  /external/testng/src/main/java/org/testng/collections/
Objects.java 8 public final class Objects {
10 private Objects() {}
  /external/llvm/tools/dsymutil/
DebugMap.h 58 /// for (const auto &DMO: DM->objects()) {
71 ObjectContainer Objects;
85 iterator_range<const_iterator> objects() const { function in class:llvm::dsymutil::DebugMap
89 const_iterator begin() const { return Objects.begin(); }
91 const_iterator end() const { return Objects.end(); }
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
BinaryHolder.h 46 /// Base class shared by cached entries, representing objects and archives.
68 Result.reserve(Objects.size());
69 for (auto &Object : Objects) {
92 std::vector<std::unique_ptr<object::ObjectFile>> Objects;
127 /// Cache of static archives. Objects that are part of a static archive are
132 /// Object entries for objects that are not in a static archive.
MachODebugMapParser.cpp 332 auto Objects = ObjectEntry->getObjectsAs<MachOObjectFile>();
333 if (!Objects) {
334 auto Err = Objects.takeError();
341 for (const auto *Object : *Objects)
357 auto Objects = ObjectEntry->getObjectsAs<MachOObjectFile>();
358 if (!Objects) {
363 for (const auto *Object : *Objects)
  /build/soong/cc/
builder.go 281 type Objects struct {
288 func (a Objects) Copy() Objects {
289 return Objects{
297 func (a Objects) Append(b Objects) Objects {
298 return Objects{
308 flags builderFlags, pathDeps android.Paths, cFlagsDeps android.Paths) Objects {
493 return Objects{
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp 476 for (auto &ObjForArch : Fat->objects()) {
606 std::vector<std::string> Objects;
609 Objects.insert(Objects.end(), Objs.begin(), Objs.end());
614 if (!std::all_of(Objects.begin(), Objects.end(), [&](std::string Object) {
619 for (auto Object : Objects)
622 for (auto Object : Objects)
  /external/syzkaller/vendor/cloud.google.com/go/storage/
bucket.go 106 // This controls who can list, create or overwrite the objects in a bucket.
113 // These ACLs are applied to newly created objects in this bucket that do not have a defined ACL.
208 // apply to new objects when no object ACL is provided.
218 // how objects in the bucket are stored and determines the SLA
238 // Lifecycle is the lifecycle configuration for objects in the bucket.
242 // Lifecycle is the lifecycle configuration for objects in the bucket.
252 // objects. Takes precendence over SetStorageClass actions.
256 // objects.
276 // Type is the type of action to take on matching objects.
278 // Acceptable values are "Delete" to delete matching objects an
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStorePendingTest.java 48 import com.google.common.base.Objects;
210 assertFalse(Objects.equal(rawFile1, rawFile2));
  /external/guava/guava/src/com/google/common/collect/
AbstractBiMap.java 25 import com.google.common.base.Objects;
123 if (containedKey && Objects.equal(value, get(key))) {
307 if (Objects.equal(value, getValue())) {
313 checkState(Objects.equal(value, get(getKey())),
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractBiMap.java 24 import com.google.common.base.Objects;
119 if (containedKey && Objects.equal(value, get(key))) {
303 if (Objects.equal(value, getValue())) {
309 checkState(Objects.equal(value, get(getKey())),

Completed in 2103 milliseconds

1 2 3