/third_party/mesa3d/src/intel/common/ |
D | intel_sample_positions.h | 69 #define INTEL_SAMPLE_POS_ELEM(prefix, arr, sample_idx) \ argument 70 prefix##sample_idx##XOffset = arr[sample_idx].x; \ 71 prefix##sample_idx##YOffset = arr[sample_idx].y; 73 #define INTEL_SAMPLE_POS_1X_ARRAY(prefix, arr)\ argument 74 INTEL_SAMPLE_POS_ELEM(prefix, arr, 0); 76 #define INTEL_SAMPLE_POS_2X_ARRAY(prefix, arr) \ argument 77 INTEL_SAMPLE_POS_ELEM(prefix, arr, 0); \ 78 INTEL_SAMPLE_POS_ELEM(prefix, arr, 1); 80 #define INTEL_SAMPLE_POS_4X_ARRAY(prefix, arr) \ argument 81 INTEL_SAMPLE_POS_ELEM(prefix, arr, 0); \ [all …]
|
/third_party/gettext/ |
D | PACKAGING | 61 $prefix/share/gettext/ABOUT-NLS 63 $prefix/bin/gettext 64 $prefix/bin/ngettext 65 $prefix/bin/envsubst 66 $prefix/bin/gettext.sh 67 $prefix/share/man/man1/gettext.1 68 $prefix/share/man/man1/ngettext.1 69 $prefix/share/man/man1/envsubst.1 70 $prefix/share/doc/gettext/gettext.1.html 71 $prefix/share/doc/gettext/ngettext.1.html [all …]
|
/third_party/libevdev/libevdev/ |
D | make-event-names.py | 69 def print_bits(bits, prefix): argument 70 if not hasattr(bits, prefix): 72 print("static const char * const %s_map[%s_MAX + 1] = {" % (prefix, prefix.upper())) 73 for val, name in list(getattr(bits, prefix).items()): 75 if prefix == "key": 85 for prefix in prefixes: 86 if prefix in ["BTN_", "EV_", "INPUT_PROP_", "MT_TOOL_"]: 88 print(" [EV_%s] = %s_map," % (prefix[:-1], prefix[:-1].lower())) 103 prefix = bits.ev[val][3:] 104 if prefix + "_" in prefixes: [all …]
|
/third_party/boost/boost/ratio/ |
D | ratio_io.hpp | 66 static std::basic_string<CharT> symbol() {return prefix();} in symbol() 67 static std::basic_string<CharT> prefix(); 72 ratio_string<Ratio, CharT>::prefix() in prefix() function in boost::ratio_string 91 static std::string prefix() { in prefix() function 94 typename ratio_static_string<Ratio, CharT>::prefix in prefix() 118 static std::string prefix() {return std::string("atto");} in prefix() function 127 static std::u16string prefix() {return std::u16string(u"atto");} in prefix() function 134 static std::u32string prefix() {return std::u32string(U"atto");} in prefix() function 144 static std::wstring prefix() {return std::wstring(L"atto");} in prefix() function 163 static std::string prefix() {return std::string("femto");} in prefix() function [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/ |
D | AffixMatcher.java | 24 private final AffixPatternMatcher prefix; field in AffixMatcher 35 if (length(lhs.prefix) != length(rhs.prefix)) { 36 return length(lhs.prefix) > length(rhs.prefix) ? -1 : 1; 119 AffixPatternMatcher prefix = AffixPatternMatcher in createMatchers() local 133 posPrefix = prefix; in createMatchers() 135 } else if (Objects.equals(prefix, posPrefix) && Objects.equals(suffix, posSuffix)) { in createMatchers() 145 matchers.add(getInstance(prefix, suffix, flags)); in createMatchers() 146 if (includeUnpaired && prefix != null && suffix != null) { in createMatchers() 148 if (type == PatternSignType.POS || !Objects.equals(prefix, posPrefix)) { in createMatchers() 149 matchers.add(getInstance(prefix, null, flags)); in createMatchers() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/ |
D | AffixMatcher.java | 22 private final AffixPatternMatcher prefix; field in AffixMatcher 33 if (length(lhs.prefix) != length(rhs.prefix)) { 34 return length(lhs.prefix) > length(rhs.prefix) ? -1 : 1; 117 AffixPatternMatcher prefix = AffixPatternMatcher in createMatchers() local 131 posPrefix = prefix; in createMatchers() 133 } else if (Objects.equals(prefix, posPrefix) && Objects.equals(suffix, posSuffix)) { in createMatchers() 143 matchers.add(getInstance(prefix, suffix, flags)); in createMatchers() 144 if (includeUnpaired && prefix != null && suffix != null) { in createMatchers() 146 if (type == PatternSignType.POS || !Objects.equals(prefix, posPrefix)) { in createMatchers() 147 matchers.add(getInstance(prefix, null, flags)); in createMatchers() [all …]
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_history.py | 31 self.assertIsNone(self.history.prefix) 51 self.history.prefix = line1 54 self.assertIsNone(self.history.prefix) 90 def fetch_test(self, reverse, line, prefix, index, *, bell=False): argument 102 Equal(History.prefix, prefix) 107 prefix = '' 109 test(True, line2, prefix, 1) 110 test(True, line1, prefix, 0) 111 test(True, prefix, None, None, bell=True) 114 prefix = '' [all …]
|
/third_party/libwebsockets/cmake/ |
D | FindGit.cmake | 31 # GIT_WC_INFO(<dir> <var-prefix>) 36 # <var-prefix>_WC_REVISION_HASH - Current SHA1 hash 37 # <var-prefix>_WC_REVISION - Current SHA1 hash 38 # <var-prefix>_WC_REVISION_NAME - Name associated with <var-prefix>_WC_REVISION_HASH 39 # <var-prefix>_WC_URL - output of command `git config --get remote.origin.url' 40 # <var-prefix>_WC_ROOT - Same value as working copy URL 41 # <var-prefix>_WC_GITSVN - Set to false 44 # <var-prefix>_WC_GITSVN - Set to True if it is a 45 # <var-prefix>_WC_INFO - output of command `git svn info' 46 # <var-prefix>_WC_URL - url of the associated SVN repository [all …]
|
/third_party/node/deps/npm/node_modules/glob/ |
D | sync.js | 88 var prefix 98 prefix = null 105 prefix = pattern.slice(0, n).join('/') 113 if (prefix === null) 115 else if (isAbsolute(prefix) || isAbsolute(pattern.join('/'))) { 116 if (!prefix || !isAbsolute(prefix)) 117 prefix = '/' + prefix 118 read = prefix 120 read = prefix 130 this._processGlobStar(prefix, read, abs, remain, index, inGlobStar) [all …]
|
/third_party/node/test/fixtures/wpt/resources/ |
D | check-layout-th.js | 5 function checkSubtreeExpectedValues(t, parent, prefix) argument 7 var checkedLayout = checkExpectedValues(t, parent, prefix); 9 checkedLayout |= checkSubtreeExpectedValues(t, node, prefix); 28 function checkExpectedValues(t, node, prefix) argument 34 assert_tolerance(node.offsetWidth, expectedWidth, prefix + "width"); 39 assert_tolerance(node.offsetHeight, expectedHeight, prefix + "height"); 44 assert_tolerance(node.offsetLeft, expectedOffset, prefix + "offsetLeft"); 49 assert_tolerance(node.offsetTop, expectedOffset, prefix + "offsetTop"); 54 assert_tolerance(node.clientWidth, expectedWidth, prefix + "clientWidth"); 59 assert_tolerance(node.clientHeight, expectedHeight, prefix + "clientHeight"); [all …]
|
/third_party/libxml2/ |
D | xml2-config.in | 3 prefix=@prefix@ 17 --prefix=DIR change libxml prefix [default $prefix] 18 --exec-prefix=DIR change libxml exec prefix [default $exec_prefix] 41 --prefix=*) 42 prefix=$optarg 43 includedir=$prefix/include 44 libdir=$prefix/lib 47 --prefix) 48 echo $prefix 51 --exec-prefix=*) [all …]
|
/third_party/glib/tests/ |
D | completion-test.c | 32 gchar *prefix; in main() local 45 items = g_completion_complete (cmp, "a", &prefix); in main() 46 g_assert (!strcmp ("a\302", prefix)); in main() 48 g_free (prefix); in main() 50 items = g_completion_complete_utf8 (cmp, "a", &prefix); in main() 51 g_assert (!strcmp ("a", prefix)); in main() 53 g_free (prefix); in main() 55 items = g_completion_complete (cmp, "b", &prefix); in main() 56 g_assert (!strcmp ("b", prefix)); in main() 58 g_free (prefix); in main() [all …]
|
/third_party/boost/libs/ratio/test/ratio_io/ |
D | ratio_io_pass.cpp | 26 boost::ratio_string<boost::atto, char>::prefix() == "atto" in main() 34 boost::ratio_string<boost::femto, char>::prefix() == "femto" in main() 42 boost::ratio_string<boost::pico, char>::prefix() == "pico" in main() 50 boost::ratio_string<boost::nano, char>::prefix() == "nano" in main() 58 boost::ratio_string<boost::micro, char>::prefix() == "micro" in main() 66 boost::ratio_string<boost::milli, char>::prefix() == "milli" in main() 74 boost::ratio_string<boost::centi, char>::prefix() == "centi" in main() 82 boost::ratio_string<boost::deci, char>::prefix() == "deci" in main() 90 boost::ratio_string<boost::deca, char>::prefix() == "deca" in main() 98 boost::ratio_string<boost::hecto, char>::prefix() == "hecto" in main() [all …]
|
/third_party/boost/libs/log/src/posix/ |
D | object_name.cpp | 72 std::string prefix = "/boost.log."; 77 prefix.append("pgid."); 79 format_id(getpgrp(), prefix); 81 format_id(getuid(), prefix); 88 prefix.append("sid."); 90 format_id(getsid(0), prefix); 92 format_id(getuid(), prefix); 114 prefix += "user."; 115 prefix += result->pw_name; 119 prefix += "uid."; [all …]
|
/third_party/python/Lib/lib2to3/fixes/ |
D | fix_idioms.py | 103 x.prefix = "" 104 T.prefix = " " 107 test.prefix = " " 109 test.prefix = node.prefix 114 one.replace(Name("True", prefix=one.prefix)) 123 list_call.replace(Name("sorted", prefix=list_call.prefix)) 126 new.prefix = "" 128 prefix=simple_expr.prefix)) 133 btwn = sort_stmt.prefix 141 prefix_lines = (btwn.rpartition("\n")[0], next_stmt[0].prefix) [all …]
|
/third_party/boost/boost/ratio/detail/ |
D | ratio_io.hpp | 63 static std::basic_string<CharT> prefix() {return long_name();} in prefix() function 94 static std::basic_string<CharT> prefix() {return long_name();} in prefix() function 118 static std::string prefix() {return long_name();} in prefix() function 129 static std::u16string prefix() {return long_name();} in prefix() function 138 static std::u32string prefix() {return long_name();} in prefix() function 150 static std::wstring prefix() {return long_name();} in prefix() function 177 static std::string prefix() {return long_name();} in prefix() function 188 static std::u16string prefix() {return long_name();} in prefix() function 197 static std::u32string prefix() {return long_name();} in prefix() function 209 static std::wstring prefix() {return long_name();} in prefix() function [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | dnxhddata.h | 65 static av_always_inline uint64_t ff_dnxhd_check_header_prefix_hr(uint64_t prefix) in ff_dnxhd_check_header_prefix_hr() argument 67 uint64_t data_offset = prefix >> 16; in ff_dnxhd_check_header_prefix_hr() 68 if ((prefix & 0xFFFF0000FFFFLL) == 0x0300 && in ff_dnxhd_check_header_prefix_hr() 71 return prefix; in ff_dnxhd_check_header_prefix_hr() 75 static av_always_inline uint64_t ff_dnxhd_check_header_prefix(uint64_t prefix) in ff_dnxhd_check_header_prefix() argument 77 if (prefix == DNXHD_HEADER_INITIAL || in ff_dnxhd_check_header_prefix() 78 prefix == DNXHD_HEADER_444 || in ff_dnxhd_check_header_prefix() 79 ff_dnxhd_check_header_prefix_hr(prefix)) in ff_dnxhd_check_header_prefix() 80 return prefix; in ff_dnxhd_check_header_prefix() 86 uint64_t prefix = AV_RB32(buf); in ff_dnxhd_parse_header_prefix() local [all …]
|
/third_party/boost/libs/variant2/benchmark/ |
D | benchmark2.cpp | 41 struct prefix struct 46 struct X1: prefix {}; argument 47 struct X2: prefix {}; 48 struct X3: prefix {}; 49 struct X4: prefix {}; 50 struct X5: prefix {}; 51 struct X6: prefix {}; 52 struct X7: prefix {}; 53 struct X8: prefix {}; 54 struct X9: prefix {}; [all …]
|
/third_party/node/deps/npm/lib/utils/ |
D | pulse-till-done.js | 9 function pulseStart (prefix) { argument 12 log.gauge.pulse(prefix) 20 module.exports = function (prefix, cb) { argument 21 validate('SF', [prefix, cb]) 22 if (!prefix) prefix = 'network' 23 pulseStart(prefix) 31 function pulseWhile (prefix, promise) { argument 33 promise = prefix 34 prefix = '' 36 pulseStart(prefix)
|
/third_party/node/deps/npm/node_modules/console-control-strings/ |
D | index.js | 5 var prefix = '\x1b[' variable 8 return prefix + (num || '') + 'A' 12 return prefix + (num || '') + 'B' 16 return prefix + (num || '') + 'C' 20 return prefix + (num || '') + 'D' 24 return prefix + (num || '') + 'E' 28 return prefix + (num || '') + 'F' 33 return prefix + num + 'G' 37 return prefix + 'J' 41 return prefix + 'K' [all …]
|
/third_party/python/Modules/_sha3/kcp/ |
D | KeccakSponge.h | 133 #define KCP_DeclareSpongeStructure(prefix, size, alignment) \ argument 134 ALIGN(alignment) typedef struct prefix##_SpongeInstanceStruct { \ 139 } prefix##_SpongeInstance; 141 #define KCP_DeclareSpongeFunctions(prefix) \ argument 142 …int prefix##_Sponge(unsigned int rate, unsigned int capacity, const unsigned char *input, size_t i… 143 …int prefix##_SpongeInitialize(prefix##_SpongeInstance *spongeInstance, unsigned int rate, unsigned… 144 …int prefix##_SpongeAbsorb(prefix##_SpongeInstance *spongeInstance, const unsigned char *data, size… 145 …int prefix##_SpongeAbsorbLastFewBits(prefix##_SpongeInstance *spongeInstance, unsigned char delimi… 146 …int prefix##_SpongeSqueeze(prefix##_SpongeInstance *spongeInstance, unsigned char *data, size_t da…
|
/third_party/python/Lib/idlelib/ |
D | history.py | 25 self.prefix = None 51 prefix = self.prefix 52 if pointer is not None and prefix is not None: 55 pointer = prefix = None 57 if pointer is None or prefix is None: 58 prefix = self.text.get("iomark", "end-1c") 67 nprefix = len(prefix) 75 if self.text.get("iomark", "end-1c") != prefix: 77 self.text.insert("iomark", prefix, "stdin") 78 pointer = prefix = None [all …]
|
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/src/ |
D | print.cpp | 81 void printScreenProperties(unsigned int screenid, const char* prefix) in printScreenProperties() argument 83 cout << prefix << "screen " << screenid << " (0x" << hex << screenid << dec in printScreenProperties() 85 cout << prefix << "---------------------------------------\n"; in printScreenProperties() 97 cout << prefix << "- connector name: " << screenProperties.connectorName << "\n"; in printScreenProperties() 99 cout << prefix << "- resolution: x=" << screenProperties.screenWidth << ", y=" in printScreenProperties() 102 cout << prefix << "- layer render order: "; in printScreenProperties() 114 void printLayerProperties(unsigned int layerid, const char* prefix) in printLayerProperties() argument 116 cout << prefix << "layer " << layerid << " (0x" << hex << layerid << dec in printLayerProperties() 118 cout << prefix << "---------------------------------------\n"; in printLayerProperties() 130 cout << prefix << "- destination region: x=" << p.destX << ", y=" in printLayerProperties() [all …]
|
/third_party/glib/glib/deprecated/ |
D | gcompletion.c | 134 gcomp->prefix = NULL; in g_completion_new() 165 if (cmp->prefix) in g_completion_add_items() 167 g_free (cmp->prefix); in g_completion_add_items() 168 cmp->prefix = NULL; in g_completion_add_items() 232 g_free (cmp->prefix); in g_completion_clear_items() 233 cmp->prefix = NULL; in g_completion_clear_items() 255 len = strlen(cmp->prefix); in completion_check_cache() 276 strncpy (*new_prefix, cmp->prefix, len); in completion_check_cache() 306 const gchar *prefix, in g_completion_complete_utf8() argument 312 list = g_completion_complete (cmp, prefix, new_prefix); in g_completion_complete_utf8() [all …]
|
/third_party/openssl/ms/ |
D | uplink-x86_64.pl | 17 $prefix="_lazy"; 26 .type $prefix${i},\@abi-omnipotent 28 $prefix${i}: 44 $prefix${i}_end: 45 .size $prefix${i},.-$prefix${i} 53 for ($i=1;$i<=$N;$i++) { print " .quad $prefix$i\n"; } 60 .rva $prefix${i},$prefix${i}_end,${prefix}_unwind_info 66 ${prefix}_unwind_info:
|