MCPcopy Create free account
hub / github.com/NativeScript/android / Parse

Method Parse

test-app/runtime/src/main/cpp/JniSignatureParser.cpp:12–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10}
11
12vector<string> JniSignatureParser::Parse() {
13 size_t startIdx = m_signature.find_first_of('(');
14
15 assert(startIdx != string::npos);
16
17 size_t endIdx = m_signature.find_first_of(')');
18
19 assert(endIdx != string::npos);
20
21 vector<string> tokens = ParseParams(startIdx + 1, endIdx);
22
23 return tokens;
24}
25
26vector<string> JniSignatureParser::ParseParams(int stardIdx, int endIdx) {
27 vector<string> tokens;

Callers 2

JsArgConverterMethod · 0.80
JSToJavaConverterMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected