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

1 2 3

  /external/libchrome/crypto/
symmetric_key_openssl.cc 85 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
symmetric_key_nss.cc 98 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
rsa_private_key.cc 39 // Helper for error handling during key import.
131 bool PrivateKeyInfoCodec::Import(const std::vector<uint8_t>& input) {
symmetric_key_win.cc 467 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
import_statement.py 5 import itertools
6 import keyword
7 import symbol
8 import token
10 from py_utils.refactor.annotated_symbol import base_symbol
11 from py_utils.refactor import snippet
17 'Import',
99 class Import(base_symbol.AnnotatedSymbol):
100 """An import statement.
103 import a.b.c as
    [all...]
  /external/v8/src/js/
prologue.js 29 // to normal natives that import using utils.ImportFromExperimental.
35 // Import from other scripts. The actual importing happens in PostNatives and
36 // PostExperimental so that we can import from scripts executed later. However,
37 // that means that the import is not available until the very end. If the
38 // import needs to be available immediate, use ImportNow.
42 function Import(f) {
48 // Import immediately from exports of previous scripts. We need this for
56 // In normal natives, import from experimental natives.
284 utils.Import = UNDEFINED;
305 utils.Import = Import
    [all...]
  /external/clang/lib/CodeGen/
ObjectFilePCHContainerOperations.cpp 71 auto *Import = cast<ImportDecl>(D);
72 if (!Import->getImportedOwningModule())
73 DI.EmitImportDecl(*Import);
  /external/protobuf/src/google/protobuf/compiler/
importer.cc 197 const FileDescriptor* Importer::Import(const string& filename) {
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 65 /// \#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.
  /external/opencv3/3rdparty/jinja2/
nodes.py 15 import operator
17 from collections import deque
18 from jinja2.utils import Markup
19 from jinja2._compat import next, izip, with_metaclass, text_type, \
321 class Import(Stmt):
322 """A node that represents the import tag."""
327 """A node that represents the from import tag. It's important to not
447 from .compiler import has_safe_repr
817 """If created with an import name the import name is returned on nod
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/clang/lib/Parse/
Parser.cpp     [all...]
  /external/opencv3/3rdparty/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/webp/src/enc/
picture_csp.c 460 // Import RGB samples to W/RGB representation.
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iadmw.h 294 virtual HRESULT WINAPI Import(LPCWSTR pszPasswd,LPCWSTR pszFileName,LPCWSTR pszSourcePath,LPCWSTR pszDestPath,DWORD dwMDFlags) = 0;
    [all...]
txcoord.h 425 virtual HRESULT WINAPI Import(ULONG cbTransactionCookie,byte *rgbTransactionCookie,IID *piid,void **ppvTransaction) = 0;
433 HRESULT (WINAPI *Import)(ITransactionImport *This,ULONG cbTransactionCookie,byte *rgbTransactionCookie,IID *piid,void **ppvTransaction);
443 #define ITransactionImport_Import(This,cbTransactionCookie,rgbTransactionCookie,piid,ppvTransaction) (This)->lpVtbl->Import(This,cbTransactionCookie,rgbTransactionCookie,piid,ppvTransaction)
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
Python-ast.h 160 } Import;
429 #define Import(a0, a1, a2, a3) _Py_Import(a0, a1, a2, a3)
  /prebuilts/gdb/linux-x86/include/python2.7/
Python-ast.h 160 } Import;
429 #define Import(a0, a1, a2, a3) _Py_Import(a0, a1, a2, a3)
  /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/Serialization/
ASTReader.h 456 /// to apply once we finish processing an import.
627 /// \brief A module import, export, or conflict that hasn't yet been resolved.
636 enum { Import, Export, Conflict } Kind;
    [all...]
  /external/clang/lib/AST/
Decl.cpp     [all...]

Completed in 1439 milliseconds

1 2 3