/external/icu/icu4c/source/tools/toolutil/ |
D | writesrc.c | 104 const char *postfix) { in usrc_writeArray() argument 156 if(postfix!=NULL) { in usrc_writeArray() 157 fputs(postfix, f); in usrc_writeArray() 165 const char *postfix) { in usrc_writeUTrie2Arrays() argument 168 … usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength+pTrie->dataLength, postfix); in usrc_writeUTrie2Arrays() 171 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength, postfix); in usrc_writeUTrie2Arrays() 172 usrc_writeArray(f, data32Prefix, pTrie->data32, 32, pTrie->dataLength, postfix); in usrc_writeUTrie2Arrays() 181 const char *postfix) { in usrc_writeUTrie2Struct() argument 220 if(postfix!=NULL) { in usrc_writeUTrie2Struct() 221 fputs(postfix, f); in usrc_writeUTrie2Struct() [all …]
|
D | writesrc.h | 51 const char *postfix); 62 const char *postfix); 74 const char *postfix); 90 const char *postfix);
|
/external/v8/test/mjsunit/ |
D | whitespaces.js | 56 var postfix = str[1]; 59 assertEquals(postfix, neg_match[0]); 75 function test_parseInt(c, postfix) { argument 78 var str = c + c + "123" + postfix; 92 function test_stringtonumber(c, postfix) { argument 95 var result = 1 + Number(c + "123" + c + postfix);
|
/external/fio/lib/ |
D | num2str.c | 14 const char *postfix[] = { "", "K", "M", "G", "P", "E" }; in num2str() local 38 while (post_index < sizeof(postfix)) { in num2str() 51 if (post_index >= ARRAY_LENGTH(postfix)) in num2str() 55 postfix[post_index], byte_postfix[byte_post_index]); in num2str() 76 postfix[post_index], byte_postfix[byte_post_index]); in num2str()
|
/external/clang/test/Parser/ |
D | attributes.mm | 14 @interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directi… 17 @implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C… 21 @class EXP OC; // expected-error-re {{postfix attributes are not allowed on Objective-C directives{… 24 @protocol EXP P @end // expected-error {{postfix attributes are not allowed on Objective-C directiv…
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | Tabber.java | 42 return prefix + result.toString() + postfix; in process() 46 private String postfix = ""; field in Tabber 209 return postfix; in getPostfix() 222 postfix = string; in setPostfix()
|
/external/regex-re2/re2/testing/ |
D | regexp_generator.cc | 60 vector<string> postfix; in Generate() local 61 GeneratePostfix(&postfix, 0, 0, 0); in Generate() 70 vector<string> postfix; in GenerateRandom() local 71 GenerateRandomPostfix(&postfix, 0, 0, 0); in GenerateRandom()
|
/external/boringssl/src/crypto/x509/ |
D | by_dir.c | 293 const char *postfix=""; in get_cert_by_subject() local 303 postfix=""; in get_cert_by_subject() 310 postfix="r"; in get_cert_by_subject() 390 postfix,k); in get_cert_by_subject() 396 postfix,k); in get_cert_by_subject()
|
/external/v8/test/webkit/ |
D | parser-xml-close-comment-expected.txt | 29 … error' --> threw exception ReferenceError: Invalid left-hand side expression in postfix operation. 30 PASS /**/ 1 --> threw exception ReferenceError: Invalid left-hand side expression in postfix operat… 31 PASS 1 /**/ --> threw exception ReferenceError: Invalid left-hand side expression in postfix operat…
|
D | toString-prefix-postfix-preserve-parens-expected.txt | 24 This test checks that toString() round-trip on a function that has prefix, postfix and typeof opera…
|
/external/deqp/doc/testspecs/GLES2/ |
D | performance.compiler.txt | 56 The method for defeating the shader cache is to append a postfix to all uniform, 57 attribute and varying names. The postfix depends on the current time as well as 58 the case that is in question. In case of cache-avoiding cases, the postfix also
|
/external/v8/test/webkit/fast/js/ |
D | modify-non-references-expected.txt | 30 PASS Number()++ threw exception ReferenceError: Invalid left-hand side expression in postfix operat… 31 PASS Number()-- threw exception ReferenceError: Invalid left-hand side expression in postfix operat…
|
D | basic-strict-mode-expected.txt | 156 …(1, eval)++ threw exception ReferenceError: Invalid left-hand side expression in postfix operation. 157 …, eval)++}) threw exception ReferenceError: Invalid left-hand side expression in postfix operation. 160 …(1, eval)-- threw exception ReferenceError: Invalid left-hand side expression in postfix operation. 161 …, eval)--}) threw exception ReferenceError: Invalid left-hand side expression in postfix operation. 164 …uments)++ } threw exception ReferenceError: Invalid left-hand side expression in postfix operation. 165 …ents)++ }}) threw exception ReferenceError: Invalid left-hand side expression in postfix operation. 168 …uments)-- } threw exception ReferenceError: Invalid left-hand side expression in postfix operation. 169 …ents)-- }}) threw exception ReferenceError: Invalid left-hand side expression in postfix operation.
|
/external/clang/test/SemaCXX/ |
D | overloaded-operator.cpp | 472 C<int> postfix; in g() local 474 postfix--; // ok in g()
|
/external/deqp/modules/glshared/ |
D | glsShaderLibrary.cpp | 1035 std::string postfix = ""; in parseGLSLVersion() local 1043 postfix = m_curTokenStr; in parseGLSLVersion() 1047 if (versionNum == 100 && postfix == "es") version = glu::GLSL_VERSION_100_ES; in parseGLSLVersion() 1048 else if (versionNum == 300 && postfix == "es") version = glu::GLSL_VERSION_300_ES; in parseGLSLVersion() 1049 else if (versionNum == 310 && postfix == "es") version = glu::GLSL_VERSION_310_ES; in parseGLSLVersion()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/ |
D | TestUtilities.java | 144 String postfix = "nop"; in TestCollectionUtilitySpeed() local 146 ts1.add(prefix + String.valueOf(i) + postfix); in TestCollectionUtilitySpeed() 147 ts2.add(prefix + String.valueOf(i) + postfix); in TestCollectionUtilitySpeed()
|
/external/valgrind/coregrind/m_gdbserver/ |
D | target.c | 105 static const char *postfix[3] = { "", "s1", "s2" }; in build_shadow_arch() local 112 + strlen (postfix[i]) + 1); in build_shadow_arch() 114 strcat (regname, postfix[i]); in build_shadow_arch()
|
/external/fio/ |
D | parse.c | 427 char *postfix; in opt_len() local 429 postfix = strchr(str, ':'); in opt_len() 430 if (!postfix) in opt_len() 433 return (int)(postfix - str); in opt_len()
|
D | goptions.c | 828 const gchar *postfix[] = { "B", "KB", "MB", "GB", "PB", "TB", "" }; in gopt_new_str_val() local 850 while (strlen(postfix[i])) { in gopt_new_str_val() 851 gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(g->combo), postfix[i]); in gopt_new_str_val()
|
/external/deqp/modules/gles31/functional/ |
D | es31fDebugTests.cpp | 2933 const char* const postfix = "_getboolean"; \ in init() 2938 const char* const postfix = "_getinteger"; \ in init() 2943 const char* const postfix = "_getinteger64"; \ in init() 2948 const char* const postfix = "_getfloat"; \ in init() 2958 const char* const postfix = "_isenabled"; \ in init() 2969 (std::string(limits[ndx].name) + postfix).c_str(), in init() 2974 …s->addChild(new IsEnabledCase (m_context, (std::string("debug_output") + postfix).c_str(), "T… in init() 2975 …new IsEnabledCase (m_context, (std::string("debug_output_synchronous") + postfix).c_str(), "Test… in init() 2977 …PositiveIntegerCase (m_context, (std::string("debug_logged_messages") + postfix).c_str(), "Tes… in init() 2978 …egerCase (m_context, (std::string("debug_next_logged_message_length") + postfix).c_str(), "Test D… in init() [all …]
|
/external/deqp/framework/delibs/cmake/ |
D | Defs.cmake | 79 # \note " x" postfix is to work around bug in CMake that causes
|
/external/pdfium/fpdfsdk/src/javascript/ |
D | PublicMethods.cpp | 2004 CFX_WideString prefix,postfix; in AFMergeChange() local 2013 postfix = swValue.Mid(pEventHandler->SelEnd(), swValue.GetLength() - pEventHandler->SelEnd()); in AFMergeChange() 2014 else postfix = L""; in AFMergeChange() 2016 vRet = (prefix + pEventHandler->Change() + postfix).c_str(); in AFMergeChange()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | README-P2P | 642 p2p_set ssid_postfix <postfix> 644 Set postfix string to be added to the automatically generated P2P SSID 645 (DIRECT-<two random characters>). For example, postfix of "-testing" 716 set p2p_ssid_postfix <P2P SSID postfix> 718 Set P2P SSID postfix.
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
D | dbus_new_handlers_p2p.c | 1033 char *postfix; in wpas_dbus_setter_p2p_device_config() local 1038 postfix = os_strdup(entry.str_value); in wpas_dbus_setter_p2p_device_config() 1039 if (!postfix) in wpas_dbus_setter_p2p_device_config() 1043 wpa_s->conf->p2p_ssid_postfix = postfix; in wpas_dbus_setter_p2p_device_config()
|
/external/v8/test/preparser/ |
D | strict-identifiers.pyt | 129 postfix_var = StrictTemplate("postfix-$opname-$id", """
|