/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_itertools_imports.py | 15 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/ |
D | glxglvnd.c | 58 __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/ |
D | prologue.js | 14 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/ |
D | libdw_visit_scopes.c | 71 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/ |
D | thinlto_emit_imports.ll | 5 ; 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/ |
D | emit_imports.ll | 6 ; 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/ |
D | depstest.py | 102 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/ |
D | README.md | 12 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/ |
D | import.apt | 4 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/ |
D | fixup-tests.py | 20 imports = [] 23 imports.append(sub) 24 if len(imports) != 0: 25 dictXSD[mainXSD] = imports
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | StylesheetComposed.java | 206 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/ |
D | Makefile.netware | 174 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/ |
D | imports.test | 1 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/ |
D | Ruleb.g | 4 // own imports directory: src/main/antlr3/imports
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | BuildDependencyGenerator.java | 143 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/ |
D | Makefile.netware | 162 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/ |
D | module.amd.tmpl | 11 {%- for import in imports %} 15 {%- for import in imports -%}
|
/external/mesa3d/src/mesa/ |
D | Android.libmesa_glsl_utils.mk | 46 main/imports.c \ 71 main/imports.c \
|
/external/compiler-rt/lib/interception/ |
D | interception_win.cc | 862 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/ |
D | Compiler.java | 258 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/ |
D | Makefile.netware | 132 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/ |
D | debug-macro.ll | 43 …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/ |
D | ChecksumImpl.cs | 106 #region DLL imports 157 #region DLL imports
|
/external/llvm/test/Assembler/ |
D | dicompileunit.ll | 19 …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/ |
D | debuginfofinder-multiple-cu.ll | 25 …: 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)
|