Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yamaguchi1024/e4b0eb2c4b6541d244bd7e1378a13d7f to your computer and use it in GitHub Desktop.
Save yamaguchi1024/e4b0eb2c4b6541d244bd7e1378a13d7f to your computer and use it in GitHub Desktop.
Yukas-MacBook:llvm-project yamaguchi$ git grep ".find(\"=\")"
lld/ELF/Driver.cpp: size_t Pos = Value.find("=");
Yukas-MacBook:llvm-project yamaguchi$ git grep ".split(\"=\")"
clang/include/clang/Basic/Attr.td: Ret.second = Feature.split("=").second.trim();
clang/lib/Frontend/CompilerInvocation.cpp: std::tie(key, val) = configVals[i].split("=");
compiler-rt/test/sanitizer_common/ios_commands/iossim_env.py: (argname, argval) = arg.split("=")
lld/COFF/DriverUtils.cpp: std::tie(X, Y) = E.Name.split("=");
lldb/packages/Python/lldbsuite/test/dotest.py: key_val_entry = keyval.split("=")
lldb/www/python_reference/epydoc.js: var target = target_list[i].split("=");
llvm/lib/Support/SpecialCaseList.cpp: std::pair<StringRef, StringRef> SplitRegexp = SplitLine.second.split("=");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment