Searched refs:String16 (Results 1 - 25 of 53) sorted by relevance

123

/external/v8/src/inspector/
H A Dsearch-util.h15 String16 findSourceURL(const String16& content, bool multiline);
16 String16 findSourceMapURL(const String16& content, bool multiline);
18 searchInTextByLinesImpl(V8InspectorSession*, const String16& text,
19 const String16& query, bool caseSensitive,
H A Dscript-breakpoint.h40 ScriptBreakpoint(String16 script_id, int line_number, int column_number,
41 String16 condition)
47 String16 script_id;
50 String16 condition;
H A Dv8-debugger-script.h52 v8::Local<v8::debug::WasmScript> underlyingScript, String16 id,
53 String16 url, String16 source);
57 const String16& scriptId() const { return m_id; }
58 const String16& url() const { return m_url; }
60 const String16& sourceURL() const;
61 virtual const String16& sourceMappingURL() const = 0;
62 virtual String16 source(v8::Isolate*) const { return m_source; }
63 const String16& hash(v8::Isolate*) const;
72 void setSourceURL(const String16
[all...]
H A Dv8-regex.h21 V8Regex(V8InspectorImpl*, const String16&, bool caseSensitive,
23 int match(const String16&, int startFrom = 0, int* matchLength = 0) const;
25 const String16& errorMessage() const { return m_errorMessage; }
30 String16 m_errorMessage;
H A Dsearch-util.cc16 String16 findMagicComment(const String16& content, const String16& name,
18 DCHECK(name.find("=") == String16::kNotFound);
27 if (pos == String16::kNotFound) return String16();
30 if (pos < 4) return String16();
42 if (closingCommentPos == String16::kNotFound) return String16();
51 String16 matc
[all...]
H A Dstring-16.h19 class String16 { class in namespace:v8_inspector
23 String16() {} function in class:v8_inspector::String16
24 String16(const String16& other) function in class:v8_inspector::String16
26 String16(String16&& other) function in class:v8_inspector::String16
28 String16(const UChar* characters, size_t size) : m_impl(characters, size) {} function in class:v8_inspector::String16
29 String16(const UChar* characters) // NOLINT(runtime/explicit) function in class:v8_inspector::String16
31 String16(const char* characters) // NOLINT(runtime/explicit) function in class:v8_inspector::String16
32 : String16(character
33 String16(const char* characters, size_t size) { function in class:v8_inspector::String16
37 explicit String16(const std::basic_string<UChar>& impl) : m_impl(impl) {} function in class:v8_inspector::String16
[all...]
H A Dinjected-script-native.h25 int bind(v8::Local<v8::Value>, const String16& groupName);
29 void releaseObjectGroup(const String16& groupName);
30 String16 groupName(int objectId) const;
33 void addObjectToGroup(int objectId, const String16& groupName);
38 typedef protocol::HashMap<int, String16> IdToObjectGroupName;
40 typedef protocol::HashMap<String16, std::vector<int>> NameToObjectGroup;
H A Dv8-debugger-agent-impl.h50 int lineNumber, Maybe<String16> optionalURL,
51 Maybe<String16> optionalURLRegex, Maybe<int> optionalColumnNumber,
52 Maybe<String16> optionalCondition, String16*,
57 Maybe<String16> optionalCondition, String16*,
59 Response removeBreakpoint(const String16& breakpointId) override;
63 const String16& scriptId, const String16& query,
73 const String16
[all...]
H A Dv8-stack-trace-impl.h32 Frame(const String16& functionName, const String16& scriptId,
33 const String16& scriptName, int lineNumber, int column = 0);
36 const String16& functionName() const { return m_functionName; }
37 const String16& scriptId() const { return m_scriptId; }
38 const String16& sourceURL() const { return m_scriptName; }
48 String16 m_functionName;
49 String16 m_scriptId;
50 String16 m_scriptName;
59 size_t maxStackSize, const String16
[all...]
H A Dremote-object-id.h23 const String16&);
30 static Response parse(const String16&, std::unique_ptr<RemoteObjectId>*);
42 static Response parse(const String16&, std::unique_ptr<RemoteCallFrameId>*);
47 static String16 serialize(int injectedScriptId, int frameOrdinal);
H A Dwasm-translation.h46 bool TranslateWasmScriptLocationToProtocolLocation(String16* script_id,
55 bool TranslateProtocolLocationToWasmScriptLocation(String16* script_id,
63 void AddFakeScript(const String16& scriptId, TranslatorImpl* translator);
67 std::unordered_map<String16, TranslatorImpl*> fake_scripts_;
H A Dstring-util.h22 using String = v8_inspector::String16;
57 static std::unique_ptr<protocol::Value> parseJSON(const String16& json);
63 v8::Local<v8::String> toV8String(v8::Isolate*, const String16&);
64 v8::Local<v8::String> toV8StringInternalized(v8::Isolate*, const String16&);
68 String16 toProtocolString(v8::Local<v8::String>);
69 String16 toProtocolStringWithTypeCheck(v8::Local<v8::Value>);
70 String16 toString16(const StringView&);
71 StringView toStringView(const String16&);
77 static std::unique_ptr<StringBufferImpl> adopt(String16&);
81 explicit StringBufferImpl(String16
[all...]
H A Dinspected-context.h29 String16 origin() const { return m_origin; }
30 String16 humanReadableName() const { return m_humanReadableName; }
31 String16 auxData() const { return m_auxData; }
51 const String16 m_origin;
52 const String16 m_humanReadableName;
53 const String16 m_auxData;
H A Dv8-runtime-agent-impl.h62 void evaluate(const String16& expression, Maybe<String16> objectGroup,
68 void awaitPromise(const String16& promiseObjectId, Maybe<bool> returnByValue,
72 const String16& objectId, const String16& expression,
78 Response releaseObject(const String16& objectId) override;
80 const String16& objectId, Maybe<bool> ownProperties,
87 Response releaseObjectGroup(const String16& objectGroup) override;
91 Response compileScript(const String16& expression, const String16
[all...]
H A Dv8-console-message.h52 double timestamp, const String16& detailedMessage, const String16& url,
55 const String16& message, int contextId, v8::Local<v8::Value> exception,
59 double timestamp, const String16& message, unsigned revokedExceptionId);
73 V8ConsoleMessage(V8MessageOrigin, double timestamp, const String16& message);
80 void setLocation(const String16& url, unsigned lineNumber,
86 String16 m_message;
87 String16 m_url;
98 String16 m_detailedMessage;
H A Dv8-debugger-script.cc29 String16 calculateHash(const String16& str) {
75 const String16& scriptId,
76 const String16& expectedV8ScriptId) {
80 String16 translatedScriptId = scriptId;
89 const String16& scriptId, const String16& expectedProtocolScriptId) {
92 String16 translatedScriptId = scriptId;
105 : V8DebuggerScript(isolate, String16::fromInteger(script->Id()),
137 String16 sourc
[all...]
H A Dv8-heap-profiler-agent-impl.h39 const String16& heapSnapshotObjectId, Maybe<String16> objectGroup,
42 const String16& inspectedHeapObjectId) override;
43 Response getHeapObjectId(const String16& objectId,
44 String16* heapSnapshotObjectId) override;
H A Dremote-object-id.cc15 RemoteObjectIdBase::parseInjectedScriptId(const String16& objectId) {
31 Response RemoteObjectId::parse(const String16& objectId,
47 Response RemoteCallFrameId::parse(const String16& objectId,
61 String16 RemoteCallFrameId::serialize(int injectedScriptId, int frameOrdinal) {
62 return "{\"ordinal\":" + String16::fromInteger(frameOrdinal) +
63 ",\"injectedScriptId\":" + String16::fromInteger(injectedScriptId) +
H A Dv8-profiler-agent-impl.h49 void consoleProfile(const String16& title);
50 void consoleProfileEnd(const String16& title);
56 String16 nextProfileId();
58 void startProfiling(const String16& title);
60 const String16& title, bool serialize);
71 String16 m_frontendInitiatedProfileId;
H A Dinjected-script.h62 v8::Local<v8::Object>, const String16& groupName, bool ownProperties,
67 void releaseObject(const String16& objectId);
70 v8::Local<v8::Value>, const String16& groupName, bool forceValueType,
74 const String16& groupName,
79 const String16& groupName,
86 String16 objectGroupName(const RemoteObjectId&) const;
87 void releaseObjectGroup(const String16&);
93 const v8::TryCatch&, const String16& groupName, bool generatePreview,
97 const String16& objectGroup, bool returnByValue, bool generatePreview,
150 const String16
[all...]
H A Dstring-util.cc11 v8::Local<v8::String> toV8String(v8::Isolate* isolate, const String16& string) {
21 const String16& string) {
52 String16 toProtocolString(v8::Local<v8::String> value) {
53 if (value.IsEmpty() || value->IsNullOrUndefined()) return String16();
56 return String16(buffer.get(), value->Length());
59 String16 toProtocolStringWithTypeCheck(v8::Local<v8::Value> value) {
60 if (value.IsEmpty() || !value->IsString()) return String16();
64 String16 toString16(const StringView& string) {
65 if (!string.length()) return String16();
67 return String16(reinterpret_cas
[all...]
H A Dstring-16.cc366 String16 String16::fromInteger(int number) {
369 return String16(IntToCString(number, buffer));
373 String16 String16::fromInteger(size_t number) {
381 return String16(buffer);
385 String16 String16::fromDouble(double number) {
388 return String16(DoubleToCString(number, buffer));
392 String16 String1
[all...]
H A Dwasm-translation.cc25 String16 script_id;
28 TransLocation(WasmTranslation* translation, String16 script_id, int line,
70 String16 script_id = String16::fromInteger(script->Id());
146 loc->script_id = String16::fromInteger(script_.Get(isolate)->Id());
152 String16 GetFakeScriptUrl(v8::Isolate* isolate, int func_index) {
154 String16 script_name = toProtocolString(script->Name().ToLocalChecked());
160 size_t digits = String16::fromInteger(numFunctions - 1).length();
161 String16 thisCategory = String16
[all...]
/external/chromium-libpac/src/
H A Dproxy_resolver_v8.h9 #include <utils/String16.h>
26 virtual void AlertMessage(android::String16 message) = 0;
27 virtual void ErrorMessage(android::String16 error) = 0;
60 virtual int GetProxyForURL(const android::String16 spec, const android::String16 host,
61 android::String16* results);
63 virtual int SetPacScript(const android::String16& script_data);
/external/libmojo/mojo/common/
H A Dcommon_custom_types_struct_traits.cc10 bool StructTraits<common::mojom::String16, base::string16>::Read(

Completed in 619 milliseconds

123