/external/icu/icu4c/source/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); 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);
|
writesrc.c | 104 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, f) [all...] |
/external/chromium_org/third_party/icu/source/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/clang/test/Parser/ |
attributes.mm | 14 @interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directives, place them in front of '@interface'}} 17 @implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C directives{{$}}}} 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 directives, place them in front of '@protocol'}}
|
/external/fio/lib/ |
num2str.c | 14 const char *postfix[] = { "", "K", "M", "G", "P", "E" }; local 38 while (post_index < sizeof(postfix)) { 51 if (post_index >= ARRAY_LENGTH(postfix)) 54 sprintf(buf, "%lu%s%s", num, postfix[post_index], 75 sprintf(buf, "%lu.%u%s%s", num, modulo, postfix[post_index],
|
/external/chromium_org/third_party/tlslite/tlslite/utils/ |
pem.py | 13 The input must contain an appropriate PEM prefix and postfix 26 postfix = "-----END %s-----" % name 30 end = s.find(postfix, start+len(prefix)) 32 raise SyntaxError("Missing PEM postfix") 41 PEM prefix and postfix based on the input name string, e.g. for 62 postfix = "-----END %s-----" % name 67 end = s.find(postfix, start+len(prefix)) 69 raise SyntaxError("Missing PEM postfix") 73 s = s[end+len(postfix) : ] 78 The input will be base64 encoded, then wrapped in a PEM prefix/postfix [all...] |
/external/chromium_org/v8/test/mjsunit/ |
whitespaces.js | 56 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);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_03.txt | 3 Received: by mail.zzz.org (Postfix, from userid 889)
|
msg_27.txt | 2 Received: by mail.dom.ain (Postfix, from userid 889)
|
msg_01.txt | 3 Received: by mail.zzz.org (Postfix, from userid 889)
|
msg_20.txt | 3 Received: by mail.zzz.org (Postfix, from userid 889)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_03.txt | 3 Received: by mail.zzz.org (Postfix, from userid 889)
|
msg_27.txt | 2 Received: by mail.dom.ain (Postfix, from userid 889)
|
msg_01.txt | 3 Received: by mail.zzz.org (Postfix, from userid 889)
|
msg_20.txt | 3 Received: by mail.zzz.org (Postfix, from userid 889)
|
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/ |
t_vb_rendertmp.h | 29 #ifndef POSTFIX 30 #define POSTFIX 70 POSTFIX; 90 POSTFIX; 115 POSTFIX; 155 POSTFIX; 187 POSTFIX; 238 POSTFIX; 285 POSTFIX; 355 POSTFIX; [all...] |
/external/mesa3d/src/mesa/tnl/ |
t_vb_rendertmp.h | 29 #ifndef POSTFIX 30 #define POSTFIX 70 POSTFIX; 90 POSTFIX; 115 POSTFIX; 155 POSTFIX; 187 POSTFIX; 238 POSTFIX; 285 POSTFIX; 355 POSTFIX; [all...] |
/external/chromium_org/third_party/re2/re2/testing/ |
regexp_generator.cc | 9 // 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/regex-re2/re2/testing/ |
regexp_generator.cc | 9 // 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/chromium_org/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/chromium_org/v8/test/webkit/ |
parser-xml-close-comment-expected.txt | 29 PASS 'should be a syntax 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 operation. 31 PASS 1 /**/ --> threw exception ReferenceError: Invalid left-hand side expression in postfix operation.
|
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/ |
p1.cpp | 9 // found, it is then looked up in the context of the entire postfix-expression 12 // context of the entire postfix-expression and 15 // -- if the name is found in the context of the entire postfix-expression
|
p3.cpp | 6 // context of the entire postfix-expression. If the type T of the object
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/inspectedWindow/chrome-preprocessor/Panel/ |
PreprocessorPanel.js | 13 var postfix = '\n//# sourceURL=' + url + '.js\n'; variable 14 return prefix + source + postfix;
|