Home
last modified time | relevance | path

Searched refs:imports (Results 1 – 25 of 575) sorted by relevance

12345678910>>...23

/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_itertools_imports.py15 imports = results['imports']
16 if imports.type == syms.import_as_name or not imports.children:
17 children = [imports]
19 children = imports.children
40 children = imports.children[:] or [imports]
52 if (not (imports.children or getattr(imports, 'value', None)) or
53 imports.parent is None):
/external/mesa3d/src/glx/
Dglxglvnd.c58 __GLXvendorInfo *vendor, __GLXapiImports *imports) in __glx_Main() argument
72 imports->isScreenSupported = __glXGLVNDIsScreenSupported; in __glx_Main()
73 imports->getProcAddress = __glXGLVNDGetProcAddress; in __glx_Main()
74 imports->getDispatchAddress = __glXGLVNDGetDispatchAddress; in __glx_Main()
75 imports->setDispatchIndex = __glXGLVNDSetDispatchIndex; in __glx_Main()
76 imports->notifyError = NULL; in __glx_Main()
77 imports->isPatchSupported = NULL; in __glx_Main()
78 imports->initiatePatch = NULL; in __glx_Main()
/external/v8/src/js/
Dprologue.js14 var imports = UNDEFINED;
43 f.next = imports;
44 imports = f;
164 for ( ; !IS_UNDEFINED(imports); imports = imports.next) {
165 imports(exports_container);
204 for ( ; !IS_UNDEFINED(imports); imports = imports.next) {
205 imports(exports_container);
220 for ( ; !IS_UNDEFINED(imports); imports = imports.next) {
221 imports(exports_container);
/external/elfutils/libdw/
Dlibdw_visit_scopes.c71 struct Dwarf_Die_Chain *imports; member
85 struct Dwarf_Die_Chain *imports, in __libdw_visit_scopes() argument
97 .imports = imports, in __libdw_visit_scopes()
134 for (struct Dwarf_Die_Chain *import = state->imports; import != NULL; in walk_children()
146 struct Dwarf_Die_Chain *orig_imports = state->imports; in walk_children()
149 state->imports = &import; in walk_children()
151 state->imports = orig_imports; in walk_children()
172 result = __libdw_visit_scopes (state->depth + 1, &state->child, state->imports, in walk_children()
/external/llvm/test/tools/gold/X86/
Dthinlto_emit_imports.ll5 ; Ensure gold generates imports files if requested for distributed backends.
9 ; RUN: --plugin-opt=thinlto-emit-imports-files \
12 ; The imports file for this module contains the bitcode file for
14 ; RUN: cat %t.o.imports | count 1
15 ; RUN: cat %t.o.imports | FileCheck %s --check-prefix=IMPORTS1
18 ; The imports file for Input/thinlto.ll is empty as it does not import anything.
19 ; RUN: cat %t2.o.imports | count 0
/external/llvm/test/ThinLTO/X86/
Demit_imports.ll6 ; The imports file for this module contains the bitcode file for
8 ; RUN: cat %t1.bc.imports | count 1
9 ; RUN: cat %t1.bc.imports | FileCheck %s --check-prefix=IMPORTS1
12 ; The imports file for Input/emit_imports.ll is empty as it does not import anything.
13 ; RUN: cat %t2.bc.imports | count 0
/external/icu/icu4c/source/test/depstest/
Ddepstest.py102 imports = set()
110 imports |= obj_file["imports"]
112 imports -= exports | _ignored_symbols
122 if files and imports.isdisjoint(dep_exports) and imports.isdisjoint(dep_system_symbols):
130 imports -= exports | system_symbols
131 for symbol in imports:
/external/protobuf/js/
DREADME.md12 1. CommonJS-style imports (eg. `var protos = require('my-protos');`)
13 2. Closure-style imports (eg. `goog.require('my.package.MyProto');`)
15 Support for ES6-style imports is not implemented yet. Browsers can
17 resolve imports at compile time.
51 Closure Compiler style imports and one that uses CommonJS imports.
61 little different depending on whether you are using Closure imports
62 or CommonJS imports:
67 If you want to use Closure imports, your build should run a command
72 For Closure imports, `protoc` will generate a single output file
96 CommonJS imports
[all …]
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/examples/
Dimport.apt4 as imports in your main .g files, you need to place the imported grammar
5 files in the imports directory beneath the root directory of your grammar
8 For a default layout, place your import grammars in the directory: <<<src/main/antlr3/imports>>>
/external/libxml2/xstc/
Dfixup-tests.py20 imports = []
23 imports.append(sub)
24 if len(imports) != 0:
25 dictXSD[mainXSD] = imports
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DStylesheetComposed.java206 int imports = getIncludeComposed(--count).getImportCount(); in recomposeImports() local
207 m_endImportCountComposed += imports; in recomposeImports()
208 while (imports > 0) in recomposeImports()
209 …m_endImportCountComposed +=getIncludeComposed(count).getImport(--imports).getEndImportCountCompose… in recomposeImports()
/external/curl/src/
DMakefile.netware174 PRELUDE = $(NDK_LIBC)/imports/posixpre.o
176 PRELUDE = $(NDK_LIBC)/imports/libcpre.o
198 PRELUDE = $(NDK_LIBC)/imports/posixpre.gcc.o
200 PRELUDE = $(NDK_LIBC)/imports/libcpre.gcc.o
331 IMPORTS += @$(LIBEXPAT_PATH)/imports/expatlbc.imp
334 IMPORTS += @$(LIBEXPAT_PATH)/imports/expatlib.imp
/external/llvm/test/tools/llvm-readobj/
Dimports.test1 RUN: llvm-readobj --coff-imports %p/Inputs/imports.exe.coff-i386 | FileCheck -check-prefix=X86 %s
2 RUN: llvm-readobj --coff-imports %p/Inputs/imports.exe.coff-x86-64 | FileCheck -check-prefix=X64 %s
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/imports/
DRuleb.g4 // own imports directory: src/main/antlr3/imports
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DBuildDependencyGenerator.java143 List<Grammar> imports = in getGeneratedFileList() local
145 for (Grammar g : imports) { in getGeneratedFileList()
167 List<Grammar> imports = in getDependenciesFileList() local
169 for (Grammar g : imports) { in getDependenciesFileList()
/external/curl/lib/
DMakefile.netware162 PRELUDE = $(NDK_LIBC)/imports/posixpre.o
164 PRELUDE = $(NDK_LIBC)/imports/libcpre.o
189 PRELUDE = $(NDK_LIBC)/imports/posixpre.gcc.o
191 PRELUDE = $(NDK_LIBC)/imports/libcpre.gcc.o
194 PRELUDE = $(NDK_CLIB)/imports/clibpre.gcc.o
/external/libmojo/mojo/public/tools/bindings/generators/js_templates/
Dmodule.amd.tmpl11 {%- for import in imports %}
15 {%- for import in imports -%}
/external/mesa3d/src/mesa/
DAndroid.libmesa_glsl_utils.mk46 main/imports.c \
71 main/imports.c \
/external/compiler-rt/lib/interception/
Dinterception_win.cc862 RVAPtr<IMAGE_IMPORT_DESCRIPTOR> imports(module, in OverrideImportedFunction() local
864 for (; imports->FirstThunk != 0; ++imports) { in OverrideImportedFunction()
865 RVAPtr<const char> modname(module, imports->Name); in OverrideImportedFunction()
869 if (imports->FirstThunk == 0) in OverrideImportedFunction()
876 RVAPtr<IMAGE_THUNK_DATA> name_table(module, imports->OriginalFirstThunk); in OverrideImportedFunction()
877 RVAPtr<IMAGE_THUNK_DATA> iat(module, imports->FirstThunk); in OverrideImportedFunction()
/external/javassist/sample/preproc/
DCompiler.java258 CtClass[] imports = a.assist(classPool, importname, args); in runAssistant() local
259 s = imports.length; in runAssistant()
264 output.write(imports[0].getName()); in runAssistant()
268 output.write(imports[1].getName()); in runAssistant()
/external/curl/docs/examples/
DMakefile.netware132 PRELUDE = $(NDK_LIBC)/imports/posixpre.o
134 PRELUDE = $(NDK_LIBC)/imports/libcpre.o
156 PRELUDE = $(NDK_LIBC)/imports/posixpre.gcc.o
158 PRELUDE = $(NDK_LIBC)/imports/libcpre.gcc.o
/external/llvm/test/DebugInfo/X86/
Ddebug-macro.ll43 …ssionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2, macros: !3)
61 …ionKind: FullDebug, file: !17, enums: !2, retainedTypes: !2, globals: !2, imports: !2, macros: !18)
66 … false, emissionKind: FullDebug, file: !21, enums: !2, retainedTypes: !2, globals: !2, imports: !2)
/external/zlib/src/contrib/dotzlib/DotZLib/
DChecksumImpl.cs106 #region DLL imports
157 #region DLL imports
/external/llvm/test/Assembler/
Ddicompileunit.ll19 …ug", emissionKind: FullDebug, enums: !2, retainedTypes: !3, globals: !5, imports: !6, macros: !7, …
25 globals: !5, imports: !6, macros: !7, dwoId: 42)
/external/llvm/test/DebugInfo/Generic/
Ddebuginfofinder-multiple-cu.ll25 …: false, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2)
32 …: false, emissionKind: FullDebug, file: !9, enums: !2, retainedTypes: !2, globals: !2, imports: !2)

12345678910>>...23