Searched refs:code (Results 101 - 125 of 3615) sorted by relevance

1234567891011>>

/external/chromium_org/content/public/common/
H A Dspeech_recognition_error.h2 // Use of this source code is governed by a BSD-style license that can be
24 SpeechRecognitionErrorCode code; member in struct:content::SpeechRecognitionError
28 : code(SPEECH_RECOGNITION_ERROR_NONE),
32 : code(code_value),
37 : code(code_value),
/external/chromium_org/mojo/public/js/bindings/
H A Dcore.js2 // Use of this source code is governed by a BSD-style license that can be
7 // Note: This file is for documentation purposes only. The code here is not
106 * @return {MojoResult} Result code.
108 function close(handle) { [native code] }
117 * @return {MojoResult} Result code.
119 function wait(handle, signals, deadline) { [native code] }
131 * @return {MojoResult} Result code.
133 function waitMany(handles, signals, deadline) { [native code] }
145 function createMessagePipe() { [native code] }
156 * @return {MojoResult} Result code
[all...]
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Derroroutput.py33 error_code = '%04d' % error.code
46 code = 'E:%04d' % error.code
52 return '%s%s: %s' % (line, code, error.message)
/external/elfutils/0.153/libdw/
H A Ddwarf_whatattr.c1 /* Return attribute code of given attribute.
20 additional right to link the code of Red Hat elfutils with code licensed
23 distribution of source code with any binary distribution and to
25 this exception must only link to the code of Red Hat elfutils through
27 found in the source code files (the "Approved Interfaces"). The files
35 License in all respects for all of the Red Hat elfutils code and other
36 code used in conjunction with Red Hat elfutils except the Non-GPL Code
63 return attr == NULL ? 0 : attr->code;
/external/smack/src/org/xbill/DNS/
H A DGenericEDNSOption.java18 GenericEDNSOption(int code) { argument
19 super(code);
27 GenericEDNSOption(int code, byte [] data) { argument
28 super(code);
H A DEDNSOption.java41 string(int code) { argument
42 return codes.getText(code);
48 * @param s The textual representation of the option code
49 * @return The option code, or -1 on error.
57 private final int code; field in class:EDNSOption
61 * Creates an option with the given option code and data.
64 EDNSOption(int code) { argument
65 this.code = Record.checkU16("code", code);
[all...]
/external/libunwind/src/ia64/
H A Dunwind_decoder.h51 * UNW_DEC_BAD_CODE(code)
107 unw_decode_x1 (unsigned char *dp, unsigned char code, void *arg) argument
124 unw_decode_x2 (unsigned char *dp, unsigned char code, void *arg) argument
142 unw_decode_x3 (unsigned char *dp, unsigned char code, void *arg) argument
162 unw_decode_x4 (unsigned char *dp, unsigned char code, void *arg) argument
183 unw_decode_r1 (unsigned char *dp, unsigned char code, void *arg) argument
185 int body = (code & 0x20) != 0;
188 rlen = (code & 0x1f);
194 unw_decode_r2 (unsigned char *dp, unsigned char code, void *arg) argument
201 mask = ((code
209 unw_decode_r3(unsigned char *dp, unsigned char code, void *arg) argument
219 unw_decode_p1(unsigned char *dp, unsigned char code, void *arg) argument
228 unw_decode_p2_p5(unsigned char *dp, unsigned char code, void *arg) argument
277 unw_decode_p6(unsigned char *dp, unsigned char code, void *arg) argument
290 unw_decode_p7_p10(unsigned char *dp, unsigned char code, void *arg) argument
389 unw_decode_b1(unsigned char *dp, unsigned char code, void *arg) argument
401 unw_decode_b2(unsigned char *dp, unsigned char code, void *arg) argument
411 unw_decode_b3_x4(unsigned char *dp, unsigned char code, void *arg) argument
449 unsigned char code, primary; local
[all...]
/external/apache-http/src/org/apache/commons/codec/language/
H A DMetaphone.java26 * Permission given by <CITE>wbrogden</CITE> for code to be used anywhere.
54 * The max code length for metaphone is 4
72 * @param txt String to find the metaphone code for
73 * @return A metaphone code corresponding to the String supplied
88 StringBuffer code = new StringBuffer(10) ; // output
130 while ((code.length() < this.getMaxCodeLen()) &&
131 (n < wdsz) ) { // max code size of 4 works well
140 code.append(symb);
148 code.append(symb);
158 code
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicHttpResponse.java68 * <code>null</code> to disable automatic
71 * <code>null</code> for the system locale
102 * @param code the status code of the response
103 * @param reason the reason phrase to the status code, or
104 * <code>null</code>
107 final int code,
106 BasicHttpResponse(final ProtocolVersion ver, final int code, final String reason) argument
142 setStatusLine(final ProtocolVersion ver, final int code) argument
148 setStatusLine(final ProtocolVersion ver, final int code, final String reason) argument
155 setStatusCode(int code) argument
199 getReason(int code) argument
[all...]
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dprefix.cc24 // Represents the range of values belonging to a prefix code:
102 int InsertLengthExtraBits(int code) { argument
103 int insert_code = (kInsertRangeLut[code >> 6] << 3) + ((code >> 3) & 7);
107 int InsertLengthOffset(int code) { argument
108 int insert_code = (kInsertRangeLut[code >> 6] << 3) + ((code >> 3) & 7);
112 int CopyLengthExtraBits(int code) { argument
113 int copy_code = (kCopyRangeLut[code >> 6] << 3) + (code
117 CopyLengthOffset(int code) argument
122 PrefixEncodeCopyDistance(int distance_code, int num_direct_codes, int postfix_bits, uint16_t* code, int* nbits, uint32_t* extra_bits) argument
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dbytecode.py8 # The offset of this bytecode in the code object.
17 # The offset in the code object of the next bytecode.
25 """Iterator over byte codes in `code`.
30 def __init__(self, code):
31 self.code = code
36 return self.code[i]
39 return ord(self.code[i])
45 if self.offset >= len(self.code):
71 """Iterate over all the code object
[all...]
/external/proguard/src/proguard/classfile/instruction/
H A DLookUpSwitchInstruction.java83 protected void readInfo(byte[] code, int offset) argument
89 defaultOffset = readInt(code, offset); offset += 4;
90 int jumpOffsetCount = readInt(code, offset); offset += 4;
98 cases[index] = readInt(code, offset); offset += 4;
99 jumpOffsets[index] = readInt(code, offset); offset += 4;
104 protected void writeInfo(byte[] code, int offset) argument
109 writeByte(code, offset++, 0);
113 writeInt(code, offset, defaultOffset); offset += 4;
114 writeInt(code, offset, cases.length); offset += 4;
119 writeInt(code, offse
[all...]
H A DTableSwitchInstruction.java87 protected void readInfo(byte[] code, int offset) argument
93 defaultOffset = readInt(code, offset); offset += 4;
94 lowCase = readInt(code, offset); offset += 4;
95 highCase = readInt(code, offset); offset += 4;
102 jumpOffsets[index] = readInt(code, offset); offset += 4;
107 protected void writeInfo(byte[] code, int offset) argument
112 writeByte(code, offset++, 0);
116 writeInt(code, offset, defaultOffset); offset += 4;
117 writeInt(code, offset, lowCase); offset += 4;
118 writeInt(code, offse
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dr300_fragprog.c61 struct r300_fragment_program_code *code = &compiler->code->code.r300; local
70 fprintf(stderr, "code_offset_ext: %08x\n", code->r400_code_offset_ext);
73 for (n = 0; n <= (code->config & 3); n++) {
74 uint32_t code_addr = code->code_addr[3 - (code->config & 3) + n];
76 (((code->r400_code_offset_ext >> (24 - (n * 6))) & 0x7) << 6);
78 (((code->r400_code_offset_ext >> (27 - (n * 6))) & 0x7) << 6);
86 if (n > 0 || (code
[all...]
H A Dr300_fragprog_emit.c58 struct r300_fragment_program_code *code = &c->code->code.r300
83 static void use_temporary(struct r300_fragment_program_code *code, unsigned int index) argument
85 if (index > code->pixsize)
86 code->pixsize = index;
89 static unsigned int use_source(struct r300_fragment_program_code* code, struct rc_pair_instruction_source src) argument
97 use_temporary(code, src.Index);
157 if (code->alu.length >= c->Base.max_alu_insts) {
162 ip = code
308 struct r300_fragment_program_code *code = &emit->compiler->code->code.r300; local
481 struct r300_fragment_program_code *code = &compiler->code->code.r300; local
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dr300_fragprog.c61 struct r300_fragment_program_code *code = &compiler->code->code.r300; local
70 fprintf(stderr, "code_offset_ext: %08x\n", code->r400_code_offset_ext);
73 for (n = 0; n <= (code->config & 3); n++) {
74 uint32_t code_addr = code->code_addr[3 - (code->config & 3) + n];
76 (((code->r400_code_offset_ext >> (24 - (n * 6))) & 0x7) << 6);
78 (((code->r400_code_offset_ext >> (27 - (n * 6))) & 0x7) << 6);
86 if (n > 0 || (code
[all...]
H A Dr300_fragprog_emit.c58 struct r300_fragment_program_code *code = &c->code->code.r300
83 static void use_temporary(struct r300_fragment_program_code *code, unsigned int index) argument
85 if (index > code->pixsize)
86 code->pixsize = index;
89 static unsigned int use_source(struct r300_fragment_program_code* code, struct rc_pair_instruction_source src) argument
97 use_temporary(code, src.Index);
157 if (code->alu.length >= c->Base.max_alu_insts) {
162 ip = code
308 struct r300_fragment_program_code *code = &emit->compiler->code->code.r300; local
481 struct r300_fragment_program_code *code = &compiler->code->code.r300; local
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dxmlunicode.c969 * @code: UCS code point
976 xmlUCSIsAegeanNumbers(int code) { argument
977 return(((code >= 0x10100) && (code <= 0x1013F)));
982 * @code: UCS code point
989 xmlUCSIsAlphabeticPresentationForms(int code) { argument
990 return(((code >= 0xFB00) && (code <
1002 xmlUCSIsArabic(int code) argument
1015 xmlUCSIsArabicPresentationFormsA(int code) argument
1028 xmlUCSIsArabicPresentationFormsB(int code) argument
1041 xmlUCSIsArmenian(int code) argument
1054 xmlUCSIsArrows(int code) argument
1067 xmlUCSIsBasicLatin(int code) argument
1080 xmlUCSIsBengali(int code) argument
1093 xmlUCSIsBlockElements(int code) argument
1106 xmlUCSIsBopomofo(int code) argument
1119 xmlUCSIsBopomofoExtended(int code) argument
1132 xmlUCSIsBoxDrawing(int code) argument
1145 xmlUCSIsBraillePatterns(int code) argument
1158 xmlUCSIsBuhid(int code) argument
1171 xmlUCSIsByzantineMusicalSymbols(int code) argument
1184 xmlUCSIsCJKCompatibility(int code) argument
1197 xmlUCSIsCJKCompatibilityForms(int code) argument
1210 xmlUCSIsCJKCompatibilityIdeographs(int code) argument
1223 xmlUCSIsCJKCompatibilityIdeographsSupplement(int code) argument
1236 xmlUCSIsCJKRadicalsSupplement(int code) argument
1249 xmlUCSIsCJKSymbolsandPunctuation(int code) argument
1262 xmlUCSIsCJKUnifiedIdeographs(int code) argument
1275 xmlUCSIsCJKUnifiedIdeographsExtensionA(int code) argument
1288 xmlUCSIsCJKUnifiedIdeographsExtensionB(int code) argument
1301 xmlUCSIsCherokee(int code) argument
1314 xmlUCSIsCombiningDiacriticalMarks(int code) argument
1327 xmlUCSIsCombiningDiacriticalMarksforSymbols(int code) argument
1340 xmlUCSIsCombiningHalfMarks(int code) argument
1353 xmlUCSIsCombiningMarksforSymbols(int code) argument
1366 xmlUCSIsControlPictures(int code) argument
1379 xmlUCSIsCurrencySymbols(int code) argument
1392 xmlUCSIsCypriotSyllabary(int code) argument
1405 xmlUCSIsCyrillic(int code) argument
1418 xmlUCSIsCyrillicSupplement(int code) argument
1431 xmlUCSIsDeseret(int code) argument
1444 xmlUCSIsDevanagari(int code) argument
1457 xmlUCSIsDingbats(int code) argument
1470 xmlUCSIsEnclosedAlphanumerics(int code) argument
1483 xmlUCSIsEnclosedCJKLettersandMonths(int code) argument
1496 xmlUCSIsEthiopic(int code) argument
1509 xmlUCSIsGeneralPunctuation(int code) argument
1522 xmlUCSIsGeometricShapes(int code) argument
1535 xmlUCSIsGeorgian(int code) argument
1548 xmlUCSIsGothic(int code) argument
1561 xmlUCSIsGreek(int code) argument
1574 xmlUCSIsGreekExtended(int code) argument
1587 xmlUCSIsGreekandCoptic(int code) argument
1600 xmlUCSIsGujarati(int code) argument
1613 xmlUCSIsGurmukhi(int code) argument
1626 xmlUCSIsHalfwidthandFullwidthForms(int code) argument
1639 xmlUCSIsHangulCompatibilityJamo(int code) argument
1652 xmlUCSIsHangulJamo(int code) argument
1665 xmlUCSIsHangulSyllables(int code) argument
1678 xmlUCSIsHanunoo(int code) argument
1691 xmlUCSIsHebrew(int code) argument
1704 xmlUCSIsHighPrivateUseSurrogates(int code) argument
1717 xmlUCSIsHighSurrogates(int code) argument
1730 xmlUCSIsHiragana(int code) argument
1743 xmlUCSIsIPAExtensions(int code) argument
1756 xmlUCSIsIdeographicDescriptionCharacters(int code) argument
1769 xmlUCSIsKanbun(int code) argument
1782 xmlUCSIsKangxiRadicals(int code) argument
1795 xmlUCSIsKannada(int code) argument
1808 xmlUCSIsKatakana(int code) argument
1821 xmlUCSIsKatakanaPhoneticExtensions(int code) argument
1834 xmlUCSIsKhmer(int code) argument
1847 xmlUCSIsKhmerSymbols(int code) argument
1860 xmlUCSIsLao(int code) argument
1873 xmlUCSIsLatin1Supplement(int code) argument
1886 xmlUCSIsLatinExtendedA(int code) argument
1899 xmlUCSIsLatinExtendedB(int code) argument
1912 xmlUCSIsLatinExtendedAdditional(int code) argument
1925 xmlUCSIsLetterlikeSymbols(int code) argument
1938 xmlUCSIsLimbu(int code) argument
1951 xmlUCSIsLinearBIdeograms(int code) argument
1964 xmlUCSIsLinearBSyllabary(int code) argument
1977 xmlUCSIsLowSurrogates(int code) argument
1990 xmlUCSIsMalayalam(int code) argument
2003 xmlUCSIsMathematicalAlphanumericSymbols(int code) argument
2016 xmlUCSIsMathematicalOperators(int code) argument
2029 xmlUCSIsMiscellaneousMathematicalSymbolsA(int code) argument
2042 xmlUCSIsMiscellaneousMathematicalSymbolsB(int code) argument
2055 xmlUCSIsMiscellaneousSymbols(int code) argument
2068 xmlUCSIsMiscellaneousSymbolsandArrows(int code) argument
2081 xmlUCSIsMiscellaneousTechnical(int code) argument
2094 xmlUCSIsMongolian(int code) argument
2107 xmlUCSIsMusicalSymbols(int code) argument
2120 xmlUCSIsMyanmar(int code) argument
2133 xmlUCSIsNumberForms(int code) argument
2146 xmlUCSIsOgham(int code) argument
2159 xmlUCSIsOldItalic(int code) argument
2172 xmlUCSIsOpticalCharacterRecognition(int code) argument
2185 xmlUCSIsOriya(int code) argument
2198 xmlUCSIsOsmanya(int code) argument
2211 xmlUCSIsPhoneticExtensions(int code) argument
2224 xmlUCSIsPrivateUse(int code) argument
2239 xmlUCSIsPrivateUseArea(int code) argument
2252 xmlUCSIsRunic(int code) argument
2265 xmlUCSIsShavian(int code) argument
2278 xmlUCSIsSinhala(int code) argument
2291 xmlUCSIsSmallFormVariants(int code) argument
2304 xmlUCSIsSpacingModifierLetters(int code) argument
2317 xmlUCSIsSpecials(int code) argument
2330 xmlUCSIsSuperscriptsandSubscripts(int code) argument
2343 xmlUCSIsSupplementalArrowsA(int code) argument
2356 xmlUCSIsSupplementalArrowsB(int code) argument
2369 xmlUCSIsSupplementalMathematicalOperators(int code) argument
2382 xmlUCSIsSupplementaryPrivateUseAreaA(int code) argument
2395 xmlUCSIsSupplementaryPrivateUseAreaB(int code) argument
2408 xmlUCSIsSyriac(int code) argument
2421 xmlUCSIsTagalog(int code) argument
2434 xmlUCSIsTagbanwa(int code) argument
2447 xmlUCSIsTags(int code) argument
2460 xmlUCSIsTaiLe(int code) argument
2473 xmlUCSIsTaiXuanJingSymbols(int code) argument
2486 xmlUCSIsTamil(int code) argument
2499 xmlUCSIsTelugu(int code) argument
2512 xmlUCSIsThaana(int code) argument
2525 xmlUCSIsThai(int code) argument
2538 xmlUCSIsTibetan(int code) argument
2551 xmlUCSIsUgaritic(int code) argument
2564 xmlUCSIsUnifiedCanadianAboriginalSyllabics(int code) argument
2577 xmlUCSIsVariationSelectors(int code) argument
2590 xmlUCSIsVariationSelectorsSupplement(int code) argument
2603 xmlUCSIsYiRadicals(int code) argument
2616 xmlUCSIsYiSyllables(int code) argument
2629 xmlUCSIsYijingHexagramSymbols(int code) argument
2643 xmlUCSIsBlock(int code, const char *block) argument
2661 xmlUCSIsCatC(int code) argument
2674 xmlUCSIsCatCc(int code) argument
2688 xmlUCSIsCatCf(int code) argument
2701 xmlUCSIsCatCo(int code) argument
2719 xmlUCSIsCatCs(int code) argument
2735 xmlUCSIsCatL(int code) argument
2748 xmlUCSIsCatLl(int code) argument
2761 xmlUCSIsCatLm(int code) argument
2774 xmlUCSIsCatLo(int code) argument
2787 xmlUCSIsCatLt(int code) argument
2800 xmlUCSIsCatLu(int code) argument
2813 xmlUCSIsCatM(int code) argument
2826 xmlUCSIsCatMc(int code) argument
2839 xmlUCSIsCatMe(int code) argument
2855 xmlUCSIsCatMn(int code) argument
2868 xmlUCSIsCatN(int code) argument
2881 xmlUCSIsCatNd(int code) argument
2894 xmlUCSIsCatNl(int code) argument
2912 xmlUCSIsCatNo(int code) argument
2925 xmlUCSIsCatP(int code) argument
2938 xmlUCSIsCatPc(int code) argument
2958 xmlUCSIsCatPd(int code) argument
2971 xmlUCSIsCatPe(int code) argument
2984 xmlUCSIsCatPf(int code) argument
3000 xmlUCSIsCatPi(int code) argument
3017 xmlUCSIsCatPo(int code) argument
3030 xmlUCSIsCatPs(int code) argument
3043 xmlUCSIsCatS(int code) argument
3056 xmlUCSIsCatSc(int code) argument
3069 xmlUCSIsCatSk(int code) argument
3082 xmlUCSIsCatSm(int code) argument
3095 xmlUCSIsCatSo(int code) argument
3108 xmlUCSIsCatZ(int code) argument
3121 xmlUCSIsCatZl(int code) argument
3134 xmlUCSIsCatZp(int code) argument
3147 xmlUCSIsCatZs(int code) argument
3168 xmlUCSIsCat(int code, const char *cat) argument
[all...]
/external/libxml2/
H A Dxmlunicode.c969 * @code: UCS code point
976 xmlUCSIsAegeanNumbers(int code) { argument
977 return(((code >= 0x10100) && (code <= 0x1013F)));
982 * @code: UCS code point
989 xmlUCSIsAlphabeticPresentationForms(int code) { argument
990 return(((code >= 0xFB00) && (code <
1002 xmlUCSIsArabic(int code) argument
1015 xmlUCSIsArabicPresentationFormsA(int code) argument
1028 xmlUCSIsArabicPresentationFormsB(int code) argument
1041 xmlUCSIsArmenian(int code) argument
1054 xmlUCSIsArrows(int code) argument
1067 xmlUCSIsBasicLatin(int code) argument
1080 xmlUCSIsBengali(int code) argument
1093 xmlUCSIsBlockElements(int code) argument
1106 xmlUCSIsBopomofo(int code) argument
1119 xmlUCSIsBopomofoExtended(int code) argument
1132 xmlUCSIsBoxDrawing(int code) argument
1145 xmlUCSIsBraillePatterns(int code) argument
1158 xmlUCSIsBuhid(int code) argument
1171 xmlUCSIsByzantineMusicalSymbols(int code) argument
1184 xmlUCSIsCJKCompatibility(int code) argument
1197 xmlUCSIsCJKCompatibilityForms(int code) argument
1210 xmlUCSIsCJKCompatibilityIdeographs(int code) argument
1223 xmlUCSIsCJKCompatibilityIdeographsSupplement(int code) argument
1236 xmlUCSIsCJKRadicalsSupplement(int code) argument
1249 xmlUCSIsCJKSymbolsandPunctuation(int code) argument
1262 xmlUCSIsCJKUnifiedIdeographs(int code) argument
1275 xmlUCSIsCJKUnifiedIdeographsExtensionA(int code) argument
1288 xmlUCSIsCJKUnifiedIdeographsExtensionB(int code) argument
1301 xmlUCSIsCherokee(int code) argument
1314 xmlUCSIsCombiningDiacriticalMarks(int code) argument
1327 xmlUCSIsCombiningDiacriticalMarksforSymbols(int code) argument
1340 xmlUCSIsCombiningHalfMarks(int code) argument
1353 xmlUCSIsCombiningMarksforSymbols(int code) argument
1366 xmlUCSIsControlPictures(int code) argument
1379 xmlUCSIsCurrencySymbols(int code) argument
1392 xmlUCSIsCypriotSyllabary(int code) argument
1405 xmlUCSIsCyrillic(int code) argument
1418 xmlUCSIsCyrillicSupplement(int code) argument
1431 xmlUCSIsDeseret(int code) argument
1444 xmlUCSIsDevanagari(int code) argument
1457 xmlUCSIsDingbats(int code) argument
1470 xmlUCSIsEnclosedAlphanumerics(int code) argument
1483 xmlUCSIsEnclosedCJKLettersandMonths(int code) argument
1496 xmlUCSIsEthiopic(int code) argument
1509 xmlUCSIsGeneralPunctuation(int code) argument
1522 xmlUCSIsGeometricShapes(int code) argument
1535 xmlUCSIsGeorgian(int code) argument
1548 xmlUCSIsGothic(int code) argument
1561 xmlUCSIsGreek(int code) argument
1574 xmlUCSIsGreekExtended(int code) argument
1587 xmlUCSIsGreekandCoptic(int code) argument
1600 xmlUCSIsGujarati(int code) argument
1613 xmlUCSIsGurmukhi(int code) argument
1626 xmlUCSIsHalfwidthandFullwidthForms(int code) argument
1639 xmlUCSIsHangulCompatibilityJamo(int code) argument
1652 xmlUCSIsHangulJamo(int code) argument
1665 xmlUCSIsHangulSyllables(int code) argument
1678 xmlUCSIsHanunoo(int code) argument
1691 xmlUCSIsHebrew(int code) argument
1704 xmlUCSIsHighPrivateUseSurrogates(int code) argument
1717 xmlUCSIsHighSurrogates(int code) argument
1730 xmlUCSIsHiragana(int code) argument
1743 xmlUCSIsIPAExtensions(int code) argument
1756 xmlUCSIsIdeographicDescriptionCharacters(int code) argument
1769 xmlUCSIsKanbun(int code) argument
1782 xmlUCSIsKangxiRadicals(int code) argument
1795 xmlUCSIsKannada(int code) argument
1808 xmlUCSIsKatakana(int code) argument
1821 xmlUCSIsKatakanaPhoneticExtensions(int code) argument
1834 xmlUCSIsKhmer(int code) argument
1847 xmlUCSIsKhmerSymbols(int code) argument
1860 xmlUCSIsLao(int code) argument
1873 xmlUCSIsLatin1Supplement(int code) argument
1886 xmlUCSIsLatinExtendedA(int code) argument
1899 xmlUCSIsLatinExtendedB(int code) argument
1912 xmlUCSIsLatinExtendedAdditional(int code) argument
1925 xmlUCSIsLetterlikeSymbols(int code) argument
1938 xmlUCSIsLimbu(int code) argument
1951 xmlUCSIsLinearBIdeograms(int code) argument
1964 xmlUCSIsLinearBSyllabary(int code) argument
1977 xmlUCSIsLowSurrogates(int code) argument
1990 xmlUCSIsMalayalam(int code) argument
2003 xmlUCSIsMathematicalAlphanumericSymbols(int code) argument
2016 xmlUCSIsMathematicalOperators(int code) argument
2029 xmlUCSIsMiscellaneousMathematicalSymbolsA(int code) argument
2042 xmlUCSIsMiscellaneousMathematicalSymbolsB(int code) argument
2055 xmlUCSIsMiscellaneousSymbols(int code) argument
2068 xmlUCSIsMiscellaneousSymbolsandArrows(int code) argument
2081 xmlUCSIsMiscellaneousTechnical(int code) argument
2094 xmlUCSIsMongolian(int code) argument
2107 xmlUCSIsMusicalSymbols(int code) argument
2120 xmlUCSIsMyanmar(int code) argument
2133 xmlUCSIsNumberForms(int code) argument
2146 xmlUCSIsOgham(int code) argument
2159 xmlUCSIsOldItalic(int code) argument
2172 xmlUCSIsOpticalCharacterRecognition(int code) argument
2185 xmlUCSIsOriya(int code) argument
2198 xmlUCSIsOsmanya(int code) argument
2211 xmlUCSIsPhoneticExtensions(int code) argument
2224 xmlUCSIsPrivateUse(int code) argument
2239 xmlUCSIsPrivateUseArea(int code) argument
2252 xmlUCSIsRunic(int code) argument
2265 xmlUCSIsShavian(int code) argument
2278 xmlUCSIsSinhala(int code) argument
2291 xmlUCSIsSmallFormVariants(int code) argument
2304 xmlUCSIsSpacingModifierLetters(int code) argument
2317 xmlUCSIsSpecials(int code) argument
2330 xmlUCSIsSuperscriptsandSubscripts(int code) argument
2343 xmlUCSIsSupplementalArrowsA(int code) argument
2356 xmlUCSIsSupplementalArrowsB(int code) argument
2369 xmlUCSIsSupplementalMathematicalOperators(int code) argument
2382 xmlUCSIsSupplementaryPrivateUseAreaA(int code) argument
2395 xmlUCSIsSupplementaryPrivateUseAreaB(int code) argument
2408 xmlUCSIsSyriac(int code) argument
2421 xmlUCSIsTagalog(int code) argument
2434 xmlUCSIsTagbanwa(int code) argument
2447 xmlUCSIsTags(int code) argument
2460 xmlUCSIsTaiLe(int code) argument
2473 xmlUCSIsTaiXuanJingSymbols(int code) argument
2486 xmlUCSIsTamil(int code) argument
2499 xmlUCSIsTelugu(int code) argument
2512 xmlUCSIsThaana(int code) argument
2525 xmlUCSIsThai(int code) argument
2538 xmlUCSIsTibetan(int code) argument
2551 xmlUCSIsUgaritic(int code) argument
2564 xmlUCSIsUnifiedCanadianAboriginalSyllabics(int code) argument
2577 xmlUCSIsVariationSelectors(int code) argument
2590 xmlUCSIsVariationSelectorsSupplement(int code) argument
2603 xmlUCSIsYiRadicals(int code) argument
2616 xmlUCSIsYiSyllables(int code) argument
2629 xmlUCSIsYijingHexagramSymbols(int code) argument
2643 xmlUCSIsBlock(int code, const char *block) argument
2661 xmlUCSIsCatC(int code) argument
2674 xmlUCSIsCatCc(int code) argument
2688 xmlUCSIsCatCf(int code) argument
2701 xmlUCSIsCatCo(int code) argument
2719 xmlUCSIsCatCs(int code) argument
2735 xmlUCSIsCatL(int code) argument
2748 xmlUCSIsCatLl(int code) argument
2761 xmlUCSIsCatLm(int code) argument
2774 xmlUCSIsCatLo(int code) argument
2787 xmlUCSIsCatLt(int code) argument
2800 xmlUCSIsCatLu(int code) argument
2813 xmlUCSIsCatM(int code) argument
2826 xmlUCSIsCatMc(int code) argument
2839 xmlUCSIsCatMe(int code) argument
2855 xmlUCSIsCatMn(int code) argument
2868 xmlUCSIsCatN(int code) argument
2881 xmlUCSIsCatNd(int code) argument
2894 xmlUCSIsCatNl(int code) argument
2912 xmlUCSIsCatNo(int code) argument
2925 xmlUCSIsCatP(int code) argument
2938 xmlUCSIsCatPc(int code) argument
2958 xmlUCSIsCatPd(int code) argument
2971 xmlUCSIsCatPe(int code) argument
2984 xmlUCSIsCatPf(int code) argument
3000 xmlUCSIsCatPi(int code) argument
3017 xmlUCSIsCatPo(int code) argument
3030 xmlUCSIsCatPs(int code) argument
3043 xmlUCSIsCatS(int code) argument
3056 xmlUCSIsCatSc(int code) argument
3069 xmlUCSIsCatSk(int code) argument
3082 xmlUCSIsCatSm(int code) argument
3095 xmlUCSIsCatSo(int code) argument
3108 xmlUCSIsCatZ(int code) argument
3121 xmlUCSIsCatZl(int code) argument
3134 xmlUCSIsCatZp(int code) argument
3147 xmlUCSIsCatZs(int code) argument
3168 xmlUCSIsCat(int code, const char *cat) argument
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/browserAction/make_page_red/
H A Dbackground.js2 // Use of this source code is governed by a BSD-style license that can be
10 code: 'document.body.style.backgroundColor="red"'
/external/chromium_org/net/data/websocket/
H A Dclose-with-split-packet_wsh.py2 # Use of this source code is governed by a BSD-style license that can be
21 code = struct.pack('!H', 3004)
22 packet = stream.create_close_frame(code + 'split test'.encode('utf-8'))
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DCloseEvent.h8 * * Redistributions of source code must retain the above copyright
41 , code(0)
46 unsigned short code; member in struct:WebCore::CloseEventInit
57 static PassRefPtrWillBeRawPtr<CloseEvent> create(bool wasClean, unsigned short code, const String& reason) argument
59 return adoptRefWillBeNoop(new CloseEvent(wasClean, code, reason));
68 unsigned short code() const { return m_code; } function in class:WebCore::FINAL
85 CloseEvent(bool wasClean, int code, const String& reason) argument
88 , m_code(code)
97 , m_code(initializer.code)
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D063-comments.c15 more code here
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dentry_x86-64_tls.h91 char *code = (char *) entry; local
92 *((unsigned int *) (code + 12)) = slot * sizeof(mapi_func);
105 void *code; local
113 code = u_execmem_alloc(sizeof(code_templ));
114 if (!code)
117 memcpy(code, code_templ, sizeof(code_templ));
119 *((unsigned int *) (code + 5)) = addr;
120 entry = (mapi_func) code;
H A Dentry_x86_tls.h118 char *code = (char *) entry; local
119 *((unsigned long *) (code + 8)) = slot * sizeof(mapi_func);
130 void *code; local
133 code = u_execmem_alloc(sizeof(code_templ));
134 if (!code)
137 memcpy(code, code_templ, sizeof(code_templ));
139 *((unsigned long *) (code + 2)) = x86_current_tls();
140 entry = (mapi_func) code;

Completed in 2614 milliseconds

1234567891011>>