Searched refs:document (Results 1 - 25 of 464) sorted by relevance

1234567891011>>

/macosx-10.10.1/WebKit-7600.1.25/mac/Misc/
H A DOutlookQuirksUserScript.js26 // This should only apply to the initial empty document, which should look like:
28 if (document.documentElement.outerHTML != "<html><head></head><body></body></html>")
31 // Outlook expects the initial empty document to only contain the document
33 document.documentElement.removeChild(document.head);
34 document.documentElement.removeChild(document.body);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Doc/07tutorial_embed/src/
H A DITunesCommunication_1.py36 # to the document (an instance of CDInfoDocument)
37 document = obj.window().windowController().document()
38 document.setBandName_(u"Uit de Sloot")
39 document.setCDTitle_(u"En Snel Een Beetje")
40 document.setMusicGenre_(u"Punkrock")
H A DITunesCommunication_AppScript.py51 # to the document (an instance of CDInfoDocument)
52 document = obj.window().windowController().document()
58 document.setCDTitle_(album)
59 document.setBandName_(artist)
60 document.setMusicGenre_(genre)
H A DITunesCommunication_2.py56 # to the document (an instance of CDInfoDocument)
57 document = obj.window().windowController().document()
63 document.setCDTitle_(album)
64 document.setBandName_(artist)
65 document.setMusicGenre_(genre)
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/
H A Drd.rb85 document = parser.parse rd
88 document.parts.shift if RDoc::Markup::BlankLine === document.parts.first
89 document.parts.pop if RDoc::Markup::BlankLine === document.parts.last
91 document
H A Dcomment.rb39 attr_writer :document
49 @document = nil
56 # TODO deep copy @document
143 # Sets the format of this comment and resets any parsed document
147 @document = nil
178 # Parses the comment into an RDoc::Markup::Document. The parsed document is
182 return @document if @document
184 @document = super @text, @format
185 @document
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DSyntaxHighlightingSupport.js30 var resultFragment = document.createDocumentFragment();
35 resultFragment.appendChild(document.createTextNode(text));
39 var span = document.createElement("span");
H A DDOMTreeDataGridNode.js65 var fragment = document.createDocumentFragment();
67 fragment.appendChild(document.createElement("img")).className = "icon";
69 this._nameLabel = document.createElement("div");
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DLoadLocalizedStrings.js33 document.write("<script src=\"" + localizedStringsURL + "\"></script>");
/macosx-10.10.1/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebKitFullScreenListener.mm48 _element->document().webkitWillEnterFullScreenForElement(_element.get());
54 _element->document().webkitDidEnterFullScreenForElement(_element.get());
60 _element->document().webkitWillExitFullScreenForElement(_element.get());
66 _element->document().webkitDidExitFullScreenForElement(_element.get());
/macosx-10.10.1/libxml2-26/libxml2/doc/examples/
H A Dparse3.c3 * synopsis: Parse an XML document in memory to a tree and free it
16 static const char *document = "<doc/>"; variable
20 * @content: the content of the document
23 * Parse the in memory document and free the resulting tree
27 xmlDocPtr doc; /* the resulting document tree */
30 * The document being in memory, it have no base per RFC 2396,
35 fprintf(stderr, "Failed to parse document\n");
49 example3Func(document, 6);
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/
H A Dinstall_update_options.rb48 add_option(:"Install/Update", '--[no-]document [TYPES]', Array,
52 options[:document] = case value
59 add_option(:"Install/Update", '-N', '--no-document',
61 options[:document] = []
66 'Use --document instead') do |value, options|
68 options[:document] << 'rdoc'
70 options[:document].delete 'rdoc'
73 options[:document].uniq!
78 'Use --document instead') do |value, options|
80 options[:document] << 'r
[all...]
/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dtest_gem_install_update_options.rb19 --document
37 assert_equal %w[ri], @cmd.options[:document].sort
43 assert_equal %w[rdoc], @cmd.options[:document]
47 assert_equal %w[ri], @cmd.options[:document]
53 assert_equal %w[rdoc ri], @cmd.options[:document]
59 assert_equal [], @cmd.options[:document]
63 @cmd.handle_options %w[--document]
65 assert_equal %w[ri], @cmd.options[:document].sort
69 @cmd.handle_options %w[--no-document]
71 assert_equal %w[], @cmd.options[:document]
[all...]
/macosx-10.10.1/ruby-106/ruby/test/rexml/
H A Dtest_comment.rb3 require 'rexml/document'
17 document = REXML::Document.new(xml)
18 comments = document.doctype.children.find_all do |child|
H A Dtest_document.rb3 require "rexml/document"
112 @document = REXML::Document.new(<<-EOX)
121 @document.write(output)
131 @document.write(output, indent)
144 @document.write(output, indent, transitive)
158 document = REXML::Document.new("<empty/>")
159 document.write(output, indent, transitive, ie_hack)
170 @document.xml_decl.encoding = "Shift_JIS"
172 @document.root.text = japanese_text
173 @document
[all...]
/macosx-10.10.1/cups-408/cups/everywhere/
H A Ddocument-tests.sh3 # "$Id: document-tests.sh 12131 2014-08-28 23:38:16Z msweet $"
21 # ./document-tests.sh "Printer Name"
40 for file in color.jpg document-a4.pdf document-letter.pdf; do
55 $IPPFIND "$1._ipp._tcp.local." -x $IPPTOOL -P "$1 Document Results.plist" -I '{}' document-tests.test \;
58 # End of "$Id: document-tests.sh 12131 2014-08-28 23:38:16Z msweet $".
/macosx-10.10.1/ruby-106/ruby/ext/psych/yaml/
H A Dloader.c9 yaml_parser_load(yaml_parser_t *parser, yaml_document_t *document);
63 * Load the next document of the stream.
67 yaml_parser_load(yaml_parser_t *parser, yaml_document_t *document) argument
72 assert(document); /* Non-NULL document object is expected. */
74 memset(document, 0, sizeof(yaml_document_t));
75 if (!STACK_INIT(parser, document->nodes, INITIAL_STACK_SIZE))
96 parser->document = document;
101 parser->document
[all...]
H A Ddumper.c15 yaml_emitter_dump(yaml_emitter_t *emitter, yaml_document_t *document);
108 * Dump a YAML document.
112 yaml_emitter_dump(yaml_emitter_t *emitter, yaml_document_t *document) argument
118 assert(document); /* Non-NULL emitter object is expected. */
120 emitter->document = document;
126 if (STACK_EMPTY(emitter, document->nodes)) {
135 * (document->nodes.top - document->nodes.start));
138 * (document
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/
H A Dbrowser.js24 * in the browser. Overrides the shell's print function with document.write
49 document.write( string + "<br>\n");
52 document.write( "<h2>" + string + "</h2>" );
59 document.write( "<hr>" );
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/
H A Dbrowser.js24 * in the browser. Overrides the shell's print function with document.write
52 document.write( string + "<br>\n");
55 document.write( "<h2>" + string + "</h2>" );
62 document.write( "<hr>" );
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_1/
H A Dbrowser.js24 * in the browser. Overrides the shell's print function with document.write
49 document.write( string + "<br>\n");
52 document.write( "<h2>" + string + "</h2>" );
59 document.write( "<hr>" );
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/
H A Dbrowser.js24 * in the browser. Overrides the shell's print function with document.write
52 document.write( string + "<br>\n");
55 document.write( "<h2>" + string + "</h2>" );
62 document.write( "<hr>" );
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_4/
H A Dbrowser.js24 * in the browser. Overrides the shell's print function with document.write
49 document.write( string + "<br>\n");
52 document.write( "<h2>" + string + "</h2>" );
59 document.write( "<hr>" );
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Regress/
H A Dregress-90445.js37 var mois = getValueFromOption(document.formtest.mois);
38 var region = document.formtest.region.options.selectedIndex;
39 var confort = document.formtest.confort.options.selectedIndex;
40 var encadrement = document.formtest.encadrement.options.selectedIndex;
41 var typeVillage = document.formtest.type_village.options.selectedIndex;
42 var budget = document.formtest.budget.value;
43 var sport1 = document.formtest.sport1.options.selectedIndex;
44 var sport2 = document.formtest.sport2.options.selectedIndex;
45 var sport3 = document.formtest.sport3.options.selectedIndex;
46 var activite1 = document
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rexml/
H A Dchild.rb82 # Returns:: the document this child belongs to, or nil if this child
83 # belongs to no document
84 def document method in class:REXML.Child
85 return parent.document unless parent.nil?
91 document.encoding

Completed in 218 milliseconds

1234567891011>>