Searched defs:import (Results 26 - 37 of 37) sorted by last modified time

12

/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLStyleSheetLibxslt.cpp129 XSLImportRule* import = m_children.at(i).get(); local
130 if (import->styleSheet())
131 import->styleSheet()->clearDocuments();
195 // element, so that we can walk the import/include list.
206 // Walk the children of the root element and look for import/include
214 if (IS_XSLT_ELEM(curr) && IS_XSLT_NAME(curr, "import")) {
287 XSLImportRule* import = m_children.at(i).get(); local
288 XSLStyleSheet* child = import->styleSheet();
297 // the original href string from the import rule and canonicalize it
299 CString importHref = import
[all...]
/external/chromium_org/tools/
H A Dsort-headers.py12 import optparse
13 import os
14 import sys
23 import msvcrt
26 import termios
27 import tty
42 Returns the filename without the #include/#import/import prefix.
44 for prefix in ('#include ', '#import ', 'import ') namespace
[all...]
/external/chromium_org/third_party/closure_compiler/externs/
H A Dchrome_extensions.js2284 chrome.bookmarks.import = function(opt_callback) {};
/external/chromium_org/third_party/cython/src/pyximport/
H A D__init__.py1 from pyximport import * namespace
4 from pyximport import __doc__ namespace
H A Dpyxbuild.py6 import os
7 import sys
9 from distutils.dist import Distribution
10 from distutils.errors import DistutilsArgError, DistutilsError, CCompilerError
11 from distutils.extension import Extension
12 from distutils.util import grok_environment_error
14 from Cython.Distutils import build_ext
126 import shutil # late import / reload_support is: debugging namespace
160 import tes
[all...]
/external/chromium_org/third_party/cython/src/
H A Druntests.py3 import os
4 import sys
5 import re
6 import gc
7 import locale
8 import shutil
9 import time
10 import unittest
11 import doctest
12 import operato
1884 from pyximport import pyximport namespace
[all...]
/external/chromium_org/third_party/libwebp/enc/
H A Dpicture.c232 Importer import, float quality_factor, int lossless,
252 ok = import(&pic, rgba, stride) && WebPEncode(&config, &pic);
231 Encode(const uint8_t* rgba, int width, int height, int stride, Importer import, float quality_factor, int lossless, uint8_t** output) argument
/external/chromium_org/third_party/libxslt/libxslt/
H A Dimports.c79 * @cur: the import element
81 * parse an XSLT stylesheet import element
89 xmlDocPtr import = NULL; local
102 "xsl:import : missing href attribute\n");
110 "xsl:import : invalid URI reference %s\n", uriRef);
120 "xsl:import : recursion detected on imported URL %s\n", URI);
136 "xsl:import: read rights for %s denied\n",
142 import = xsltDocDefaultLoader(URI, style->dict, XSLT_PARSE_OPTIONS,
144 if (import == NULL) {
146 "xsl:import
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dparser_unittest.cc691 "import \"foo/bar/baz.proto\";\n",
697 "import \"foo.proto\";\n"
698 "import \"bar.proto\";\n"
699 "import \"baz.proto\";\n",
707 "import \"foo.proto\";\n"
708 "import public \"bar.proto\";\n"
709 "import \"baz.proto\";\n"
710 "import public \"qux.proto\";\n",
1076 "import foo;\n",
1077 "0:7: Expected a string naming the file to import
1313 const FileDescriptor* import = local
1356 const FileDescriptor* import = FileDescriptorProto::descriptor()->file(); local
[all...]
/external/chromium_org/base/win/
H A Dpe_image.cc344 PIMAGE_IMPORT_DESCRIPTOR import = GetFirstImportChunk(); local
346 if (import == NULL || size < sizeof(IMAGE_IMPORT_DESCRIPTOR))
349 for (; import->FirstThunk; import++) {
350 LPCSTR module_name = reinterpret_cast<LPCSTR>(RVAToAddr(import->Name));
352 RVAToAddr(import->OriginalFirstThunk));
354 RVAToAddr(import->FirstThunk));
378 PIMAGE_IMPORT_BY_NAME import = reinterpret_cast<PIMAGE_IMPORT_BY_NAME>( local
381 hint = import->Hint;
382 name = reinterpret_cast<LPCSTR>(&import
471 PIMAGE_IMPORT_BY_NAME import; local
[all...]
/external/bouncycastle/
H A Dimport_bouncycastle.sh23 # ./import_bouncycastle.sh import bcprov-jdk*-*.tar.gz
47 echo " ./import_bouncycastle.sh import </path/to/bcprov-jdk*-*.tar.gz>"
84 shift || usage "No command specified. Try import, regenerate, or generate."
85 if [ "$command" = "import" ]; then
89 import $bcprov_tar $BOUNCYCASTLE_BCPROV_DIR $BOUNCYCASTLE_BCPROV_DIR_ORIG bcprov "$BOUNCYCASTLE_BCPROV_PATCHES" "$NEEDED_BCPROV_SOURCES" "$UNNEEDED_BCPROV_SOURCES"
90 import $bcpkix_tar $BOUNCYCASTLE_BCPKIX_DIR $BOUNCYCASTLE_BCPKIX_DIR_ORIG bcpkix "$BOUNCYCASTLE_BCPKIX_PATCHES" "$NEEDED_BCPKIX_SOURCES" "$UNNEEDED_BCPKIX_SOURCES"
119 usage "Unknown command specified $command. Try import, regenerate, or generate."
123 function import() { function
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dfunctional.rb38 # import( ruby_file ) => [ new constants, ... ]
43 def import( ruby_file ) method in class:ANTLR3.Test.NameSpace
51 import( file )

Completed in 407 milliseconds

12