HomeSort by relevance Sort by last modified time
    Searched defs:Import (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium/crypto/
symmetric_key_openssl.cc 64 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
symmetric_key_nss.cc 84 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
symmetric_key_mac.cc 137 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
rsa_private_key.cc 37 // Helper for error handling during key import.
133 bool PrivateKeyInfoCodec::Import(const std::vector<uint8>& input) {
symmetric_key_win.cc 464 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
  /external/chromium_org/crypto/
symmetric_key_openssl.cc 68 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
symmetric_key_nss.cc 84 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
rsa_private_key.cc 37 // Helper for error handling during key import.
130 bool PrivateKeyInfoCodec::Import(const std::vector<uint8>& input) {
symmetric_key_win.cc 464 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
  /external/chromium_org/third_party/WebKit/Source/core/html/
LinkResource.h 47 Import
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
importer.cc 194 const FileDescriptor* Importer::Import(const string& filename) {
  /external/protobuf/src/google/protobuf/compiler/
importer.cc 194 const FileDescriptor* Importer::Import(const string& filename) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleRule.h 44 Import,
68 bool isImportRule() const { return type() == Import; }
  /external/dropbear/libtomcrypt/
crypt.tex     [all...]
  /external/chromium_org/third_party/jinja2/
nodes.py 15 import operator
16 from itertools import chain, izip
17 from collections import deque
18 from jinja2.utils import Markup, MethodType, FunctionType
317 class Import(Stmt):
318 """A node that represents the import tag."""
323 """A node that represents the from import tag. It's important to not
443 from compiler import has_safe_repr
813 """If created with an import name the import name is returned on nod
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 64 /// \#import, or \c \#include_next.
195 /// \c \#include or \c \#import statement.
203 /// \brief An Objective-C \c \#import directive.
204 Import,
226 /// a module import.
249 /// turned into a module import.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 5 from compiler.consts import CO_VARARGS, CO_VARKEYWORDS
729 class Import(Node):
741 return "Import(%s)" % (repr(self.names),)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 5 from compiler.consts import CO_VARARGS, CO_VARKEYWORDS
729 class Import(Node):
741 return "Import(%s)" % (repr(self.names),)
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
picture.c 611 // Import luma plane
674 static int Import(WebPPicture* const picture,
732 return Import(picture, rgb, rgb_stride, 3, 0, 0);
737 return Import(picture, rgb, rgb_stride, 3, 1, 0);
742 return Import(picture, rgba, rgba_stride, 4, 0, 1);
747 return Import(picture, rgba, rgba_stride, 4, 1, 1);
752 return Import(picture, rgba, rgba_stride, 4, 0, 0);
757 return Import(picture, rgba, rgba_stride, 4, 1, 0);
    [all...]
  /external/clang/lib/Parse/
Parser.cpp     [all...]
  /external/webp/src/enc/
picture.c 611 // Import luma plane
674 static int Import(WebPPicture* const picture,
732 return Import(picture, rgb, rgb_stride, 3, 0, 0);
737 return Import(picture, rgb, rgb_stride, 3, 1, 0);
742 return Import(picture, rgba, rgba_stride, 4, 0, 1);
747 return Import(picture, rgba, rgba_stride, 4, 1, 1);
752 return Import(picture, rgba, rgba_stride, 4, 0, 0);
757 return Import(picture, rgba, rgba_stride, 4, 1, 0);
    [all...]
  /external/clang/lib/AST/
Decl.cpp     [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 160 } Import;
429 #define Import(a0, a1, a2, a3) _Py_Import(a0, a1, a2, a3)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 160 } Import;
429 #define Import(a0, a1, a2, a3) _Py_Import(a0, a1, a2, a3)
  /external/clang/include/clang/AST/
ASTContext.h 685 /// \brief Notify the AST context that a new import declaration has been
687 void addedLocalImportDecl(ImportDecl *Import);
689 static ImportDecl *getNextLocalImport(ImportDecl *Import) {
690 return Import->NextLocalImport;
693 /// \brief Iterator that visits import declarations.
695 ImportDecl *Import;
704 import_iterator() : Import() { }
705 explicit import_iterator(ImportDecl *Import) : Import(Import) { }
    [all...]

Completed in 607 milliseconds

1 2