Searched refs:postfix (Results 1 - 25 of 42) sorted by relevance

12

/external/icu/icu4c/source/tools/toolutil/
H A Dwritesrc.h42 * The prefix and postfix are optional (can be NULL) and are written first/last.
44 * The {} and declaration etc. need to be included in prefix/postfix or
51 const char *postfix);
62 const char *postfix);
66 * The {} and declaration etc. need to be included in prefix/postfix or
74 const char *postfix);
81 * The prefix and postfix are optional (can be NULL) and are written first/last.
83 * The {} and declaration etc. need to be included in prefix/postfix or
90 const char *postfix);
H A Dwritesrc.c104 const char *postfix) {
156 if(postfix!=NULL) {
157 fputs(postfix, f);
165 const char *postfix) {
168 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength+pTrie->dataLength, postfix);
171 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength, postfix);
172 usrc_writeArray(f, data32Prefix, pTrie->data32, 32, pTrie->dataLength, postfix);
181 const char *postfix) {
220 if(postfix!=NULL) {
221 fputs(postfix,
101 usrc_writeArray(FILE *f, const char *prefix, const void *p, int32_t width, int32_t length, const char *postfix) argument
162 usrc_writeUTrie2Arrays(FILE *f, const char *indexPrefix, const char *data32Prefix, const UTrie2 *pTrie, const char *postfix) argument
177 usrc_writeUTrie2Struct(FILE *f, const char *prefix, const UTrie2 *pTrie, const char *indexName, const char *data32Name, const char *postfix) argument
226 usrc_writeArrayOfMostlyInvChars(FILE *f, const char *prefix, const char *p, int32_t length, const char *postfix) argument
[all...]
/external/fio/lib/
H A Dnum2str.c14 const char *postfix[] = { "", "K", "M", "G", "P", "E" }; local
38 while (post_index < sizeof(postfix)) {
51 if (post_index >= ARRAY_LENGTH(postfix))
55 postfix[post_index], byte_postfix[byte_post_index]);
76 postfix[post_index], byte_postfix[byte_post_index]);
/external/v8/test/mjsunit/
H A Dwhitespaces.js56 var postfix = str[1];
59 assertEquals(postfix, neg_match[0]);
75 function test_parseInt(c, postfix) {
78 var str = c + c + "123" + postfix;
92 function test_stringtonumber(c, postfix) {
95 var result = 1 + Number(c + "123" + c + postfix);
/external/deqp/external/vulkancts/
H A Dgen_framework.py222 def endswith (s, postfix):
223 return len(s) >= len(postfix) and s[len(s)-len(postfix):] == postfix
270 def endsWith (str, postfix):
271 return str[-len(postfix):] == postfix
275 for postfix in knownExtPostfixes:
276 if endsWith(name, postfix):
277 return (name[:-len(postfix)], postfi
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DTabber.java43 return prefix + result.toString() + postfix;
47 private String postfix = ""; field in class:Tabber
210 return postfix;
223 postfix = string;
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DTabber.java42 return prefix + result.toString() + postfix;
46 private String postfix = ""; field in class:Tabber
209 return postfix;
222 postfix = string;
/external/regex-re2/re2/testing/
H A Dregexp_generator.cc9 // postfix language. Each command in the language is a string,
60 vector<string> postfix; local
61 GeneratePostfix(&postfix, 0, 0, 0);
70 vector<string> postfix; local
71 GenerateRandomPostfix(&postfix, 0, 0, 0);
88 // Generates all possible postfix command sequences.
91 // post: the current postfix sequence
135 // Generates a random postfix command sequence.
177 // Interprets the postfix command sequence to create a regular expression
/external/boringssl/src/crypto/x509/
H A Dby_dir.c293 const char *postfix=""; local
303 postfix="";
310 postfix="r";
390 postfix,k);
396 postfix,k);
/external/autotest/client/bin/
H A Dsite_utils.py633 def _get_match_from_file(path, line, prefix, postfix):
635 Matches line in path and returns string between first prefix and postfix.
641 # Strip everything from back of string including first occurence of postfix.
642 if postfix:
643 match = re.split(postfix, match)[0]
647 def _get_float_from_file(path, line, prefix, postfix):
648 match = _get_match_from_file(path, line, prefix, postfix)
652 def _get_int_from_file(path, line, prefix, postfix):
653 match = _get_match_from_file(path, line, prefix, postfix)
657 def _get_hex_from_file(path, line, prefix, postfix)
[all...]
/external/clang/test/SemaCXX/
H A Doverloaded-operator.cpp472 C<int> postfix; local
474 postfix--; // ok
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DTestUtilities.java148 String postfix = "nop";
150 ts1.add(prefix + String.valueOf(i) + postfix);
151 ts2.add(prefix + String.valueOf(i) + postfix);
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
H A DTestUtilities.java144 String postfix = "nop";
146 ts1.add(prefix + String.valueOf(i) + postfix);
147 ts2.add(prefix + String.valueOf(i) + postfix);
/external/valgrind/coregrind/m_gdbserver/
H A Dtarget.c105 static const char *postfix[3] = { "", "s1", "s2" }; local
112 + strlen (postfix[i]) + 1);
114 strcat (regname, postfix[i]);
/external/deqp/framework/opengl/
H A DgluShaderLibrary.cpp1251 std::string postfix = ""; local
1259 postfix = m_curTokenStr;
1265 if (versionNum == 100 && postfix == "es") version = glu::GLSL_VERSION_100_ES;
1266 else if (versionNum == 300 && postfix == "es") version = glu::GLSL_VERSION_300_ES;
1267 else if (versionNum == 310 && postfix == "es") version = glu::GLSL_VERSION_310_ES;
1268 else if (versionNum == 320 && postfix == "es") version = glu::GLSL_VERSION_320_ES;
/external/fio/
H A Dparse.c101 "string with possible k/m/g postfix (opt=4k)",
102 "string with time postfix (opt=10s)",
427 char *postfix; local
429 postfix = strchr(str, ':');
430 if (!postfix)
433 return (int)(postfix - str);
H A Dgoptions.c828 const gchar *postfix[] = { "B", "KB", "MB", "GB", "PB", "TB", "" }; local
850 while (strlen(postfix[i])) {
851 gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(g->combo), postfix[i]);
/external/deqp/modules/gles31/functional/
H A Des31fDebugTests.cpp2981 const char* const postfix = "_getboolean"; \
2986 const char* const postfix = "_getinteger"; \
2991 const char* const postfix = "_getinteger64"; \
2996 const char* const postfix = "_getfloat"; \
3006 const char* const postfix = "_isenabled"; \
3017 (std::string(limits[ndx].name) + postfix).c_str(),
3022 FOR_ALL_ENABLE_TYPES(queries->addChild(new IsEnabledCase (m_context, (std::string("debug_output") + postfix).c_str(), "Test DEBUG_OUTPUT", GL_DEBUG_OUTPUT, IsEnabledCase::INITIAL_CTX_IS_DEBUG, queryType)));
3023 FOR_ALL_ENABLE_TYPES(queries->addChild(new IsEnabledCase (m_context, (std::string("debug_output_synchronous") + postfix).c_str(), "Test DEBUG_OUTPUT_SYNCHRONOUS", GL_DEBUG_OUTPUT_SYNCHRONOUS, IsEnabledCase::INITIAL_FALSE, queryType)));
3025 FOR_ALL_TYPES(queries->addChild(new PositiveIntegerCase (m_context, (std::string("debug_logged_messages") + postfix).c_str(), "Test DEBUG_LOGGED_MESSAGES", GL_DEBUG_LOGGED_MESSAGES, queryType)));
3026 FOR_ALL_TYPES(queries->addChild(new PositiveIntegerCase (m_context, (std::string("debug_next_logged_message_length") + postfix)
[all...]
/external/pdfium/fpdfsdk/src/javascript/
H A DPublicMethods.cpp1800 CFX_WideString prefix, postfix; local
1809 postfix = swValue.Mid(pEventHandler->SelEnd(),
1812 postfix = L"";
1814 vRet = (prefix + pEventHandler->Change() + postfix).c_str();
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineTimestampTests.cpp62 #define GEN_DESC_STRING(name,postfix) \
70 desc << " " << #postfix; \
72 desc << "_" << #postfix; \
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_handlers_p2p.c1035 char *postfix; local
1040 postfix = os_strdup(entry.str_value);
1041 if (!postfix)
1045 wpa_s->conf->p2p_ssid_postfix = postfix;
/external/vulkan-validation-layers/
H A Dvk_helper.py672 def _get_struct_print_formatted(self, struct_member, pre_var_name="prefix", postfix = "\\n", struct_var_name="pStruct", struct_ptr=True, print_array=False):
725 print_out = "%%s%s%s = %s%s%s" % (member_name, member_print_post, print_delimiter, print_type, postfix) # section of print that goes inside of quotes
1867 def _get_struct_gv_print_formatted(self, struct_member, pre_var_name="", postfix = "\\n", struct_var_name="pStruct", struct_ptr=True, print_array=False, port_label=""):
1919 print_out = "<TR><TD>%%s%s%s</TD><TD%s>%s%s%s</TD></TR>" % (member_name, member_print_post, port_label, print_delimiter, print_type, postfix) # section of print that goes inside of quotes
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p.h2021 int p2p_set_ssid_postfix(struct p2p_data *p2p, const u8 *postfix, size_t len);
/external/wpa_supplicant_8/src/p2p/
H A Dp2p.h2021 int p2p_set_ssid_postfix(struct p2p_data *p2p, const u8 *postfix, size_t len);
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p.h2021 int p2p_set_ssid_postfix(struct p2p_data *p2p, const u8 *postfix, size_t len);

Completed in 919 milliseconds

12