HomeSort by relevance Sort by last modified time
    Searched refs:Import (Results 126 - 150 of 178) sorted by null

1 2 3 4 56 7 8

  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
parser.py 7 import imp
8 import os.path
9 import sys
25 from ply import lex
26 from ply import yacc
28 from ..error import Error
29 from . import ast
30 from .lexer import Lexer
86 """import_list : import_list import"""
91 """import : IMPORT STRING_LITERAL""
    [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.
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 454 Kind = InclusionDirective::Import;
  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
pycapsule.pxd 14 # other modules, so the regular import mechanism can be used to
48 # enable other modules to import the capsule using
134 # Import a pointer to a C object from a capsule attribute in a
138 # import the module without blocking (using
139 # PyImport_ImportModuleNoBlock()). If no_block is false, import
144 # failed to import the module, and no_block was true, no exception
module.pxd 26 # Import a module. This is best described by referring to the
40 # This is a higher-level interface that calls the current ``import
42 # __builtins__ of the current globals. This means that the import
43 # is done using whatever import hooks are installed in the current
61 # load or import the module; if the module wasn't already loaded,
63 # or one of its variants to import a module. Package structures
  /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)
  /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...]
  /external/clang/lib/Parse/
Parser.cpp     [all...]
  /external/chromium_org/media/cdm/
aes_decryptor.cc 540 decryption_key_.reset(crypto::SymmetricKey::Import(
  /external/chromium_org/ppapi/native_client/
chrome_main.scons 6 import json
7 import os
8 import shutil
9 import sys
12 import command_tester
13 import test_lib
15 Import(['pre_base_env'])
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleSheetContents.cpp 93 // FIXME: Copy import rules.
128 // FIXME: Support copying import rules.
131 // FIXME: Support cached stylesheets in import rules.
150 // Parser enforces that @import rules come before anything else except @charset.
244 // Inserting non-import rule before @import is not allowed.
258 // Inserting @import rule after a non-import rule is not allowed.
425 // load since the import's subrules are flattened into its parent sheet's RuleSet.
497 case StyleRuleBase::Import
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLinkElement.cpp 235 if (!m_link || m_link->type() != LinkResource::Import)
240 Document* HTMLLinkElement::import() const function in class:blink::HTMLLinkElement
407 // are inside style-sheet such as @import, @font-face, url(), etc.
  /external/chromium_org/tools/gn/
functions.cc 27 *err = Err(node, "Not valid from an import.",
423 // import ----------------------------------------------------------------------
425 const char kImport[] = "import";
427 "import: Import a file into the current scope.";
429 "import: Import a file into the current scope.\n"
431 " The import command loads the rules and variables resulting from\n"
436 " An import is different than a C++ \"include\". The imported file is\n"
437 " executed in a standalone environment from the caller of the import\n
    [all...]
  /external/llvm/lib/IR/
DebugInfo.cpp     [all...]
  /external/clang/lib/AST/
Decl.cpp     [all...]
  /external/lldb/source/Symbol/
ClangASTContext.cpp     [all...]
  /build/core/
binary.mk     [all...]
  /external/chromium_org/third_party/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...]
parser.py 11 from jinja2 import nodes
12 from jinja2.exceptions import TemplateSyntaxError, TemplateAssertionError
13 from jinja2.lexer import describe_token, describe_token_expr
14 from jinja2._compat import next, imap
19 'macro', 'include', 'from', 'import',
259 node = nodes.Import(lineno=next(self.stream).lineno)
268 self.stream.expect('name:import')
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 634 // Import the file.
635 const FileDescriptor* parsed_file = importer.Import(input_files_[i]);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 857 // Don't dllexport/import destructor thunks.
    [all...]
  /external/clang/tools/libclang/
Indexing.cpp 716 ID->getKind() == InclusionDirective::Import,
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 593 // Import the file.
594 const FileDescriptor* parsed_file = importer.Import(input_files_[i]);
    [all...]

Completed in 4090 milliseconds

1 2 3 4 56 7 8