Home
last modified time | relevance | path

Searched refs:ruby (Results 1 – 25 of 120) sorted by relevance

12345

/third_party/parse5/test/data/parser-feedback/
Druby.test5 "description": "<html><ruby>a<rb>b<rb></ruby></html>",
6 "input": "<html><ruby>a<rb>b<rb></ruby></html>",
15 "ruby",
38 "ruby"
48 "description": "<html><ruby>a<rb>b<rt></ruby></html>",
49 "input": "<html><ruby>a<rb>b<rt></ruby></html>",
58 "ruby",
81 "ruby"
91 "description": "<html><ruby>a<rb>b<rtc></ruby></html>",
92 "input": "<html><ruby>a<rb>b<rtc></ruby></html>",
[all …]
Dtests19.test216 "description": "<!doctype html><ruby><p><rp>",
217 "input": "<!doctype html><ruby><p><rp>",
228 "ruby",
245 "description": "<!doctype html><ruby><div><span><rp>",
246 "input": "<!doctype html><ruby><div><span><rp>",
257 "ruby",
279 "description": "<!doctype html><ruby><div><p><rp>",
280 "input": "<!doctype html><ruby><div><p><rp>",
291 "ruby",
313 "description": "<!doctype html><ruby><p><rt>",
[all …]
Dwebkit01.test681 "description": "<html><body><ruby><div><rp>xx</rp></div></ruby></body></html>",
682 "input": "<html><body><ruby><div><rp>xx</rp></div></ruby></body></html>",
696 "ruby",
723 "ruby"
737 "description": "<html><body><ruby><div><rt>xx</rt></div></ruby></body></html>",
738 "input": "<html><body><ruby><div><rt>xx</rt></div></ruby></body></html>",
752 "ruby",
779 "ruby"
/third_party/protobuf/ruby/src/main/java/google/
DProtobufJavaService.java43 public boolean basicLoad(Ruby ruby) throws IOException { in basicLoad() argument
44 ruby.defineModule("Google"); in basicLoad()
45 RubyProtobuf.createProtobuf(ruby); in basicLoad()
46 RubyDescriptor.createRubyDescriptor(ruby); in basicLoad()
47 RubyBuilder.createRubyBuilder(ruby); in basicLoad()
48 RubyFieldDescriptor.createRubyFileDescriptor(ruby); in basicLoad()
49 RubyMessageBuilderContext.createRubyMessageBuilderContext(ruby); in basicLoad()
50 RubyEnumDescriptor.createRubyEnumDescriptor(ruby); in basicLoad()
51 RubyEnumBuilderContext.createRubyEnumBuilderContext(ruby); in basicLoad()
52 RubyDescriptorPool.createRubyDescriptorPool(ruby); in basicLoad()
[all …]
/third_party/protobuf/
D.gitignore174 # ruby test output
175 ruby/lib/
176 ruby/tests/basic_test_pb.rb
177 ruby/tests/basic_test_proto2_pb.rb
178 ruby/tests/generated_code_pb.rb
179 ruby/tests/test_import_pb.rb
180 ruby/tests/test_ruby_package_pb.rb
181 ruby/tests/generated_code_proto2_pb.rb
182 ruby/tests/test_import_proto2_pb.rb
183 ruby/tests/test_ruby_package_proto2_pb.rb
[all …]
DMakefile.am1079 ruby/Gemfile \
1080 ruby/.gitignore \
1081 ruby/README.md \
1082 ruby/Rakefile \
1083 ruby/compatibility_tests/v3.0.0/tests/test_import.proto \
1084 ruby/compatibility_tests/v3.0.0/tests/stress.rb \
1085 ruby/compatibility_tests/v3.0.0/tests/repeated_field_test.rb \
1086 ruby/compatibility_tests/v3.0.0/tests/generated_code_test.rb \
1087 ruby/compatibility_tests/v3.0.0/tests/generated_code.proto \
1088 ruby/compatibility_tests/v3.0.0/tests/basic.rb \
[all …]
Dtests.sh426 cd ruby && bash travis-test.sh ruby-2.3.8 && cd ..
430 cd ruby && bash travis-test.sh ruby-2.4 && cd ..
434 cd ruby && bash travis-test.sh ruby-2.5.1 && cd ..
438 cd ruby && bash travis-test.sh ruby-2.6.0 && cd ..
442 cd ruby && bash travis-test.sh ruby-2.7.0 && cd ..
/third_party/protobuf/kokoro/release/ruby/linux/
Dbuild_artifacts.sh8 source kokoro/release/ruby/linux/prepare_build.sh
11 source kokoro/release/ruby/linux/ruby/ruby_build_environment.sh
14 bash kokoro/release/ruby/linux/ruby/ruby_build.sh
/third_party/protobuf/kokoro/release/ruby/macos/ruby/
Druby_build_environment.sh24 curl https://raw.githubusercontent.com/rake-compiler/rake-compiler/v1.1.0/tasks/bin/cross-ruby.rake…
28 --- cross-ruby.rake 2018-04-10 11:32:16.000000000 -0700
57 ruby --version | grep 'ruby 2.7.0'
60 rake -f "$CROSS_RUBY" cross-ruby VERSION="$v" HOST=x86_64-darwin11 MAKE="$MAKE"
65 ruby --version | grep 'ruby 2.5.0'
68 rake -f "$CROSS_RUBY" cross-ruby VERSION="$v" HOST=x86_64-darwin11 MAKE="$MAKE"
/third_party/protobuf/kokoro/release/ruby/macos/
Dbuild_artifacts.sh13 bash kokoro/release/ruby/macos/ruby/ruby_build_environment.sh
19 bash kokoro/release/ruby/macos/ruby/ruby_build.sh
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
DRubyOneofBuilderContext.java52 public IRubyObject allocate(Ruby ruby, RubyClass rubyClass) { in createRubyOneofBuilderContext()
53 return new RubyOneofBuilderContext(ruby, rubyClass); in createRubyOneofBuilderContext()
59 public RubyOneofBuilderContext(Ruby ruby, RubyClass rubyClass) { in RubyOneofBuilderContext() argument
60 super(ruby, rubyClass); in RubyOneofBuilderContext()
DRubyOneofDescriptor.java25 public IRubyObject allocate(Ruby ruby, RubyClass rubyClass) { in createRubyOneofDescriptor()
26 return new RubyOneofDescriptor(ruby, rubyClass); in createRubyOneofDescriptor()
33 public RubyOneofDescriptor(Ruby ruby, RubyClass rubyClass) { in RubyOneofDescriptor() argument
34 super(ruby, rubyClass); in RubyOneofDescriptor()
DRubyEnumBuilderContext.java58 public RubyEnumBuilderContext(Ruby ruby, RubyClass klazz) { in RubyEnumBuilderContext() argument
59 super(ruby, klazz); in RubyEnumBuilderContext()
DRubyMap.java61 public IRubyObject allocate(Ruby ruby, RubyClass rubyClass) { in createRubyMap()
62 return new RubyMap(ruby, rubyClass); in createRubyMap()
69 public RubyMap(Ruby ruby, RubyClass rubyClass) { in RubyMap() argument
70 super(ruby, rubyClass); in RubyMap()
DRubyDescriptorPool.java61 public RubyDescriptorPool(Ruby ruby, RubyClass klazz) { in RubyDescriptorPool() argument
62 super(ruby, klazz); in RubyDescriptorPool()
/third_party/icu/docs/
DGemfile.lock5 concurrent-ruby (~> 1.0, >= 1.0.2)
18 ruby-enum (~> 0.5)
19 concurrent-ruby (1.1.7)
90 concurrent-ruby (~> 1.0)
230 ruby-enum (0.8.0)
259 ruby
/third_party/libbpf/scripts/
Dcoverity.sh31 IS_COVERITY_SCAN_BRANCH=`ruby -e "puts '${TRAVIS_BRANCH}' =~ /\\A$COVERITY_SCAN_BRANCH_PATTERN\\z/ …
45 …AUTH=`echo $AUTH_RES | ruby -e "require 'rubygems'; require 'json'; puts JSON[STDIN.read]['upload_…
49 …WHEN=`echo $AUTH_RES | ruby -e "require 'rubygems'; require 'json'; puts JSON[STDIN.read]['next_up…
/third_party/node/deps/npm/node_modules/abbrev/
DREADME.md3 Just like [ruby's Abbrev](http://apidock.com/ruby/Abbrev).
/third_party/cJSON/tests/unity/docs/
DUnityHelperScriptsGuide.md9 likely to work. You can find Ruby at [ruby-lang.org](https://ruby-labg.org/).
47 ruby generate_test_runner.rb TestFile.c NameOfRunner.c
55 ruby generate_test_runner.rb TestFile.c
64 ruby generate_test_runner.rb TestFile.c my_config.yml
86 ruby generate_test_runner.rb TestFile.c my_config.yml extras.h
214 ruby unity_test_summary.rb build/test/
222 ruby unity_test_summary.rb build/test/ ~/projects/myproject/
228 ruby unity_test_summary.rb build\teat\ C:\projects\myproject\
/third_party/protobuf/kokoro/macos/
Dprepare_build_macos_rc51 brew install ruby
79 curl -sSL https://get.rvm.io | bash -s stable --ruby
/third_party/unity/docs/
DUnityHelperScriptsGuide.md9 likely to work. You can find Ruby at [ruby-lang.org](https://ruby-labg.org/).
47 ruby generate_test_runner.rb TestFile.c NameOfRunner.c
55 ruby generate_test_runner.rb TestFile.c
64 ruby generate_test_runner.rb TestFile.c my_config.yml
86 ruby generate_test_runner.rb TestFile.c my_config.yml extras.h
238 ruby unity_test_summary.rb build/test/
246 ruby unity_test_summary.rb build/test/ ~/projects/myproject/
252 ruby unity_test_summary.rb build\teat\ C:\projects\myproject\
/third_party/protobuf/src/google/protobuf/compiler/ruby/
Druby_generator_unittest.cc46 namespace ruby { namespace
66 ruby::Generator ruby_generator; in RubyTest()
/third_party/unity/examples/example_1/
Dmakefile64ruby $(UNITY_ROOT)/auto/generate_test_runner.rb test/TestProductionCode.c test/test_runners/TestP…
66ruby $(UNITY_ROOT)/auto/generate_test_runner.rb test/TestProductionCode2.c test/test_runners/TestP…
/third_party/cJSON/tests/unity/examples/example_1/
Dmakefile63ruby $(UNITY_ROOT)/auto/generate_test_runner.rb test/TestProductionCode.c test/test_runners/TestP…
65ruby $(UNITY_ROOT)/auto/generate_test_runner.rb test/TestProductionCode2.c test/test_runners/TestP…
/third_party/grpc/
DREADME.md36 * [Ruby](src/ruby): `gem install grpc`
73 | Ruby | [src/ruby](src/ruby) |

12345