Searched defs:code (Results 276 - 300 of 1408) sorted by path

<<11121314151617181920>>

/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dentropy_encode.h77 EntropyCode<kSize>* code) {
78 memset(code->depth_, 0, sizeof(code->depth_));
79 memset(code->bits_, 0, sizeof(code->bits_));
80 memset(code->symbols_, 0, sizeof(code->symbols_));
81 code->count_ = 0;
85 if (code->count_ < 4) code
74 BuildEntropyCode(const Histogram<kSize>& histogram, const int tree_limit, const int alphabet_size, EntropyCode<kSize>* code) argument
[all...]
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/brotli/src/woff2/
H A Dwoff2_dec.cc71 uint8_t code = 0; local
72 if (!buf->ReadU8(&code)) {
75 if (code == kWordCode) {
82 } else if (code == kOneMoreByteCode1) {
89 } else if (code == kOneMoreByteCode2) {
97 *value = code;
105 uint8_t code = 0; local
106 if (!buf->ReadU8(&code)) {
113 result = (result << 7) | (code & 0x7f);
114 if ((code
[all...]
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/closure_compiler/externs/
H A Dchrome_extensions.js1586 * code: (string|undefined),
5481 * The {@code chrome.fileSystem} API makes use of the Entry and FileEntry types
5482 * defined in {@code javascript/externs/fileapi.js}.
5492 * {@code chrome.fileSystem.chooseEntry} or
5493 * {@code chrome.fileSystem.restoreEntry}.
6184 * accepts an object with {@code id} and {@code availableCapacity} fields.
6926 chrome.gcdPrivate.ConfirmationInfo.prototype.code;
6971 * Confirm that the code is correct. Device will still need to confirm. |code|
[all...]
/external/chromium_org/third_party/closure_compiler/runner/src/com/google/javascript/jscomp/
H A DChromePass.java2 // Use of this source code is governed by a BSD-style license that can be
25 * <li>namespace declaration using {@code cr.define()},
26 * <li>unquoted property declaration using {@code {cr|Object}.defineProperty()}.
359 private Node createJsNode(String code) { argument
361 return compiler.parseSyntheticCode(code).removeFirstChild();
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DModuleNode.py58 # to code generation.
62 # CodeGenerator, and tell that CodeGenerator to generate code
83 # Ensure that we don't generate import code for these entries!
314 code = globalstate['before_global_var']
315 code.putln('#define __Pyx_MODULE_NAME "%s"' % self.full_module_name)
316 code.putln("int %s%s = 0;" % (Naming.module_is_main, self.full_module_name.replace('.', '__')))
317 code.putln("")
318 code.putln("/* Implementation of '%s' */" % env.qualified_name)
320 code = globalstate['all_the_rest']
322 self.generate_cached_builtins_decls(env, code)
2095 code.putln("/*--- Type import code ---*/") namespace
2099 code.putln("/*--- Variable import code ---*/") namespace
2103 code.putln("/*--- Function import code ---*/") namespace
2223 code.putln("/*--- Type import cleanup code ---*/") namespace
[all...]
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DBuiltins.c82 static PyObject* __Pyx_PyExecGlobals(PyObject* code) { argument
87 result = __Pyx_PyExec2(code, globals);
107 char *code = 0; local
130 "code object passed to exec() may not contain free variables");
152 "exec: arg 1 must be string, bytes or code object, got %.200s",
157 code = PyBytes_AS_STRING(o);
159 code = PyString_AS_STRING(o);
162 result = PyRun_StringFlags(code, Py_file_input, globals, locals, &cf);
164 result = PyRun_String(code, Py_file_input, globals, locals);
H A DCythonFunction.c48 #define __Pyx_CyFunction_NewEx(ml, flags, qualname, self, module, globals, code) \
49 __Pyx_CyFunction_New(__pyx_CyFunctionType, ml, flags, qualname, self, module, globals, code)
55 PyObject* code);
427 PyObject *closure, PyObject *module, PyObject* globals, PyObject* code) {
447 Py_XINCREF(code);
448 op->func_code = code;
739 #define __pyx_FusedFunction_NewEx(ml, flags, qualname, self, module, globals, code) \
740 __pyx_FusedFunction_New(__pyx_FusedFunctionType, ml, flags, qualname, self, module, globals, code)
745 PyObject *code);
760 PyObject *code)
426 __Pyx_CyFunction_New(PyTypeObject *type, PyMethodDef *ml, int flags, PyObject* qualname, PyObject *closure, PyObject *module, PyObject* globals, PyObject* code) argument
757 __pyx_FusedFunction_New(PyTypeObject *type, PyMethodDef *ml, int flags, PyObject *qualname, PyObject *self, PyObject *module, PyObject *globals, PyObject *code) argument
[all...]
H A DProfile.c80 static int __Pyx_TraceSetupAndCall(PyCodeObject** code, PyFrameObject** frame, const char *funcname, const char *srcfile, int firstlineno); /*proto*/
109 static int __Pyx_TraceSetupAndCall(PyCodeObject** code, argument
117 if (*code == NULL) {
118 *code = __Pyx_createFrameCodeObject(funcname, srcfile, firstlineno);
119 if (*code == NULL) return 0;
123 *code, /*PyCodeObject *code*/
175 $empty_bytes, /*PyObject *code,*/
/external/chromium_org/third_party/expat/files/lib/
H A Dxmlparse.c1928 XML_ErrorString(enum XML_Error code) argument
1973 if (code > 0 && code < sizeof(message)/sizeof(message[0]))
1974 return message[code];
2935 Derived from code in lookup(parser, HASH_TABLE *table, ...).
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dt1types.h59 /* code_first :: The lowest valid character code in the encoding. */
61 /* code_last :: The highest valid character code in the encoding */
131 FT_Byte** code; member in struct:CID_SubrsRec_
/external/chromium_org/third_party/freetype/src/base/
H A Dftobjs.c53 /* code, and it gets used during development builds only. */
3097 /* This is done by find_unicode_charmap() above, to share code. */
3376 FT_UInt32 code = (FT_UInt32)charcode; local
3381 gindex = cmap->clazz->char_next( cmap, &code );
3384 result = ( gindex == 0 ) ? 0 : code;
4613 /* initialize position independent code containers */
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffcmap.c82 FT_UInt code = (FT_UInt)(char_code + 1); local
87 if ( code >= 256 )
90 result = cmap->gids[code];
93 *pchar_code = code;
97 code++;
H A Dcffparse.c40 FT_UInt code,
47 parser->object_code = code;
668 #define CFF_FIELD_NUM( code, name, id ) \
669 CFF_FIELD( code, name, id, cff_kind_num )
670 #define CFF_FIELD_FIXED( code, name, id ) \
671 CFF_FIELD( code, name, id, cff_kind_fixed )
672 #define CFF_FIELD_FIXED_1000( code, name, id ) \
673 CFF_FIELD( code, name, id, cff_kind_fixed_thousand )
674 #define CFF_FIELD_STRING( code, name, id ) \
675 CFF_FIELD( code, nam
39 cff_parser_init( CFF_Parser parser, FT_UInt code, void* object, FT_Library library) argument
993 FT_UInt code; local
[all...]
H A Dcffparse.h55 FT_UInt code,
86 int code; member in struct:CFF_Field_Handler_
/external/chromium_org/third_party/freetype/src/psaux/
H A Dt1cmap.c71 FT_UInt code, n; local
75 /* convert character code to Adobe SID string */
76 code = cmap->code_to_sid[char_code];
77 glyph_name = cmap->sid_to_string( code );
/external/chromium_org/third_party/freetype/src/sfnt/
H A Dsfobjs.c54 FT_UInt len, code, n; local
66 code = FT_NEXT_USHORT( read );
68 if ( code == 0 )
71 if ( code < 32 || code > 127 )
72 code = '?';
74 string[n] = (char)code;
89 FT_UInt len, code, n; local
101 code = *read++;
103 if ( code
[all...]
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttinterp.h186 FT_Int curRange; /* current code range number */
187 FT_Byte* code; /* current code range */ member in struct:TT_ExecContextRec_
221 TT_CodeRangeTable codeRangeTable; /* table of valid code ranges */
380 /* FreeType error code. 0 means success. */
/external/chromium_org/third_party/icu/source/common/
H A Dbrkeng.cpp223 UScriptCode code = uscript_getScript(c, &status); local
225 DictionaryMatcher *m = loadDictionaryMatcherFor(code, breakType);
228 switch(code) {
258 UBlockCode block = ublock_getCode(code);
H A Derrorcode.cpp25 UErrorCode code = errorCode; local
27 return code;
H A Ducnvscsu.c59 * Unicode code points from 3400 to E000 are not adressible by
271 * Instead, there are two code blocks for the two SCSU modes.
278 * When the fast-path runs into a code that it cannot handle, its loop ends and it
283 * The callback handling is done by returning with an error code.
617 * Instead, there are two code blocks for the two SCSU modes.
624 * When the fast-path runs into a code that it cannot handle, its loop ends and it
629 * The callback handling is done by returning with an error code.
876 * Real compression heuristics are applied to the rest, in code branches for
877 * single/Unicode mode and BMP/supplementary code points.
954 * calculate the offset and the code fo
1031 int code; local
1521 int code; local
[all...]
H A Dunames.cpp53 * and we don't want to make it less compact, so we changed the access code.
101 UChar32 code; member in struct:__anon12011
448 static uint16_t getExtName(uint32_t code, char *buffer, uint16_t bufferLength) { argument
449 const char *catname = getCharCatName(code);
460 for (cp = code, ndigits = 0; cp; ++ndigits, cp >>= 4)
464 for (cp = code, i = ndigits; (cp || i > 0) && bufferLength; cp >>= 4, bufferLength--) {
477 * Unicode code point "code".
478 * The return value is always a valid Group* that may contain "code"
479 * or else is the highest group before "code"
483 getGroup(UCharNames *names, uint32_t code) argument
578 getName(UCharNames *names, uint32_t code, UCharNameChoice nameChoice, char *buffer, uint16_t bufferLength) argument
773 writeFactorSuffix(const uint16_t *factors, uint16_t count, const char *s, uint32_t code, uint16_t indexes[8], const char *elementBases[8], const char *elements[8], char *buffer, uint16_t bufferLength) argument
852 getAlgName(AlgorithmicRange *range, uint32_t code, UCharNameChoice nameChoice, char *buffer, uint16_t bufferLength) argument
1079 UChar32 code; local
1446 u_charName(UChar32 code, UCharNameChoice nameChoice, char *buffer, int32_t bufferLength, UErrorCode *pErrorCode) argument
[all...]
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dutypes.h19 * code. Cleaned up header.
391 * c) Verify that delete is only imported from object code for interface/mixin classes.
463 * Error code to replace exception handling, so that the code is compatible with all C++ compilers,
469 * so that in a chain of such functions the first one that sets an error code
479 * which is not the what the code is used for
502 U_ERROR_WARNING_LIMIT, /**< This must always be the last warning value to indicate the limit for UErrorCode warnings (last warning code +1) */
511 U_INTERNAL_PROGRAM_ERROR = 5, /**< Indicates a bug in the library code */
541 * the error code range 0x10000 0x10100 are reserved for Transliterator
582 * the error code rang
693 U_SUCCESS(UErrorCode code) argument
699 U_FAILURE(UErrorCode code) argument
[all...]

Completed in 934 milliseconds

<<11121314151617181920>>