Searched defs:object (Results 76 - 100 of 1059) sorted by relevance

1234567891011>>

/external/autotest/frontend/client/src/autotest/common/
H A DJSONArrayList.java23 public void add(int index, T object) { argument
24 backingArray.set(index, object);
/external/autotest/frontend/client/src/autotest/moblab/rpc/
H A DConnectedDutInfo.java27 public void fromJson(JSONObject object) { argument
28 JSONObject leases = object.get("connected_duts").isObject();
32 JSONObject configuredDuts = object.get("configured_duts").isObject();
H A DJsonRpcEntity.java10 public abstract void fromJson(JSONObject object); argument
14 protected static String getStringFieldOrDefault(JSONObject object, String field, argument
16 JSONValue value = object.get(field);
23 protected static boolean getBooleanFieldOrDefault(JSONObject object, String field, argument
25 JSONValue value = object.get(field);
H A DNetworkInfo.java44 public void fromJson(JSONObject object) { argument
46 if (object != null) {
47 JSONValue serverIpsObject = object.get(JSON_FIELD_SERVER_IPS);
57 JSONValue connectedObject = object.get(JSON_FIELD_IS_CONNECTED);
66 JSONObject object = new JSONObject();
72 object.put(JSON_FIELD_SERVER_IPS, serverIpsArray);
74 object.put(JSON_FIELD_IS_CONNECTED, JSONBoolean.getInstance(connectedToGoogle));
75 return object;
H A DOperationStatus.java40 public void fromJson(JSONObject object) { argument
41 JSONValue value = object.get(OperationStatus.JSON_FIELD_STATUS_OK);
44 value = object.get(OperationStatus.JSON_FIELD_STATUS_DETAILS);
52 JSONObject object = new JSONObject();
53 object.put(JSON_FIELD_STATUS_OK, JSONBoolean.getInstance(ok));
55 object.put(JSON_FIELD_STATUS_DETAILS, new JSONString(details));
57 return object;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DBERApplicationSpecific.java7 * An indefinite-length encoding version of an application specific object.
21 * Create an application specific object with a tagging of explicit/constructed.
23 * @param tag the tag number for this object.
24 * @param object the object to be contained.
28 ASN1Encodable object)
31 this(true, tag, object);
35 * Create an application specific object with the tagging style given by the value of constructed.
37 * @param constructed true if the object is constructed.
38 * @param tag the tag number for this object
26 BERApplicationSpecific( int tag, ASN1Encodable object) argument
41 BERApplicationSpecific( boolean constructed, int tag, ASN1Encodable object) argument
50 getEncoding(boolean explicit, ASN1Encodable object) argument
[all...]
H A DDERApplicationSpecific.java7 * A DER encoding version of an application specific object.
21 * Create an application specific object from the passed in data. This will assume
22 * the data does not represent a constructed object.
24 * @param tag the tag number for this object.
25 * @param octets the encoding of the object's body.
35 * Create an application specific object with a tagging of explicit/constructed.
37 * @param tag the tag number for this object.
38 * @param object the object to be contained.
42 ASN1Encodable object)
40 DERApplicationSpecific( int tag, ASN1Encodable object) argument
55 DERApplicationSpecific( boolean constructed, int tag, ASN1Encodable object) argument
64 getEncoding(boolean explicit, ASN1Encodable object) argument
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DExperiment.java60 @Override public boolean equals(Object object) { argument
61 if (object instanceof Experiment) {
62 Experiment that = (Experiment) object;
H A DVirtualMachine.java35 @Override public boolean equals(Object object) { argument
36 if (object instanceof VirtualMachine) {
37 VirtualMachine that = (VirtualMachine) object;
/external/clang/test/Analysis/
H A Dbuiltin-functions.cpp14 } object; local
15 clang_analyzer_eval(__builtin_object_size(&object.y, 0) == sizeof(object) - sizeof(int)); // expected-warning{{TRUE}}
/external/clang/test/Index/
H A Dcomplete-cxx-inline-methods.cpp22 MyCls *object; member in class:__anon2556::OtherClass
39 // CHECK-CTOR-INIT: MemberRef:{TypedText object}{LeftParen (}{Placeholder args}{RightParen )} (35)
43 // CHECK-CTOR-INIT-2: MemberRef:{TypedText object}{LeftParen (}{Placeholder args}{RightParen )} (35)
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkRefUtil.cpp21 * \brief Vulkan object reference holder utilities.
37 VkPipeline object = 0; local
38 VK_CHECK(vk.createGraphicsPipelines(device, pipelineCache, 1u, pCreateInfo, pAllocator, &object));
39 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator));
48 VkPipeline object = 0; local
49 VK_CHECK(vk.createComputePipelines(device, pipelineCache, 1u, pCreateInfo, pAllocator, &object));
50 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator));
55 VkCommandBuffer object = 0; local
57 VK_CHECK(vk.allocateCommandBuffers(device, pAllocateInfo, &object));
58 return Move<VkCommandBuffer>(check<VkCommandBuffer>(object), Delete
63 VkDescriptorSet object = 0; local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktDrawBufferObjectUtil.hpp49 Buffer (const vk::DeviceInterface &vk, vk::VkDevice device, vk::Move<vk::VkBuffer> object);
53 vk::VkBuffer object (void) const { return *m_object; } function in class:vkt::Draw::Buffer
/external/deqp/modules/gles31/functional/
H A Des31fInfoLogQueryShared.cpp42 glw::GLuint object,
51 (gl.*getInfoLog)(object, logLen, DE_NULL, &buf[0]);
66 (gl.*getInfoLog)(object, logLen+2, &written, &buf[0]);
89 (gl.*getInfoLog)(object, 2, &written, &buf[0]);
106 (gl.*getInfoLog)(object, 1, &written, &buf[0]);
122 (gl.*getInfoLog)(object, 0, &written, &buf[0]);
39 verifyInfoLogQuery(tcu::ResultCollector& result, glu::CallLogWrapper& gl, int logLen, glw::GLuint object, void (glu::CallLogWrapper::* getInfoLog)(glw::GLuint, glw::GLsizei, glw::GLsizei*, glw::GLchar*), const char* getterName) argument
/external/guava/guava/src/com/google/common/base/
H A DPairwiseEquivalence.java60 public boolean equals(@Nullable Object object) { argument
61 if (object instanceof PairwiseEquivalence) {
62 PairwiseEquivalence<?> that = (PairwiseEquivalence<?>) object;
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMapEntry.java46 @Override public boolean equals(@Nullable Object object) { argument
47 if (object instanceof Entry) {
48 Entry<?, ?> that = (Entry<?, ?>) object;
H A DByFunctionOrdering.java49 @Override public boolean equals(@Nullable Object object) { argument
50 if (object == this) {
53 if (object instanceof ByFunctionOrdering) {
54 ByFunctionOrdering<?, ?> that = (ByFunctionOrdering<?, ?>) object;
H A DComparatorOrdering.java41 @Override public boolean equals(@Nullable Object object) { argument
42 if (object == this) {
45 if (object instanceof ComparatorOrdering) {
46 ComparatorOrdering<?> that = (ComparatorOrdering<?>) object;
H A DCompoundOrdering.java51 @Override public boolean equals(Object object) { argument
52 if (object == this) {
55 if (object instanceof CompoundOrdering) {
56 CompoundOrdering<?> that = (CompoundOrdering<?>) object;
H A DForwardingMapEntry.java79 @Override public boolean equals(@Nullable Object object) { argument
80 return delegate().equals(object);
95 protected boolean standardEquals(@Nullable Object object) { argument
96 if (object instanceof Entry) {
97 Entry<?, ?> that = (Entry<?, ?>) object;
H A DForwardingSet.java58 @Override public boolean equals(@Nullable Object object) { argument
59 return object == this || delegate().equals(object);
86 protected boolean standardEquals(@Nullable Object object) { argument
87 return Sets.equalsImpl(this, object);
H A DImmutableMapEntrySet.java45 public boolean contains(@Nullable Object object) { argument
46 if (object instanceof Entry) {
47 Entry<?, ?> entry = (Entry<?, ?>) object;
H A DImmutableMapKeySet.java52 public boolean contains(@Nullable Object object) { argument
53 return map.containsKey(object);
H A DImmutableMapValues.java52 public boolean contains(@Nullable Object object) { argument
53 return object != null && Iterators.contains(iterator(), object);
H A DLexicographicalOrdering.java58 @Override public boolean equals(@Nullable Object object) { argument
59 if (object == this) {
62 if (object instanceof LexicographicalOrdering) {
63 LexicographicalOrdering<?> that = (LexicographicalOrdering<?>) object;

Completed in 374 milliseconds

1234567891011>>