/third_party/gettext/ |
D | BUILD.gn | 32 "//third_party/gettext/gettext-runtime/intl/bindtextdom.c", 33 "//third_party/gettext/gettext-runtime/intl/dcgettext.c", 34 "//third_party/gettext/gettext-runtime/intl/dcigettext.c", 35 "//third_party/gettext/gettext-runtime/intl/dcngettext.c", 36 "//third_party/gettext/gettext-runtime/intl/dgettext.c", 37 "//third_party/gettext/gettext-runtime/intl/dngettext.c", 38 "//third_party/gettext/gettext-runtime/intl/explodename.c", 39 "//third_party/gettext/gettext-runtime/intl/finddomain.c", 40 "//third_party/gettext/gettext-runtime/intl/gettext.c", 41 "//third_party/gettext/gettext-runtime/intl/hash-string.c", [all …]
|
D | Makefile.am | 22 SUBDIRS = gnulib-local gettext-runtime libtextstyle gettext-tools 25 gettext-runtime/ChangeLog.0 \ 26 gettext-runtime/doc/ChangeLog.0 \ 27 gettext-runtime/intl-csharp/ChangeLog.0 \ 28 gettext-runtime/intl-java/ChangeLog.0 \ 29 gettext-runtime/libasprintf/ChangeLog.0 \ 30 gettext-runtime/m4/ChangeLog.0 \ 31 gettext-runtime/man/ChangeLog.0 \ 32 gettext-runtime/src/ChangeLog.0 \ 33 gettext-runtime/tests/ChangeLog.0 \ [all …]
|
D | .gitignore | 15 /gettext-runtime/doc/Admin/jdom-1.0.jar 16 /gettext-runtime/doc/Admin/Matrix*.class 17 /gettext-runtime/doc/Admin/matrix.xml 39 /gettext-runtime/gnulib-lib/ 40 /gettext-runtime/gnulib-m4/ 41 /gettext-runtime/doc/relocatable.texi 42 /gettext-runtime/intl/attribute.h 43 /gettext-runtime/libasprintf/gnulib-m4/ 44 /gettext-runtime/libasprintf/Makefile.gnulib 45 /gettext-runtime/libasprintf/alloca.c [all …]
|
/third_party/mindspore/mindspore/lite/ |
D | BUILD.gn | 325 "src/runtime/infer_manager.cc", 326 "src/runtime/inner_allocator.cc", 327 "src/runtime/kernel/arm/base/argminmax_base.cc", 328 "src/runtime/kernel/arm/base/assert.cc", 329 "src/runtime/kernel/arm/base/call.cc", 330 "src/runtime/kernel/arm/base/carry_data.cc", 331 "src/runtime/kernel/arm/base/constant_of_shape.cc", 332 "src/runtime/kernel/arm/base/convolution_base.cc", 333 "src/runtime/kernel/arm/base/crop_base.cc", 334 "src/runtime/kernel/arm/base/detection_post_process_base.cc", [all …]
|
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
D | Utils.java | 43 import org.jruby.runtime.Block; 44 import org.jruby.runtime.ThreadContext; 45 import org.jruby.runtime.builtin.IRubyObject; 64 return context.runtime.newSymbol(typeName.replace("TYPE_", "").toLowerCase()); in fieldTypeToRuby() 69 Ruby runtime = context.runtime; in checkType() local 77 throw runtime.newTypeError("Expected number type for integral field."); in checkType() 90 num2ulong(context.runtime, value); in checkType() 97 throw runtime.newTypeError("Expected number type for float field."); in checkType() 101 throw runtime.newTypeError("Expected number type for double field."); in checkType() 105 throw runtime.newTypeError("Invalid argument for boolean field."); in checkType() [all …]
|
D | RubyMessageBuilderContext.java | 39 import org.jruby.runtime.Binding; 40 import org.jruby.runtime.Block; 41 import org.jruby.runtime.ObjectAllocator; 42 import org.jruby.runtime.ThreadContext; 43 import org.jruby.runtime.builtin.IRubyObject; 47 public static void createRubyMessageBuilderContext(Ruby runtime) { in createRubyMessageBuilderContext() argument 48 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyMessageBuilderContext() 49 …ssageBuilderContext = protobuf.defineClassUnder("MessageBuilderContext", runtime.getObject(), new … in createRubyMessageBuilderContext() 51 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyMessageBuilderContext() 52 return new RubyMessageBuilderContext(runtime, klazz); in createRubyMessageBuilderContext() [all …]
|
D | RubyEnumDescriptor.java | 44 import org.jruby.runtime.Block; 45 import org.jruby.runtime.ObjectAllocator; 46 import org.jruby.runtime.ThreadContext; 47 import org.jruby.runtime.builtin.IRubyObject; 51 public static void createRubyEnumDescriptor(Ruby runtime) { in createRubyEnumDescriptor() argument 52 RubyModule mProtobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyEnumDescriptor() 53 …RubyClass cEnumDescriptor = mProtobuf.defineClassUnder("EnumDescriptor", runtime.getObject(), new … in createRubyEnumDescriptor() 55 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyEnumDescriptor() 56 return new RubyEnumDescriptor(runtime, klazz); in createRubyEnumDescriptor() 59 cEnumDescriptor.includeModule(runtime.getEnumerable()); in createRubyEnumDescriptor() [all …]
|
D | RubyDescriptor.java | 40 import org.jruby.runtime.Block; 41 import org.jruby.runtime.ObjectAllocator; 42 import org.jruby.runtime.ThreadContext; 43 import org.jruby.runtime.builtin.IRubyObject; 51 public static void createRubyDescriptor(Ruby runtime) { in createRubyDescriptor() argument 52 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyDescriptor() 53 …RubyClass cDescriptor = protobuf.defineClassUnder("Descriptor", runtime.getObject(), new ObjectAll… in createRubyDescriptor() 55 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyDescriptor() 56 return new RubyDescriptor(runtime, klazz); in createRubyDescriptor() 59 cDescriptor.includeModule(runtime.getEnumerable()); in createRubyDescriptor() [all …]
|
D | RubyBuilder.java | 38 import org.jruby.runtime.*; 39 import org.jruby.runtime.builtin.IRubyObject; 43 public static void createRubyBuilder(Ruby runtime) { in createRubyBuilder() argument 44 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyBuilder() 45 …RubyClass cBuilder = protobuf.defineClassUnder("Builder", runtime.getObject(), new ObjectAllocator… in createRubyBuilder() 47 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyBuilder() 48 return new RubyBuilder(runtime, klazz); in createRubyBuilder() 54 public RubyBuilder(Ruby runtime, RubyClass metaClass) { in RubyBuilder() argument 55 super(runtime, metaClass); in RubyBuilder() 56 this.cDescriptor = (RubyClass) runtime.getClassFromPath("Google::Protobuf::Descriptor"); in RubyBuilder() [all …]
|
D | RubyRepeatedField.java | 39 import org.jruby.runtime.Block; 40 import org.jruby.runtime.ObjectAllocator; 41 import org.jruby.runtime.ThreadContext; 42 import org.jruby.runtime.builtin.IRubyObject; 47 public static void createRubyRepeatedField(Ruby runtime) { in createRubyRepeatedField() argument 48 RubyModule mProtobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyRepeatedField() 49 RubyClass cRepeatedField = mProtobuf.defineClassUnder("RepeatedField", runtime.getObject(), in createRubyRepeatedField() 52 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyRepeatedField() 53 return new RubyRepeatedField(runtime, klazz); in createRubyRepeatedField() 57 cRepeatedField.includeModule(runtime.getEnumerable()); in createRubyRepeatedField() [all …]
|
D | RubyFieldDescriptor.java | 40 import org.jruby.runtime.ObjectAllocator; 41 import org.jruby.runtime.ThreadContext; 42 import org.jruby.runtime.builtin.IRubyObject; 46 public static void createRubyFileDescriptor(Ruby runtime) { in createRubyFileDescriptor() argument 47 RubyModule mProtobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyFileDescriptor() 48 …RubyClass cFieldDescriptor = mProtobuf.defineClassUnder("FieldDescriptor", runtime.getObject(), ne… in createRubyFileDescriptor() 50 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyFileDescriptor() 51 return new RubyFieldDescriptor(runtime, klazz); in createRubyFileDescriptor() 57 public RubyFieldDescriptor(Ruby runtime, RubyClass klazz) { in RubyFieldDescriptor() argument 58 super(runtime, klazz); in RubyFieldDescriptor() [all …]
|
D | RubyDescriptorPool.java | 40 import org.jruby.runtime.*; 41 import org.jruby.runtime.builtin.IRubyObject; 48 public static void createRubyDescriptorPool(Ruby runtime) { in createRubyDescriptorPool() argument 49 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyDescriptorPool() 50 …RubyClass cDescriptorPool = protobuf.defineClassUnder("DescriptorPool", runtime.getObject(), new O… in createRubyDescriptorPool() 52 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyDescriptorPool() 53 return new RubyDescriptorPool(runtime, klazz); in createRubyDescriptorPool() 58 …descriptorPool = (RubyDescriptorPool) cDescriptorPool.newInstance(runtime.getCurrentContext(), Blo… in createRubyDescriptorPool() 68 this.cBuilder = (RubyClass) context.runtime.getClassFromPath("Google::Protobuf::Builder"); in initialize() 85 return context.runtime.getNil(); in build() [all …]
|
D | RubyMap.java | 41 import org.jruby.internal.runtime.methods.DynamicMethod; 42 import org.jruby.runtime.Block; 43 import org.jruby.runtime.ObjectAllocator; 44 import org.jruby.runtime.ThreadContext; 45 import org.jruby.runtime.builtin.IRubyObject; 57 public static void createRubyMap(Ruby runtime) { in createRubyMap() argument 58 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyMap() 59 … RubyClass cMap = protobuf.defineClassUnder("Map", runtime.getObject(), new ObjectAllocator() { in createRubyMap() 65 cMap.includeModule(runtime.getEnumerable()); in createRubyMap() 121 throw context.runtime.newArgumentError("Invalid key type for map."); in initialize() [all …]
|
D | RubyMessage.java | 38 import org.jruby.runtime.Block; 39 import org.jruby.runtime.Helpers; 40 import org.jruby.runtime.ThreadContext; 41 import org.jruby.runtime.builtin.IRubyObject; 69 final Ruby runtime = context.runtime; in initialize() local 70 … this.cRepeatedField = (RubyClass) runtime.getClassFromPath("Google::Protobuf::RepeatedField"); in initialize() 71 this.cMap = (RubyClass) runtime.getClassFromPath("Google::Protobuf::Map"); in initialize() 79 throw runtime.newArgumentError("expected Hash arguments."); in initialize() 86 … throw runtime.newTypeError("Expected string or symbols as hash keys in initialization map."); in initialize() 93 …throw runtime.newArgumentError("Expected Hash object as initializer value for map field '" + key.… in initialize() [all …]
|
D | RubyOneofDescriptor.java | 11 import org.jruby.runtime.Block; 12 import org.jruby.runtime.ObjectAllocator; 13 import org.jruby.runtime.ThreadContext; 14 import org.jruby.runtime.builtin.IRubyObject; 21 public static void createRubyOneofDescriptor(Ruby runtime) { in createRubyOneofDescriptor() argument 22 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyOneofDescriptor() 23 …RubyClass cRubyOneofDescriptor = protobuf.defineClassUnder("OneofDescriptor", runtime.getObject(),… in createRubyOneofDescriptor() 30 cRubyOneofDescriptor.includeModule(runtime.getEnumerable()); in createRubyOneofDescriptor() 64 this.name = context.runtime.newString(name.asJavaString()); in setName() 66 return context.runtime.getNil(); in setName() [all …]
|
D | RubyEnumBuilderContext.java | 41 import org.jruby.runtime.ObjectAllocator; 42 import org.jruby.runtime.ThreadContext; 43 import org.jruby.runtime.builtin.IRubyObject; 47 public static void createRubyEnumBuilderContext(Ruby runtime) { in createRubyEnumBuilderContext() argument 48 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyEnumBuilderContext() 49 …RubyClass cMessageBuilderContext = protobuf.defineClassUnder("EnumBuilderContext", runtime.getObje… in createRubyEnumBuilderContext() 51 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyEnumBuilderContext() 52 return new RubyEnumBuilderContext(runtime, klazz); in createRubyEnumBuilderContext() 78 return context.runtime.getNil(); in value()
|
/third_party/mindspore/.jenkins/check/config/ |
D | filter_cpplint.txt | 4 …nference.h" "runtime/references" 5 …nfer_tensor.h" "runtime/references" 6 …/inference.h" "runtime/explicit" 9 "mindspore/mindspore/ccsrc/runtime/device/ascend/profiling/profiling_callback_register.cc" … 10 …/core/mindrt/src/actor/actormgr.h" "runtime/references" 11 …/core/mindrt/src/actor/actorpolicyinterface.h" "runtime/references" 12 …/core/mindrt/src/actor/actorthread.h" "runtime/references" 13 …/core/mindrt/src/actor/actorpolicy.h" "runtime/references" 15 "mindspore/mindspore/ccsrc/runtime/device/gpu/gpu_kernel_runtime.cc" … 19 …fficial/cv/yolov4_tiny/infer/mxbase/src/Yolov4TinyDetection.h" "runtime/references" [all …]
|
/third_party/jsframework/ |
D | BUILD.gn | 35 js_framework = "//third_party/jsframework/runtime" 92 "runtime/main/app/App.ts", 93 "runtime/main/app/bundle.ts", 94 "runtime/main/app/helper.ts", 95 "runtime/main/app/index.ts", 96 "runtime/main/app/map.ts", 99 "runtime/main/extend/dpi/Dpi.ts", 100 "runtime/main/extend/dpi/index.ts", 101 "runtime/main/extend/i18n/I18n.ts", 102 "runtime/main/extend/i18n/index.ts", [all …]
|
/third_party/glslang/Test/baseResults/ |
D | runtimeArray.vert.out | 44 0:46 a: direct index for structure (layout( column_major shared) uniform runtime-sized array… 45 …k{layout( column_major shared) uniform runtime-sized array of int a, layout( column_major shared) … 51 0:47 b: direct index for structure (layout( column_major shared) uniform runtime-sized array… 52 …k{layout( column_major shared) uniform runtime-sized array of int a, layout( column_major shared) … 58 0:48 a: direct index for structure (layout( column_major shared) buffer runtime-sized array … 59 …ock{layout( column_major shared) buffer runtime-sized array of int a, layout( column_major shared)… 65 0:49 b: direct index for structure (layout( column_major shared) buffer runtime-sized array … 66 …ock{layout( column_major shared) buffer runtime-sized array of int a, layout( column_major shared)… 72 0:51 a: direct index for structure (layout( column_major shared) uniform runtime-sized array… 73 …k{layout( column_major shared) uniform runtime-sized array of int a, layout( column_major shared) … [all …]
|
/third_party/vk-gl-cts/scripts/ |
D | build_android_mustpass.py | 71 runtime = "23m"), 79 runtime = "2m"), 96 runtime = "46m", 104 runtime = "46m"), 111 runtime = "10m"), 130 runtime = "1h50m", 138 runtime = "1h50m"), 145 runtime = "10m"), 152 runtime = "1m"), 158 runtime = "1m"), [all …]
|
/third_party/python/Python/ |
D | pystate.c | 49 _PyRuntimeState_Init_impl(_PyRuntimeState *runtime) in _PyRuntimeState_Init_impl() argument 54 void *open_code_hook = runtime->open_code_hook; in _PyRuntimeState_Init_impl() 55 void *open_code_userdata = runtime->open_code_userdata; in _PyRuntimeState_Init_impl() 56 _Py_AuditHookEntry *audit_hook_head = runtime->audit_hook_head; in _PyRuntimeState_Init_impl() 59 Py_ssize_t unicode_next_index = runtime->unicode_ids.next_index; in _PyRuntimeState_Init_impl() 61 memset(runtime, 0, sizeof(*runtime)); in _PyRuntimeState_Init_impl() 63 runtime->open_code_hook = open_code_hook; in _PyRuntimeState_Init_impl() 64 runtime->open_code_userdata = open_code_userdata; in _PyRuntimeState_Init_impl() 65 runtime->audit_hook_head = audit_hook_head; in _PyRuntimeState_Init_impl() 67 _PyEval_InitRuntimeState(&runtime->ceval); in _PyRuntimeState_Init_impl() [all …]
|
/third_party/boost/libs/regex/build/ |
D | Jamfile.v2 | 64 …lib icuuc : : <runtime-link>shared <… 65 …lib icuuc : : <toolset>msvc <variant>debug <name>icuucd <runtime-link>shared <… 66 …lib icuuc : : <toolset>intel <target-os>windows <variant>debug <name>icuucd <runtime-link>shared <… 67 …lib icuuc : : <name>sicuuc <runtime-link>static <… 68 …lib icuuc : : <toolset>msvc <variant>debug <name>sicuucd <runtime-link>static … 69 …lib icuuc : : <toolset>intel <target-os>windows <variant>debug <name>sicuucd <runtime-link>static … 78 …lib icudt : : <name>icudata <runtime-link>shared <conditional>@p… 79 …lib icudt : : <name>icudt <toolset>msvc <runtime-link>shared <conditional>@p… 80 …lib icudt : : <name>icudt <toolset>intel <target-os>windows <runtime-link>shared <conditional>@p… 81 …lib icudt : : <name>sicudata <runtime-link>static <conditional>@… [all …]
|
/third_party/gettext/gettext-tools/m4/ |
D | Makefile.am | 23 ../../gettext-runtime/gnulib-m4/host-cpu-c-abi.m4 \ 24 ../../gettext-runtime/gnulib-m4/lib-ld.m4 \ 25 ../../gettext-runtime/gnulib-m4/lib-link.m4 \ 26 ../../gettext-runtime/gnulib-m4/lib-prefix.m4 \ 27 ../../gettext-runtime/m4/gettext.m4 \ 28 ../../gettext-runtime/m4/iconv.m4 \ 29 ../../gettext-runtime/m4/intlmacosx.m4 \ 30 ../../gettext-runtime/m4/nls.m4 \ 31 ../../gettext-runtime/m4/po.m4 \ 32 ../../gettext-runtime/m4/progtest.m4
|
/third_party/boost/tools/build/src/tools/ |
D | ifort.jam | 25 flags ifort.compile FFLAGS <runtime-debugging>off/<runtime-link>shared : /MD ; 26 flags ifort.compile FFLAGS <runtime-debugging>on/<runtime-link>shared : /MDd ; 27 flags ifort.compile FFLAGS <runtime-debugging>off/<runtime-link>static/<threading>single : /ML ; 28 flags ifort.compile FFLAGS <runtime-debugging>on/<runtime-link>static/<threading>single : /MLd ; 29 flags ifort.compile FFLAGS <runtime-debugging>off/<runtime-link>static/<threading>multi : /MT ; 30 flags ifort.compile FFLAGS <runtime-debugging>on/<runtime-link>static/<threading>multi : /MTd ;
|
/third_party/boost/libs/test/test/ |
D | gen_coverage.sh | 11 bjam toolset=gcc-4.9.2 runtime-param-test 14 …. --directory ../../../bin.v2/libs/test/test/runtime-param-test.test/gcc-4.9.2/debug/utils-ts -c -… 15 lcov --remove runtime-param-test.info "/usr*" -o runtime-param-test.info # remove output for extern… 16 …v --remove runtime-param-test.info "boost" "/boost/c*" "/boost/d*" "/boost/e*" "/boost/f*" "/b… 18 genhtml -o ./coverage -t "runtime-param-test coverage" --num-spaces 4 runtime-param-test.info
|