HomeSort by relevance Sort by last modified time
    Searched refs:JSONObject (Results 101 - 125 of 128) sorted by null

1 2 3 45 6

  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
RegionDataConstants.java 20 import org.json.JSONObject;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScript.h 85 void restartFrame(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result);
InspectorInspectorAgent.cpp 160 void InspectorInspectorAgent::inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints)
InspectorWorkerAgent.cpp 95 RefPtr<JSONObject> messageObject = value->asObject();
190 void InspectorWorkerAgent::sendMessageToWorker(ErrorString* error, int workerId, const RefPtr<JSONObject>& message)
InjectedScript.cpp 97 void InjectedScript::restartFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result)
277 RefPtr<JSONObject> rawResult = r.toJSONValue(scriptState())->asObject();
295 RefPtr<JSONObject> rawResult = r.toJSONValue(scriptState())->asObject();
WorkerInspectorController.cpp 66 virtual void sendMessageToFrontend(PassRefPtr<JSONObject> message) OVERRIDE
JSONParser.cpp 407 RefPtr<JSONObject> object = JSONObject::create();
InspectorDOMAgent.cpp 97 static Color parseColor(const RefPtr<JSONObject>* colorObject)
125 static Color parseConfigColor(const String& fieldName, JSONObject* configObject)
127 const RefPtr<JSONObject> colorObject = configObject->getObject(fieldName);
    [all...]
InspectorInputAgent.cpp 205 RefPtr<JSONObject> pointObj;
InspectorPageAgent.cpp 550 RefPtr<JSONObject> scripts = m_state->getObject(PageAgentState::pageAgentScriptsToEvaluateOnLoad);
552 scripts = JSONObject::create();
568 RefPtr<JSONObject> scripts = m_state->getObject(PageAgentState::pageAgentScriptsToEvaluateOnLoad);
    [all...]
InspectorLayerTreeAgent.cpp 410 void InspectorLayerTreeAgent::snapshotCommandLog(ErrorString* errorString, const String& snapshotId, RefPtr<TypeBuilder::Array<JSONObject> >& commandLog)
415 commandLog = TypeBuilder::Array<JSONObject>::runtimeCast(snapshot->snapshotCommandLog());
InspectorCSSAgent.cpp 835 static bool extractRangeComponent(ErrorString* errorString, const RefPtr<JSONObject>& range, const String& component, unsigned& result)
846 static bool jsonRangeToSourceRange(ErrorString* errorString, InspectorStyleSheetBase* inspectorStyleSheet, const RefPtr<JSONObject>& range, SourceRange* sourceRange)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.cpp 141 static bool copyStringProperty(const char* property, const Dictionary& source, JSONObject* destination)
150 static bool copySequenceOfStringProperty(const char* property, const Dictionary& source, JSONObject* destination)
168 RefPtr<JSONObject> jsonObject = JSONObject::create();
170 if (!copyStringProperty("kty", dict, jsonObject.get())) {
175 copyStringProperty("use", dict, jsonObject.get());
176 copySequenceOfStringProperty("key_ops", dict, jsonObject.get());
177 copyStringProperty("alg", dict, jsonObject.get());
181 jsonObject->setBoolean("ext", ext)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
AttentionManagementVerifierActivity.java 39 import org.json.JSONObject;
221 JSONObject payload = new JSONObject(payloadData);
312 JSONObject payload = new JSONObject(payloadData);
402 JSONObject payload = new JSONObject(payloadData);
622 JSONObject payload = new JSONObject(payloadData);
    [all...]
NotificationListenerVerifierActivity.java 30 import org.json.JSONObject;
203 JSONObject payload = new JSONObject(payloadData);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayer.h 60 class JSONObject;
210 PassRefPtr<JSONObject> layerTreeAsJSON(LayerTreeFlags, RenderingContextMap&) const;
GraphicsLayer.cpp 549 PassRefPtr<JSONObject> GraphicsLayer::layerTreeAsJSON(LayerTreeFlags flags, RenderingContextMap& renderingContextMap) const
551 RefPtr<JSONObject> json = adoptRef(new JSONObject);
675 RefPtr<JSONObject> json = layerTreeAsJSON(flags, renderingContextMap);
    [all...]
  /developers/build/prebuilts/gradle/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
MainActivity.java 68 import org.json.JSONObject;
226 public static Question fromJson(JSONObject questionObject, int questionIndex)
260 JSONObject jsonObject = JsonUtils.loadJsonFile(this, QUIZ_JSON_FILE);
261 JSONArray jsonArray = jsonObject.getJSONArray(JsonUtils.JSON_FIELD_QUESTIONS);
263 JSONObject questionObject = jsonArray.getJSONObject(i);
  /developers/samples/android/wearable/wear/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
MainActivity.java 68 import org.json.JSONObject;
226 public static Question fromJson(JSONObject questionObject, int questionIndex)
260 JSONObject jsonObject = JsonUtils.loadJsonFile(this, QUIZ_JSON_FILE);
261 JSONArray jsonArray = jsonObject.getJSONArray(JsonUtils.JSON_FIELD_QUESTIONS);
263 JSONObject questionObject = jsonArray.getJSONObject(i);
  /development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/
MainActivity.java 68 import org.json.JSONObject;
226 public static Question fromJson(JSONObject questionObject, int questionIndex)
260 JSONObject jsonObject = JsonUtils.loadJsonFile(this, QUIZ_JSON_FILE);
261 JSONArray jsonArray = jsonObject.getJSONArray(JsonUtils.JSON_FIELD_QUESTIONS);
263 JSONObject questionObject = jsonArray.getJSONObject(i);
  /external/chromium_org/third_party/WebKit/Source/web/
InspectorClientImpl.cpp 72 void InspectorClientImpl::sendMessageToFrontend(PassRefPtr<JSONObject> message)
  /external/chromium_org/third_party/simplejson/
decoder.py 180 def JSONObject((s, end), encoding, strict, scan_once, object_hook,
395 self.parse_object = JSONObject
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
InspectorIndexedDBAgent.cpp 316 static IDBKey* idbKeyFromInspectorObject(JSONObject* key)
349 RefPtr<JSONObject> object;
362 static IDBKeyRange* idbKeyRangeFromKeyRange(JSONObject* keyRange)
364 RefPtr<JSONObject> lower = keyRange->getObject("lower");
369 RefPtr<JSONObject> upper = keyRange->getObject("upper");
666 void InspectorIndexedDBAgent::requestData(ErrorString* errorString, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, const PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback)
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptDebugServer.h 81 bool setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, ScriptValue* newCallFrames, RefPtr<JSONObject>* result);
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
ContentSecurityPolicy.cpp 674 RefPtr<JSONObject> cspReport = JSONObject::create();
689 RefPtr<JSONObject> reportObject = JSONObject::create();
    [all...]

Completed in 1278 milliseconds

1 2 3 45 6