Searched defs:postfix (Results 1 - 14 of 14) sorted by relevance

/external/icu4c/i18n/
H A Dnfrs.h46 UnicodeString postfix = UNICODE_STRING_SIMPLE("-postfix"); local
49 return ( name.indexOf(prefixpart) == -1 && name.indexOf(postfix) == -1 && name.indexOf(postfx) == -1 );
/external/webkit/Source/JavaScriptCore/runtime/
H A DRegExpPrototype.cpp130 char postfix[5] = { '/', 0, 0, 0, 0 }; local
133 postfix[index++] = 'g';
135 postfix[index++] = 'i';
137 postfix[index] = 'm';
140 return JSValue::encode(jsMakeNontrivialString(exec, "/", source.length() ? source : UString("(?:)"), postfix));
/external/chromium/chrome/browser/metrics/
H A Dmetrics_log_unittest.cc29 const char postfix = '\"'; local
33 size_t postfix_position = xml_encoded->find(postfix, offset);
/external/icu4c/tools/toolutil/
H A Dwritesrc.c99 const char *postfix) {
151 if(postfix!=NULL) {
152 fputs(postfix, f);
160 const char *postfix) {
163 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength+pTrie->dataLength, postfix);
166 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength, postfix);
167 usrc_writeArray(f, data32Prefix, pTrie->data32, 32, pTrie->dataLength, postfix);
176 const char *postfix) {
215 if(postfix!=NULL) {
216 fputs(postfix,
96 usrc_writeArray(FILE *f, const char *prefix, const void *p, int32_t width, int32_t length, const char *postfix) argument
157 usrc_writeUTrie2Arrays(FILE *f, const char *indexPrefix, const char *data32Prefix, const UTrie2 *pTrie, const char *postfix) argument
172 usrc_writeUTrie2Struct(FILE *f, const char *prefix, const UTrie2 *pTrie, const char *indexName, const char *data32Name, const char *postfix) argument
[all...]
/external/openssl/crypto/x509/
H A Dby_dir.c292 const char *postfix=""; local
302 postfix="";
309 postfix="r";
386 postfix,k);
392 postfix,k);
/external/qemu/
H A Dqemu-option.c190 char *postfix; local
194 number = strtoull(value, &postfix, 0);
195 if (*postfix != '\0') {
209 char *postfix; local
213 sizef = strtod(value, &postfix);
214 switch (*postfix) {
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
H A Dprocess.js168 "unary-postfix": function(op, expr) {
1217 "unary-postfix": function(operator, expr) {
1219 if (!(expr[0] == "num" || (expr[0] == "unary-postfix" && !HOP(OPERATORS, operator + expr[1])) || !needs_parens(expr)))
/external/webkit/Source/JavaScriptCore/bytecode/
H A DCodeBlock.cpp96 char postfix[5] = { '/', 0, 0, 0, 0 }; local
99 postfix[index++] = 'g';
101 postfix[index++] = 'i';
103 postfix[index] = 'm';
105 return makeUString("/", regExp->pattern(), postfix);
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_handlers_p2p.c911 char *postfix; local
916 postfix = os_strdup(entry.str_value);
917 if (!postfix)
921 wpa_s->conf->p2p_ssid_postfix = postfix;
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p.c3436 int p2p_set_ssid_postfix(struct p2p_data *p2p, const u8 *postfix, size_t len) argument
3438 wpa_hexdump_ascii(MSG_DEBUG, "P2P: New SSID postfix", postfix, len);
3439 if (postfix == NULL) {
3445 os_memcpy(p2p->cfg->ssid_postfix, postfix, len);
/external/wpa_supplicant_8/src/p2p/
H A Dp2p.c3436 int p2p_set_ssid_postfix(struct p2p_data *p2p, const u8 *postfix, size_t len) argument
3438 wpa_hexdump_ascii(MSG_DEBUG, "P2P: New SSID postfix", postfix, len);
3439 if (postfix == NULL) {
3445 os_memcpy(p2p->cfg->ssid_postfix, postfix, len);
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p.c3436 int p2p_set_ssid_postfix(struct p2p_data *p2p, const u8 *postfix, size_t len) argument
3438 wpa_hexdump_ascii(MSG_DEBUG, "P2P: New SSID postfix", postfix, len);
3439 if (postfix == NULL) {
3445 os_memcpy(p2p->cfg->ssid_postfix, postfix, len);
/external/chromium/third_party/libevent/
H A Devdns.c2450 /* reverse the order of members in the postfix list. This is needed because, */
2500 /* this is the postfix we want */
2501 /* the actual postfix string is kept at the end of the structure */
2502 const u8 *const postfix = ((u8 *) dom) + sizeof(struct search_domain); local
2508 memcpy(newname + base_len + need_to_append_dot, postfix, postfix_len);
2567 /* this name without a postfix */
/external/v8/src/
H A Dapi.cc2656 const char* postfix = "]"; local
2660 int postfix_len = i::StrLength(postfix);
2674 // Write postfix.
2675 memcpy(ptr, postfix, postfix_len * v8::internal::kCharSize);

Completed in 449 milliseconds