/external/bouncycastle/ |
import_bouncycastle.sh | 44 echo " ./import_bouncycastle.sh import </path/to/bcprov-jdk*-*.tar.gz>" 77 shift || usage "No command specified. Try import, regenerate, or generate." 78 if [ "$command" = "import" ]; then 81 import $tar 95 usage "Unknown command specified $command. Try import, regenerate, or generate." 99 function import() { function
|
/external/openssl/ |
import_openssl.sh | 22 # ./import_openssl.sh import openssl-*.tar.gz 44 echo " ./import_openssl.sh import </path/to/openssl-*.tar.gz>" 77 shift || usage "No command specified. Try import, regenerate, or generate." 78 if [ "$command" = "import" ]; then 81 import $tar 95 usage "Unknown command specified $command. Try import, regenerate, or generate." 99 function import() { function
|
/build/core/ |
device.mk | 45 define import-devices 46 $(call import-nodes,DEVICES,$(1),$(_device_var_list))
|
node_fns.mk | 173 $(error import of "$(2)" failed) \ 218 # $(2): list of makefiles representing nodes to import 240 # $(2): list of makefiles representing nodes to import 243 define import-nodes
|
product.mk | 131 define import-products 132 $(call import-nodes,PRODUCTS,$(1),$(_product_var_list))
|
/external/libxslt/libxslt/ |
imports.c | 79 * @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 : unable to load %s\n", URI) [all...] |
/external/webkit/Source/WebCore/xml/ |
XSLStyleSheetLibxslt.cpp | 89 XSLImportRule* import = static_cast<XSLImportRule*>(rule); local 90 if (import->isLoading()) 121 XSLImportRule* import = static_cast<XSLImportRule*>(rule); local 122 if (import->styleSheet()) 123 import->styleSheet()->clearDocuments(); 194 // import/include list. 205 // Walk the children of the root element and look for import/include elements. 213 if (IS_XSLT_ELEM(curr) && IS_XSLT_NAME(curr, "import")) { 278 XSLImportRule* import = static_cast<XSLImportRule*>(rule); local 279 XSLStyleSheet* child = import->styleSheet() [all...] |
/ndk/build/core/ |
definitions.mk | [all...] |
/development/tools/emulator/opengl/ |
common.mk | 55 # A module can 'import' another module, by calling emugl-import. This will 69 # $(call emugl-import,foo) 83 # computed at import time. 129 # $1: list of modules to import 131 emugl-import = \ 133 $(call _emugl-module-import,$(_emugl_HOST)$(_imod))\ 136 _emugl-module-import = \ 150 $(call _emugl-module-import,$(_sub))\
|
/external/protobuf/src/google/protobuf/compiler/ |
parser_unittest.cc | 652 "import \"foo/bar/baz.proto\";\n", 658 "import \"foo.proto\";\n" 659 "import \"bar.proto\";\n" 660 "import \"baz.proto\";\n", 1228 const FileDescriptor* import = local [all...] |
/frameworks/base/tools/aidl/ |
aidl_language.h | 116 // strips off the leading whitespace, the "import" text 117 // also returns whether it's a local or system import 118 // we rely on the input matching the import regex from below 133 void (*import)(buffer_type* statement); member in struct:ParserCallbacks
|
aidl.cpp | 102 import_info* import = (import_info*)malloc(sizeof(import_info)); local 103 memset(import, 0, sizeof(import_info)); 104 import->from = strdup(g_currentFilename); 105 import->statement.lineno = statement->lineno; 106 import->statement.data = strdup(statement->data); 107 import->statement.extra = NULL; 108 import->next = g_imports; 109 import->neededClass = parse_import_statement(statement->data); 110 g_imports = import; 365 "finally", "float", "for", "goto", "if", "implements", "import", 596 import_info* import = g_imports; local 813 import_info* import = g_imports; local [all...] |
/external/chromium/base/win/ |
pe_image.cc | 341 PIMAGE_IMPORT_DESCRIPTOR import = GetFirstImportChunk(); local 343 if (import == NULL || size < sizeof(IMAGE_IMPORT_DESCRIPTOR)) 346 for (; import->FirstThunk; import++) { 347 LPCSTR module_name = reinterpret_cast<LPCSTR>(RVAToAddr(import->Name)); 349 RVAToAddr(import->OriginalFirstThunk)); 351 RVAToAddr(import->FirstThunk)); 375 PIMAGE_IMPORT_BY_NAME import = reinterpret_cast<PIMAGE_IMPORT_BY_NAME>( local 378 hint = import->Hint; 379 name = reinterpret_cast<LPCSTR>(&import->Name) 468 PIMAGE_IMPORT_BY_NAME import; local [all...] |
/external/webkit/Source/WebCore/css/ |
CSSGrammar.y | 207 %type <rule> import 411 | import 447 | import 452 import: label [all...] |
CSSStyleSelector.cpp | 3173 CSSImportRule* import = static_cast<CSSImportRule*>(item); local [all...] |