HomeSort by relevance Sort by last modified time
    Searched refs:ruby (Results 1 - 11 of 11) sorted by null

  /frameworks/base/tests/backup/
test_backup.sh 23 ruby -e 'p_stanza = STDIN.read.match(/Participants:.*?(?=Ever)/m)[0]
  /external/webkit/Source/WebCore/rendering/
RenderRuby.cpp 73 static inline RenderBlock* rubyBeforeBlock(const RenderObject* ruby)
75 RenderObject* child = ruby->firstChild();
79 static inline RenderBlock* rubyAfterBlock(const RenderObject* ruby)
81 RenderObject* child = ruby->lastChild();
85 static RenderBlock* createAnonymousRubyInlineBlock(RenderObject* ruby)
87 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyle(ruby->style());
90 RenderBlock* newBlock = new (ruby->renderArena()) RenderBlock(ruby->document() /* anonymous box */);
95 static RenderRubyRun* lastRubyRun(const RenderObject* ruby)
97 RenderObject* child = ruby->lastChild()
    [all...]
RenderRubyRun.cpp 56 // The only place where a ruby text can be is in the first position
57 // Note: As anonymous blocks, ruby runs do not have ':before' or ':after' content themselves.
63 // The only place where a ruby base can be is in the last position
64 // Note: As anonymous blocks, ruby runs do not have ':before' or ':after' content themselves.
117 // prepend ruby texts as first child
124 RenderObject* ruby = parent(); local
125 ASSERT(ruby->isRuby());
126 RenderBlock* newRun = staticCreateRubyRun(ruby);
127 ruby->addChild(newRun, nextSibling());
128 // Add the new ruby text and move the old one to the new ru
138 RenderObject* ruby = parent(); local
    [all...]
  /external/webkit/Tools/iExploder/iexploder-1.7.2/tools/
update_html_tags_from_sources.sh 35 ruby -e '$stdin.readlines.join("").scan(/\"([\w-]+)"/) { |tag| puts tag }' > ${tmp_prefix}.html-values
36 grep -r "protocolIs" $src_dir/Source/WebCore/* | ruby -e '$stdin.readlines.join("").scan(/\"([\w-]+)"/) { |tag| puts "#{tag}:" }' > ${tmp_prefix}.protocols
40 egrep -r '"[-\+a-z]+/[-\+a-z]+"' $src_dir/Source/WebCore | ruby -e '$stdin.readlines.join("").scan(/\"([afimtvwx][\w\+-]+\/[\w\+-]+)"/) { puts $1 }' > ${tmp_prefix}.mime-types
75 | ruby -e '$stdin.readlines.join("").scan(/\"([afimtvwx][\w\+-]+\/[\w\+-]+)"/) { puts $1 }' > ${tmp_prefix}.mime-types
85 ruby -e '$stdin.readlines.join("").scan(/\"(.*?)\"/) { |tag| puts tag }' > ${tmp_prefix}.css-values
90 ruby -e '$stdin.readlines.join("").scan(/\"([-a-z]+)\"/) { |tag| puts tag }' > ${tmp_prefix}.html-values
94 ruby -e '$stdin.readlines.join("").scan(/\"([\w\+-]+\/[\w\+-]+)"/) { puts $1 }' > ${tmp_prefix}.mime-types
103 grep g_ascii_strcasecmp $src_dir/gtkhtml/htmlengine.c | ruby -e '$stdin.readlines.join("").scan(/\"([\/\w-]+)"/) { |tag| puts tag }' > ${tmp_prefix}.html-values
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
main-scripts.rb 1 #!/usr/bin/ruby
15 options { language = Ruby; }
25 # when this grammar is compiled and the resulting ruby files
33 out = `ruby #{ lexer_script } 2>&1`.chomp
43 options { language = Ruby; }
67 options { language = Ruby; }
81 options { language = Ruby; }
102 language = Ruby;
125 language = Ruby;
138 language=Ruby;
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
HudSystem.java 198 public void setCollectableDrawables(DrawableBitmap coin, DrawableBitmap ruby) {
200 mRubyDrawable = ruby;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
Ruby.stg 23 #!/usr/bin/env ruby
28 # Ruby runtime library version: <runtimeLibraryVersion()>
57 # 1: try to load the ruby antlr3 runtime library from the system path
563 /** helper template to format a ruby method call */
    [all...]
  /external/webkit/Source/WebCore/css/
html.css 843 /* HTML5 ruby elements */
845 ruby, rt {
846 text-indent: 0; /* blocks used for ruby rendering should not trigger this */
854 ruby > rt {
860 ruby > rp {
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
error.rb 1 #!/usr/bin/ruby
262 options { language = Ruby; }
276 in ruby:
434 now in ruby
streams.rb 1 #!/usr/bin/ruby
65 Similar to StringIO from the standard Ruby library, StringStream wraps raw
114 Ruby runtime API, I found this naming practice both confusing, ambiguous, and
115 un-Ruby-like. Thus, I chose <tt>peek</tt> and <tt>look</tt> to represent a
137 within the stream, basically like typical ruby <tt>IO#seek</tt> style methods.
149 the ANTLR Java/Python runtime library to Ruby. In Java, of course, this is
150 represented as an interface. In Ruby, however, objects are duck-typed and
252 to keep it simple and familliar in this Ruby runtime API.
356 This version of the runtime library primarily targets ruby version 1.8, which
359 0 and 255. Ruby 1.9 does provide built-in encoding support for multi-byt
    [all...]
token.rb 1 #!/usr/bin/ruby
223 By default, ANTLR generated ruby code will provide a customized subclass of
301 includes Enumerable to provide the standard Ruby iteration
386 say, a ruby symbol) is that ANTLR's decision logic often needs to test whether a
461 # ruby lexically-scopes constant names instead of

Completed in 232 milliseconds