HomeSort by relevance Sort by last modified time
    Searched refs:postfix (Results 1 - 25 of 25) sorted by null

  /external/chromium/third_party/icu/source/tools/toolutil/
writesrc.h 34 * The prefix and postfix are optional (can be NULL) and are written first/last.
36 * The {} and declaration etc. need to be included in prefix/postfix or
43 const char *postfix);
54 const char *postfix);
58 * The {} and declaration etc. need to be included in prefix/postfix or
66 const char *postfix);
writesrc.c 84 const char *postfix) {
136 if(postfix!=NULL) {
137 fputs(postfix, f);
145 const char *postfix) {
148 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength+pTrie->dataLength, postfix);
151 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength, postfix);
152 usrc_writeArray(f, data32Prefix, pTrie->data32, 32, pTrie->dataLength, postfix);
161 const char *postfix) {
200 if(postfix!=NULL) {
201 fputs(postfix, f)
    [all...]
  /external/icu4c/tools/toolutil/
writesrc.h 42 * 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);
writesrc.c 99 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, f)
    [all...]
  /external/webkit/JavaScriptCore/runtime/
RegExpPrototype.cpp 110 char postfix[5] = { '/', 0, 0, 0, 0 }; local
113 postfix[index++] = 'g';
115 postfix[index++] = 'i';
117 postfix[index] = 'm';
120 return jsMakeNontrivialString(exec, "/", source.size() ? source : UString("(?:)"), postfix);
  /frameworks/base/cmds/installd/
utils.c 22 const char *postfix)
31 if ((len + strlen(prefix) + strlen(postfix)) >= PKG_PATH_MAX) {
69 sprintf(path, "%s%s%s", prefix, pkgname, postfix);
installd.h 89 const char *postfix);
  /frameworks/base/core/java/android/content/
DefaultDataHandler.java 53 * <row postfix="phones">
56 * <row postfix="phones">
78 private final static String POSTFIX = "postfix";
112 String postfix = atts.getValue(POSTFIX); local
113 if (postfix != null) {
115 postfix);
  /external/chromium/third_party/icu/source/i18n/
nfrs.h 46 UnicodeString postfix = UNICODE_STRING_SIMPLE("-postfix"); local
49 return ( name.indexOf(prefixpart) == -1 && name.indexOf(postfix) == -1 && name.indexOf(postfx) == -1 );
  /external/icu4c/i18n/
nfrs.h 46 UnicodeString postfix = UNICODE_STRING_SIMPLE("-postfix"); local
49 return ( name.indexOf(prefixpart) == -1 && name.indexOf(postfix) == -1 && name.indexOf(postfx) == -1 );
  /external/openssl/crypto/x509/
by_dir.c 292 const char *postfix=""; local
302 postfix="";
309 postfix="r";
386 postfix,k);
392 postfix,k);
  /external/chromium/googleurl/src/
url_canon_icu.cc 72 const static char postfix[postfix_len + 1] = "%3B"; // ";" percent-escaped
73 ucnv_cbFromUWriteBytes(from_args, postfix, postfix_len, 0, err);
  /external/qemu/
qemu-option.c 187 char *postfix; local
191 number = strtoull(value, &postfix, 0);
192 if (*postfix != '\0') {
206 char *postfix; local
210 sizef = strtod(value, &postfix);
211 switch (*postfix) {
  /external/webkit/WebKitTools/wx/build/
wxpresets.py 72 postfix = 'vc'
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/src/
OMX_Core.c 171 static const char postfix[] = ".so"; local
236 char buf[sizeof(prefix) + MAXNAMESIZE + sizeof(postfix)];
239 strcat(buf, postfix);
  /external/v8/benchmarks/
earley-boyer.js 192 (peephole (postfix ", false")))
200 (peephole (postfix ", true"))
272 (peephole (postfix "=== 0")))
280 (peephole (postfix "> 0")))
288 (peephole (postfix "< 0")))
296 (peephole (postfix "%2===1")))
304 (peephole (postfix "%2===0")))
575 (peephole (postfix " instanceof sc_Pair")))
601 (peephole (postfix ".car")))
608 (peephole (postfix ".cdr"))
    [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-earley-boyer.js 186 (peephole (postfix ", false")))
194 (peephole (postfix ", true"))
266 (peephole (postfix "=== 0")))
274 (peephole (postfix "> 0")))
282 (peephole (postfix "< 0")))
290 (peephole (postfix "%2===1")))
298 (peephole (postfix "%2===0")))
569 (peephole (postfix " instanceof sc_Pair")))
595 (peephole (postfix ".car")))
602 (peephole (postfix ".cdr"))
    [all...]
  /external/v8/test/mjsunit/compiler/
countoperation.js 28 // Test pre- and postfix count operations.
globals.js 57 // Test postfix count operation
  /external/v8/test/mjsunit/
const.js 28 // Test const properties and pre/postfix operation.
constant-folding.js 37 x += x++; // ++ and -- apply ToNumber to their operand, even for postfix.
  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.cpp 94 char postfix[5] = { '/', 0, 0, 0, 0 }; local
97 postfix[index++] = 'g';
99 postfix[index++] = 'i';
101 postfix[index] = 'm';
103 return makeString("/", regExp->pattern(), postfix);
    [all...]
  /external/chromium/third_party/libevent/
evdns.c 2502 const u8 *const postfix = ((u8 *) dom) + sizeof(struct search_domain); local
    [all...]
  /external/v8/src/
api.cc 2110 const char* postfix = "]"; local
    [all...]
messages.js 142 invalid_lhs_in_postfix_op: "Invalid left-hand side expression in postfix operation",

Completed in 344 milliseconds