Home
last modified time | relevance | path

Searched refs:JSONObject (Results 1 – 25 of 1409) sorted by relevance

12345678910>>...57

/aosp_15_r20/libcore/json/src/test/java/libcore/org/json/
H A DJSONObjectTest.java37 import org.json.JSONObject;
46 JSONObject object = new JSONObject(); in testEmptyObject()
115 JSONObject a = new JSONObject(); in testEqualsAndHashCode()
116 JSONObject b = new JSONObject(); in testEqualsAndHashCode()
124 JSONObject object = new JSONObject(); in testGet()
148 JSONObject object = new JSONObject(); in testPut()
161 object.put("bar", JSONObject.NULL); in testPut()
162 assertSame(JSONObject.NULL, object.get("bar")); in testPut()
166 JSONObject object = new JSONObject(); in testPutNullRemoves()
179 JSONObject object = new JSONObject(); in testPutOpt()
[all …]
/aosp_15_r20/packages/modules/HealthFitness/tests/unittests/src/com/android/server/healthconnect/phr/validations/
DFhirPrimitiveTypeValidatorTest.java45 import org.json.JSONObject;
85 JSONObject jsonObject = in testValidate_r4BooleanValid_true_succeeds()
86 new JSONObject(new ImmunizationBuilder().set(booleanFieldName, true).toJson()); in testValidate_r4BooleanValid_true_succeeds()
95 JSONObject jsonObject = in testValidate_r4BooleanValid_false_succeeds()
96 new JSONObject(new ImmunizationBuilder().set(booleanFieldName, false).toJson()); in testValidate_r4BooleanValid_false_succeeds()
105 JSONObject jsonObject = in testValidate_r4BooleanInvalid_asString_throws()
106 new JSONObject(new ImmunizationBuilder().set(booleanFieldName, "true").toJson()); in testValidate_r4BooleanInvalid_asString_throws()
126 JSONObject jsonObject = in testValidate_r4BooleanInvalid_objectIsJsonNull_throws()
127 new JSONObject( in testValidate_r4BooleanInvalid_objectIsJsonNull_throws()
128 new ImmunizationBuilder().set(booleanFieldName, JSONObject.NULL).toJson()); in testValidate_r4BooleanInvalid_objectIsJsonNull_throws()
[all …]
DFhirResourceValidatorTest.java41 import org.json.JSONObject;
66 JSONObject immunizationJson = new JSONObject(FHIR_DATA_IMMUNIZATION); in testValidateFhirResource_invalidTypeInt_throws()
77 JSONObject immunizationJson = new JSONObject(FHIR_DATA_IMMUNIZATION); in testValidateFhirResource_validResource_succeeds()
89 JSONObject immunizationJson = in testValidateFhirResource_primitiveTypeFieldValueAndExtension_succeeds()
90 new JSONObject( in testValidateFhirResource_primitiveTypeFieldValueAndExtension_succeeds()
93 .set("_status", new JSONObject("{\"id\": \"1234\"}")) in testValidateFhirResource_primitiveTypeFieldValueAndExtension_succeeds()
107 JSONObject immunizationJson = in testValidateFhirResource_onlyRequiredPrimitiveTypeExtensionField_succeeds()
108 new JSONObject( in testValidateFhirResource_onlyRequiredPrimitiveTypeExtensionField_succeeds()
111 .set("_status", new JSONObject("{\"id\": \"1234\"}")) in testValidateFhirResource_onlyRequiredPrimitiveTypeExtensionField_succeeds()
125 JSONObject immunizationJson = in testValidateFhirResource_onlyRequiredPrimitiveTypeValueField_succeeds()
[all …]
/aosp_15_r20/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/src/com/android/adservices/service/measurement/registration/
DFetcherUtilTest.java50 import org.json.JSONObject;
183 JSONObject obj = new JSONObject().put(KEY, unsignedLongString); in extractUnsignedLong_maxValue_success()
191 JSONObject obj = new JSONObject().put(KEY, "-123"); in extractUnsignedLong_negative_returnsEmpty()
197 JSONObject obj = new JSONObject().put(KEY, 123); in extractUnsignedLong_notAString_returnsEmpty()
203 JSONObject obj = new JSONObject().put(KEY, "18446744073709551616"); in extractUnsignedLong_tooLarge_returnsEmpty()
209 JSONObject obj = new JSONObject().put(KEY, "123p"); in extractUnsignedLong_notAnInt_returnsEmpty()
223 assertFalse(FetcherUtil.is64BitInteger(new JSONObject())); in is64BitInteger_various()
237 JSONObject obj = new JSONObject().put(KEY, new JSONArray("[\"1\", \"2\"]")); in extractStringArray_stringArray_passes()
245 JSONObject obj = new JSONObject().put(KEY, new JSONArray("[\"1\", \"2\"]")); in extractStringArray_sizeTooBig_fails()
252 JSONObject obj = new JSONObject().put(KEY, new JSONArray("[\"1\", \"2345\"]")); in extractStringArray_stringTooLong_fails()
[all …]
/aosp_15_r20/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
H A DJsonBuilder.java120 import org.json.JSONObject;
144 return JSONObject.NULL; in build()
167 if (data instanceof JSONObject) { in build()
394 private static JSONObject buildJsonAudioState(CallAudioState data) in buildJsonAudioState()
396 JSONObject state = new JSONObject(); in buildJsonAudioState()
404 JSONObject dm = new JSONObject(); in buildDisplayMetrics()
426 private static JSONObject buildJsonAddress(Address address) in buildJsonAddress()
428 JSONObject result = new JSONObject(); in buildJsonAddress()
450 private static JSONObject buildJsonBleAdvertiseSettings( in buildJsonBleAdvertiseSettings()
452 JSONObject result = new JSONObject(); in buildJsonBleAdvertiseSettings()
[all …]
H A DJsonRpcResult.java23 import org.json.JSONObject;
44 public static JSONObject result(Object id, Object data) throws JSONException { in result()
45 JSONObject response = new JSONObject(); in result()
48 response.put("error", JSONObject.NULL); in result()
60 public static JSONObject error(Object id, Object message) throws JSONException { in error()
61 JSONObject response = new JSONObject(); in error()
63 id = JSONObject.NULL; in error()
66 response.put("result", JSONObject.NULL); in error()
79 public static JSONObject error(Object id, Sl4aException sl4aException) throws JSONException { in error()
80 JSONObject response = new JSONObject(); in error()
[all …]
/aosp_15_r20/packages/modules/AdServices/adservices/tests/unittest/fixtures/java/com/android/adservices/service/customaudience/
DCustomAudienceUpdatableDataFixture.java45 import org.json.JSONObject;
86 public static JSONObject getMalformedJsonObject() throws JSONException { in getMalformedJsonObject()
87 JSONObject jsonResponse = new JSONObject(); in getMalformedJsonObject()
102 public static JSONObject getDeeperMalformedJsonObject() throws JSONException { in getDeeperMalformedJsonObject()
103 JSONObject jsonResponse = new JSONObject(); in getDeeperMalformedJsonObject()
107 JSONObject trustedBiddingDataObject = new JSONObject(); in getDeeperMalformedJsonObject()
113 JSONObject adObject0 = new JSONObject(); in getDeeperMalformedJsonObject()
117 JSONObject adObject1 = new JSONObject(); in getDeeperMalformedJsonObject()
130 public static JSONObject getMalformedNullJsonObject() throws JSONException { in getMalformedNullJsonObject()
131 JSONObject jsonResponse = new JSONObject(); in getMalformedNullJsonObject()
[all …]
DCustomAudienceBlobFixture.java49 import org.json.JSONObject;
90 public static JSONObject asJSONObject( in asJSONObject()
103 JSONObject json = new JSONObject(); in asJSONObject()
125 public static JSONObject addOwner(JSONObject json, String owner, boolean shouldAddHarmlessJunk) in addOwner()
139 public static JSONObject addBuyer( in addBuyer()
140 JSONObject json, AdTechIdentifier adTechIdentifier, boolean shouldAddHarmlessJunk) in addBuyer()
155 public static JSONObject addName(JSONObject json, String name, boolean shouldAddHarmlessJunk) in addName()
169 public static JSONObject addActivationTime( in addActivationTime()
170 JSONObject json, Instant activationTime, boolean shouldAddHarmlessJunk) in addActivationTime()
188 public static JSONObject addExpirationTime( in addExpirationTime()
[all …]
/aosp_15_r20/packages/modules/AdServices/adservices/tests/unittest/service-core/protectedaudience/src/com/android/adservices/service/customaudience/
DScheduleCustomAudienceUpdateTestUtils.java60 import org.json.JSONObject;
137 public static JSONObject getPartialCustomAudience_1() throws JSONException { in getPartialCustomAudience_1()
142 public static JSONObject getPartialCustomAudience_2() throws JSONException { in getPartialCustomAudience_2()
152 public static JSONObject getScheduleRequest_1() throws JSONException { in getScheduleRequest_1()
162 public static JSONObject getScheduleRequest_2() throws JSONException { in getScheduleRequest_2()
168 public static JSONObject createJsonResponsePayload( in createJsonResponsePayload()
177 JSONObject responseJson = new JSONObject(); in createJsonResponsePayload()
181 JSONObject generatedCa = in createJsonResponsePayload()
217 public static JSONObject createJsonResponsePayloadWithInvalidExpirationTime( in createJsonResponsePayloadWithInvalidExpirationTime()
221 JSONObject responseJson = new JSONObject(); in createJsonResponsePayloadWithInvalidExpirationTime()
[all …]
DAdditionalScheduleRequestsEnabledStrategyHelperTest.java72 import org.json.JSONObject;
107 JSONObject scheduleRequest = in testValidateAndConvertScheduleRequest_Success()
135 JSONObject scheduleRequest = in testValidateAndConvertScheduleRequest_MissingUpdateUri_ThrowsException()
155 JSONObject scheduleRequest = in testValidateAndConvertScheduleRequest_InvalidMinDelay_ThrowsException()
175 JSONObject scheduleRequest = in testValidateAndConvertScheduleRequest_NullHost_ThrowsException()
206 JSONObject scheduleRequest = in testValidateAndConvertScheduleRequest_EnrollmentCheckEnabled_Success()
241 JSONObject scheduleRequest = in testValidateAndConvertScheduleRequest_EnrollmentCheckEnabled_NotEnrolled_ThrowsException()
264 JSONObject scheduleRequest_1 = getScheduleRequest_1(); in testExtractScheduleRequestsFromResponse_Success()
265 JSONObject scheduleRequest_2 = getScheduleRequest_2(); in testExtractScheduleRequestsFromResponse_Success()
269 JSONObject updateResponseJson = in testExtractScheduleRequestsFromResponse_Success()
[all …]
/aosp_15_r20/frameworks/base/services/tests/servicestests/src/com/android/server/signedconfig/
H A DSignedConfigTest.java33 import org.json.JSONObject;
69 JSONObject json = new JSONObject("{\"min_sdk\":2, \"max_sdk\": 3, \"values\": {}}"); in testParsePerSdkConfigSdkMinMax()
78 JSONObject json = new JSONObject("{\"max_sdk\": 3, \"values\": {}}"); in testParsePerSdkConfigNoMinSdk()
89 JSONObject json = new JSONObject("{\"min_sdk\": 1, \"values\": {}}"); in testParsePerSdkConfigNoMaxSdk()
100 JSONObject json = new JSONObject("{\"min_sdk\": 1, \"max_sdk\": 3}"); in testParsePerSdkConfigNoValues()
111 JSONObject json = new JSONObject("{\"min_sdk\":null, \"max_sdk\": 3, \"values\": {}}"); in testParsePerSdkConfigSdkNullMinSdk()
122 JSONObject json = new JSONObject("{\"min_sdk\":1, \"max_sdk\": null, \"values\": {}}"); in testParsePerSdkConfigSdkNullMaxSdk()
133 JSONObject json = new JSONObject("{\"min_sdk\": 1, \"max_sdk\": 3, \"values\": null}"); in testParsePerSdkConfigNullValues()
145 JSONObject json = new JSONObject("{\"min_sdk\": 1, \"max_sdk\": 3, \"values\": {}}"); in testParsePerSdkConfigZeroValues()
154 JSONObject json = new JSONObject( in testParsePerSdkConfigSingleKey()
[all …]
/aosp_15_r20/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DAfcServerResponseTest.java23 import org.json.JSONObject;
46 private JSONObject buildSuccessfulSpectrumInquiryResponse() { in buildSuccessfulSpectrumInquiryResponse()
47 JSONObject availableSpectrumInquiryResponse = new JSONObject(); in buildSuccessfulSpectrumInquiryResponse()
55 availableSpectrumInquiryResponse.put("response", new JSONObject()); in buildSuccessfulSpectrumInquiryResponse()
73 JSONObject frequencyJSON1 = new JSONObject(); in buildAvailableFrequencyInfoArray()
74 JSONObject frequencyJSON2 = new JSONObject(); in buildAvailableFrequencyInfoArray()
75 JSONObject frequencyJSON3 = new JSONObject(); in buildAvailableFrequencyInfoArray()
76 JSONObject frequencyRangeJSON1 = new JSONObject(); in buildAvailableFrequencyInfoArray()
77 JSONObject frequencyRangeJSON2 = new JSONObject(); in buildAvailableFrequencyInfoArray()
78 JSONObject frequencyRangeJSON3 = new JSONObject(); in buildAvailableFrequencyInfoArray()
[all …]
/aosp_15_r20/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/src/com/android/adservices/service/measurement/
DTriggerTest.java44 import org.json.JSONObject;
107 JSONObject aggregateTriggerData1 = new JSONObject(); in testEqualsPass()
110 JSONObject aggregateTriggerData2 = new JSONObject(); in testEqualsPass()
115 JSONObject values = new JSONObject(); in testEqualsPass()
118 JSONObject adtechBitMapping = new JSONObject(); in testEqualsPass()
237 JSONObject aggregateTriggerData1 = new JSONObject(); in testEqualsFail()
242 JSONObject aggregateTriggerData2 = new JSONObject(); in testEqualsFail()
251 JSONObject values1 = new JSONObject(); in testEqualsFail()
253 JSONObject values2 = new JSONObject(); in testEqualsFail()
274 JSONObject attributionConfig1 = new JSONObject(); in testEqualsFail()
[all …]
DE2EAbstractTest.java67 import org.json.JSONObject;
251 public ParamsProvider(JSONObject json) throws JSONException { in ParamsProvider()
310 public static String getFirstUrl(JSONObject registrationObj) in getFirstUrl()
319 public static boolean hasArDebugPermission(JSONObject obj) throws JSONException { in hasArDebugPermission()
320 JSONObject urlToResponse = in hasArDebugPermission()
327 public static boolean hasAdIdPermission(JSONObject obj) throws JSONException { in hasAdIdPermission()
328 JSONObject urlToResponse = in hasAdIdPermission()
336 JSONObject obj) throws JSONException { in getUriToResponseHeadersMap()
342 JSONObject obj, @Nullable InteropTestReader interopTestReader) throws JSONException { in getUriToResponseHeadersMap()
348 JSONObject urlToResponse = uriToResArray.getJSONObject(i); in getUriToResponseHeadersMap()
[all …]
/aosp_15_r20/external/mobly-snippet-lib/third_party/sl4a/src/main/java/com/google/android/mobly/snippet/rpc/
H A DJsonRpcResult.java22 import org.json.JSONObject;
35 public static JSONObject empty(int id) throws JSONException { in empty()
36 JSONObject json = new JSONObject(); in empty()
38 json.put("result", JSONObject.NULL); in empty()
39 json.put("callback", JSONObject.NULL); in empty()
40 json.put("error", JSONObject.NULL); in empty()
44 public static JSONObject result(int id, Object data) throws JSONException { in result()
45 JSONObject json = new JSONObject(); in result()
48 json.put("callback", JSONObject.NULL); in result()
49 json.put("error", JSONObject.NULL); in result()
[all …]
/aosp_15_r20/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/src/com/android/adservices/service/measurement/aggregation/
DAggregateDebugReportingTest.java28 import org.json.JSONObject;
83 JSONObject obj = new JSONObject(); in buildFromJson_success()
87 JSONObject dataObj = new JSONObject(); in buildFromJson_success()
115 JSONObject obj = new JSONObject(); in buildFromJson_nullKeyPiece()
119 JSONObject dataObj = new JSONObject(); in buildFromJson_nullKeyPiece()
145 JSONObject obj = new JSONObject(); in buildFromJson_nullBudget()
149 JSONObject dataObj = new JSONObject(); in buildFromJson_nullBudget()
175 JSONObject obj = new JSONObject(); in buildFromJson_nullAggregationCoordinatorOrigin()
179 JSONObject dataObj = new JSONObject(); in buildFromJson_nullAggregationCoordinatorOrigin()
204 JSONObject obj = new JSONObject(); in buildFromJson_nullDebugData()
[all …]
DAggregatableAttributionTriggerTest.java34 import org.json.JSONObject;
130 JSONObject jsonObj1Values = new JSONObject(); in createExampleWithValueConfigs()
134 JSONObject filterMap = new JSONObject(); in createExampleWithValueConfigs()
141 JSONObject jsonObj = new JSONObject(); in createExampleWithValueConfigs()
217 JSONObject filterMap1 = new JSONObject(); in testGetNamedBudgets()
221 JSONObject budgetObj1 = new JSONObject(); in testGetNamedBudgets()
227 JSONObject filterMap2 = new JSONObject(); in testGetNamedBudgets()
231 JSONObject budgetObj2 = new JSONObject(); in testGetNamedBudgets()
656 JSONObject budgetObj1 = new JSONObject(); in testExtractNamedBudget_bothNamedBudgetsHaveMatchingFilters()
658 JSONObject filterMap1 = new JSONObject(); in testExtractNamedBudget_bothNamedBudgetsHaveMatchingFilters()
[all …]
DAggregatableValuesConfigTest.java28 import org.json.JSONObject;
94 JSONObject jsonObj1Values = new JSONObject(); in testHashCode_notEquals()
97 JSONObject jsonObject = new JSONObject().put("values", jsonObj1Values); in testHashCode_notEquals()
116 JSONObject values = new JSONObject(); in createAggregatableValuesConfigWithoutFilteringId()
120 JSONObject jsonObj = new JSONObject(); in createAggregatableValuesConfigWithoutFilteringId()
129 JSONObject campaignCountsValue = new JSONObject(); in createAggregatableValuesConfigWithFilteringId()
134 JSONObject values = new JSONObject(); in createAggregatableValuesConfigWithFilteringId()
138 JSONObject jsonObj = new JSONObject(); in createAggregatableValuesConfigWithFilteringId()
145 private JSONObject createFilters() throws Exception { in createFilters()
146 JSONObject filterMapJson = new JSONObject(); in createFilters()
[all …]
/aosp_15_r20/external/autotest/frontend/client/src/autotest/common/table/
H A DSelectionManager.java8 import com.google.gwt.json.client.JSONObject;
29 private Set<JSONObject> selectedObjects = new JSONObjectSet<JSONObject>();
36 public void onAdd(Collection<JSONObject> objects); in onAdd()
37 public void onRemove(Collection<JSONObject> objects); in onRemove()
41 public boolean isRowSelectable(JSONObject row); in isRowSelectable()
55 JSONObject row = attachedTable.getRow(i); in refreshSelection()
68 private boolean isSelectable(JSONObject row) { in isSelectable()
75 public void selectObject(JSONObject object) { in selectObject()
79 public void selectObjects(Collection<? extends JSONObject> objects) { in selectObjects()
87 public void deselectObject(JSONObject object) { in deselectObject()
[all …]
/aosp_15_r20/tools/tradefederation/core/src/com/android/tradefed/util/
DSubprocessEventHelper.java32 import org.json.JSONObject;
105 public TestRunStartedEventInfo(JSONObject jsonObject) throws JSONException { in TestRunStartedEventInfo()
114 JSONObject tags = new JSONObject(); in toString()
150 public TestRunFailedEventInfo(JSONObject jsonObject) throws JSONException { in TestRunFailedEventInfo()
158 JSONObject tags = new JSONObject(); in toString()
193 public TestRunEndedEventInfo(JSONObject jsonObject) throws JSONException { in TestRunEndedEventInfo()
206 JSONObject tags = null; in toString()
209 tags = new JSONObject(mRunMetrics); in toString()
211 tags = new JSONObject(); in toString()
243 public InvocationFailedEventInfo(JSONObject jsonObject) throws JSONException { in InvocationFailedEventInfo()
[all …]
/aosp_15_r20/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
H A DTelephonyEvents.java31 import org.json.JSONObject;
57 public JSONObject toJSON() throws JSONException { in toJSON()
58 JSONObject callState = new JSONObject(); in toJSON()
106 public JSONObject toJSON() throws JSONException { in toJSON()
107 JSONObject preciseCallState = new JSONObject(); in toJSON()
148 public JSONObject toJSON() throws JSONException { in toJSON()
149 JSONObject dataConnectionRealTimeInfo = new JSONObject(); in toJSON()
192 public JSONObject toJSON() throws JSONException { in toJSON()
193 JSONObject dataConnectionState = new JSONObject(); in toJSON()
237 public JSONObject toJSON() throws JSONException { in toJSON()
[all …]
/aosp_15_r20/packages/modules/AdServices/adservices/tests/unittest/service-core/protectedaudience/src/com/android/adservices/service/signals/updateprocessors/
DAppendTest.java46 import org.json.JSONObject;
85 JSONObject appendJson = new JSONObject(); in testAppendSingle()
89 JSONObject updatesJson = new JSONObject(); in testAppendSingle()
107 JSONObject appendJson = new JSONObject(); in testAppendMultipleValues()
111 JSONObject updatesJson = new JSONObject(); in testAppendMultipleValues()
134 JSONObject appendJson1 = new JSONObject(); in testAppendMultipleKeys()
138 JSONObject appendJson2 = new JSONObject(); in testAppendMultipleKeys()
142 JSONObject updatesJson = new JSONObject(); in testAppendMultipleKeys()
163 JSONObject appendJson = new JSONObject(); in testOverwriteExisting()
167 JSONObject updatesJson = new JSONObject(); in testOverwriteExisting()
[all …]
/aosp_15_r20/external/autotest/frontend/client/src/autotest/afe/
H A DAfeUtils.java16 import com.google.gwt.json.client.JSONObject;
39 public static String formatStatusCounts(JSONObject counts, String joinWith) { in formatStatusCounts()
65 JSONObject label = labels.get(i).isObject(); in getFilteredLabelStrings()
98 public static JSONString getLockedText(JSONObject host) { in getLockedText()
103 public static void abortHostQueueEntries(Collection<JSONObject> entries, in abortHostQueueEntries()
111 Set<JSONObject> synchronousEntries = new JSONObjectSet<JSONObject>(); in abortHostQueueEntries()
112 for (JSONObject entry : entries) { in abortHostQueueEntries()
113 JSONObject job = entry.get("job").isObject(); in abortHostQueueEntries()
137 JSONObject params = new JSONObject(); in abortHostQueueEntries()
161 JSONObject params = new JSONObject(); in abortSpecialTasks()
[all …]
H A DHostSelector.java19 import com.google.gwt.json.client.JSONObject;
65 private ArrayDataSource<JSONObject> selectedHostData =
66 new ArrayDataSource<JSONObject>(new String[] {"hostname"});
100 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) { in initialize()
108 public void onAdd(Collection<JSONObject> objects) { in initialize()
109 for (JSONObject row : objects) { in initialize()
115 public void onRemove(Collection<JSONObject> objects) { in initialize()
116 for (JSONObject row : objects) { in initialize()
124 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) { in initialize()
163 JSONObject params = new JSONObject(); in setSelectedHostnames()
[all …]
/aosp_15_r20/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/src/com/android/adservices/service/measurement/attribution/
DXnaSourceCreatorTest.java41 import org.json.JSONObject;
78 Collections.singletonList(new JSONObject(buildMatchingFilterData(false)))); in generateDerivedSources_withVarietyOfSources_filtersAndGeneratesSources()
87 new JSONObject(buildMatchingFilterData(false))) in generateDerivedSources_withVarietyOfSources_filtersAndGeneratesSources()
103 new JSONObject( in generateDerivedSources_withVarietyOfSources_filtersAndGeneratesSources()
117 new JSONObject(buildMatchingFilterData(false))) in generateDerivedSources_withVarietyOfSources_filtersAndGeneratesSources()
139 JSONObject aggregatableSource = new JSONObject(); in generateDerivedSources_withVarietyOfSources_filtersAndGeneratesSources()
158 JSONObject derivedAggregatableSource1 = new JSONObject(); in generateDerivedSources_withVarietyOfSources_filtersAndGeneratesSources()
196 JSONObject derivedAggregatableSource2 = new JSONObject(); in generateDerivedSources_withVarietyOfSources_filtersAndGeneratesSources()
250 .setAggregateSource(new JSONObject().toString()) in generateDerivedSources_withVarietyOfSources_filtersAndGeneratesSources()
315 Collections.singletonList(new JSONObject(buildMatchingFilterData(false)))); in generateDerivedSources_sharedDebugKeyDisabled_doesntAddDebugKeyToDerivedSource()
[all …]

12345678910>>...57