HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 76 - 100 of 19832) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libmicrohttpd/src/microhttpd/
reason_phrase.c 25 * @author Christian Grothoff (minor code clean up)
153 MHD_get_reason_phrase_for (unsigned int code)
155 if ( (code >= 100) &&
156 (code < 600) &&
157 (reasons[code / 100].max > (code % 100)) )
158 return reasons[code / 100].data[code % 100];
  /external/syslinux/com32/gplinclude/dmi/
dmi_cache.h 42 const char *dmi_cache_mode(uint8_t code);
43 const char *dmi_cache_location(uint8_t code);
44 uint16_t dmi_cache_size(uint16_t code);
45 void dmi_cache_types(uint16_t code, const char *sep, char *array);
46 const char *dmi_cache_ec_type(uint8_t code);
47 const char *dmi_cache_type(uint8_t code);
48 const char *dmi_cache_associativity(uint8_t code);
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/
viddec_mp4_videoobjectplane.c 6 uint32_t code; local
16 getbits = viddec_pm_get_bits(parent, &code, 20);
20 data->broken_link = ((code & 0x1) > 0);
21 data->closed_gov = ((code & 0x2) > 0);
22 time_code = code = code >> 2;
23 data->time_code_seconds = code & 0x3F;
24 code = code >> 6;
25 if((code & 1) == 0
67 uint32_t code; local
107 uint32_t code, skip; local
145 uint32_t code, i; local
214 uint32_t code = 0; local
228 uint32_t code; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Warning.java 6 * Pursuant to title 15 Untied States Code Section 105, works of NIST
48 * Comment for <code>serialVersionUID</code>
52 /** warn code field, the warn code consists of three digits.
54 protected int code; field in class:Warning
77 ? Integer.toString(code)
84 : Integer.toString(code) + SP + agent;
88 * Gets code of WarningHeader
89 * @return code of WarningHeade
    [all...]
  /external/skia/experimental/docs/
utilities.js 13 function isAlpha(code) {
14 return (code > 64 && code < 91) // upper alpha (A-Z)
15 || (code > 96 && code < 123); // lower alpha (a-z)
  /external/skqp/experimental/docs/
utilities.js 13 function isAlpha(code) {
14 return (code > 64 && code < 91) // upper alpha (A-Z)
15 || (code > 96 && code < 123); // lower alpha (a-z)
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowKeyEvent.java 11 private int code; field in class:ShadowKeyEvent
13 public void __constructor__(int action, int code) {
15 this.code = code;
25 return code;
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/
PrettyPrinterTest.java 37 private String prettyPrintField(String code) {
38 CompilationUnit cu = parse(code);
42 private String prettyPrintVar(String code) {
43 CompilationUnit cu = parse(code);
49 String code; local
50 code = "class A { int a, b[]; }";
51 assertEquals("int a, b[];", prettyPrintField(code));
53 code = "class A { int[] a[], b[]; }";
54 assertEquals("int[][] a, b;", prettyPrintField(code));
56 code = "class A { int[] a[][], b; }"
68 String code; local
93 String code; local
106 String code = "class Example { void foo(Object arg0,Object arg1){ myMethod(1, 2, 3, 5, Object.class); } }"; local
127 String code = "class Example { void foo(Object arg0,Object arg1){ myMethod(1, 2, 3, 5, Object.class); } }"; local
147 String code = "class Example { void foo() { IntStream.range(0, 10).filter(x -> x % 2 == 0).map(x -> x * IntStream.of(1,3,5,1).sum()).forEach(System.out::println); } }"; local
168 String code = "class Example { void foo() { IntStream.range(0, 10).filter(x -> x % 2 == 0).map(x -> x * IntStream.of(1,3,5,1).sum()).forEach(System.out::println); } }"; local
    [all...]
  /external/ImageMagick/MagickCore/
token-private.h 98 code; local
113 code=(int) (*text++) & 0xff;
114 unicode=code;
117 if ((code & utf_info[i].code_mask) == utf_info[i].code_value)
157 static inline MagickBooleanType IsUTFSpace(int code)
159 if (((code >= 0x0009) && (code <= 0x000d)) || (code == 0x0020) ||
160 (code == 0x0085) || (code == 0x00a0) || (code == 0x1680) |
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_pps.c 14 uint32_t code=0, i = 0; local
18 code = h264_GetVLCElement(parent, pInfo, false);
19 if(code > MAX_PIC_PARAMS) {
22 PictureParameterSet->pic_parameter_set_id = (uint8_t)code;
25 code = h264_GetVLCElement(parent, pInfo, false);
26 if(code > MAX_NUM_SPS-1) {
29 PictureParameterSet->seq_parameter_set_id = (uint8_t)code;
32 viddec_pm_get_bits(parent, &code, 1);
33 PictureParameterSet->entropy_coding_mode_flag = (uint8_t)code;
35 viddec_pm_get_bits(parent, &code, 1)
    [all...]
  /frameworks/base/core/jni/
android_app_NativeActivity.cpp 149 // is really no benefit to unloading the code.
186 NativeCode* code = static_cast<NativeCode*>(activity); local
187 write_work(code->mainWorkWrite, CMD_FINISH, 0);
192 NativeCode* code = static_cast<NativeCode*>(activity); local
193 write_work(code->mainWorkWrite, CMD_SET_WINDOW_FORMAT, format);
198 NativeCode* code = static_cast<NativeCode*>(activity); local
199 write_work(code->mainWorkWrite, CMD_SET_WINDOW_FLAGS, values, mask);
204 NativeCode* code = static_cast<NativeCode*>(activity); local
205 write_work(code->mainWorkWrite, CMD_SHOW_SOFT_INPUT, flags);
210 NativeCode* code = static_cast<NativeCode*>(activity) local
220 NativeCode* code = (NativeCode*)data; local
281 std::unique_ptr<NativeCode> code; local
402 NativeCode* code = (NativeCode*)handle; local
414 NativeCode* code = (NativeCode*)handle; local
428 NativeCode* code = (NativeCode*)handle; local
445 NativeCode* code = (NativeCode*)handle; local
471 NativeCode* code = (NativeCode*)handle; local
485 NativeCode* code = (NativeCode*)handle; local
499 NativeCode* code = (NativeCode*)handle; local
513 NativeCode* code = (NativeCode*)handle; local
527 NativeCode* code = (NativeCode*)handle; local
541 NativeCode* code = (NativeCode*)handle; local
564 NativeCode* code = (NativeCode*)handle; local
606 NativeCode* code = (NativeCode*)handle; local
620 NativeCode* code = (NativeCode*)handle; local
636 NativeCode* code = (NativeCode*)handle; local
651 NativeCode* code = (NativeCode*)handle; local
667 NativeCode* code = (NativeCode*)handle; local
    [all...]
  /external/iptables/include/linux/
filter.h 13 * Current version of the filter code architecture.
20 * the BPF code definitions which need to match so you can share filters
24 __u16 code; /* Actual filter code */ member in struct:sock_filter
39 #define BPF_CLASS(code) ((code) & 0x07)
50 #define BPF_SIZE(code) ((code) & 0x18)
54 #define BPF_MODE(code) ((code) & 0xe0
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
filter.h 13 * Current version of the filter code architecture.
20 * the BPF code definitions which need to match so you can share filters
24 __u16 code; /* Actual filter code */ member in struct:sock_filter
39 #define BPF_CLASS(code) ((code) & 0x07)
50 #define BPF_SIZE(code) ((code) & 0x18)
54 #define BPF_MODE(code) ((code) & 0xe0
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
vlc_decode.cpp 46 * ACTS-MoMuSys partners retain full right to use the code for his/her own
47 * purpose, assign or donate the code to a third party and to inhibit third
48 * parties from using the code for non MPEG-4 Video (ISO/IEC 14496-2) Standard
71 * Donated to the Momusys-project as background code by
106 uint32 code; local
109 BitstreamShowBits32(stream, 24, &code);
111 while (code != 1)
115 BitstreamShowBits32(stream, 24, &code);
128 * 3/29/00 : added return code check to some functions and
129 * optimize the code
455 uint code; local
505 uint code; local
538 uint code; local
559 uint code; local
593 uint code; local
631 uint code; local
841 uint code; local
1024 uint code; local
1203 uint code; local
1263 uint code; local
1318 uint code; local
1391 uint code; local
1473 uint code, mask; local
1556 uint code, mask; local
    [all...]
  /external/clang/utils/TestUtils/
pch-test.pl 20 my $code = system("clang -fsyntax-only -x $language $file > /dev/null 2>&1");
21 if ($code == 0) {
23 $code = system("clang -cc1 -emit-pch -x $language -o $file.pch $file > /dev/null 2>&1");
24 if ($code == 0) {
25 $code = system("clang -cc1 -include-pch $file.pch -x $language -ast-dump /dev/null > /dev/null 2>&1");
26 if ($code == 0) {
28 } elsif (($code & 0xFF) == SIGINT) {
36 } elsif (($code & 0xFF) == SIGINT) {
43 } elsif (($code & 0xFF) == SIGINT) {
  /external/iproute2/include/uapi/linux/
filter.h 14 * Current version of the filter code architecture.
21 * the BPF code definitions which need to match so you can share filters
25 __u16 code; /* Actual filter code */ member in struct:sock_filter
37 #define BPF_RVAL(code) ((code) & 0x18)
41 #define BPF_MISCOP(code) ((code) & 0xf8)
49 #define BPF_STMT(code, k) { (unsigned short)(code), 0, 0, k
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
ast.py 8 code, as well as generating Python from AST nodes"""
14 """represents information about a string containing Python code"""
15 def __init__(self, code, **exception_kwargs):
16 self.code = code
19 # the code
29 # using AST to parse instead of using code.co_varnames,
30 # code.co_names has several advantages:
32 # its declared later in the same block of code
36 if isinstance(code, compat.string_types)
    [all...]
  /art/compiler/linker/x86/
relative_patcher_x86.cc 25 void X86RelativePatcher::PatchPcRelativeReference(std::vector<uint8_t>* code,
34 DCHECK_LT(anchor_literal_offset, code->size());
35 DCHECK_EQ((*code)[anchor_literal_offset - 5u], 0xe8u);
36 DCHECK_EQ((*code)[anchor_literal_offset - 4u], 0x00u);
37 DCHECK_EQ((*code)[anchor_literal_offset - 3u], 0x00u);
38 DCHECK_EQ((*code)[anchor_literal_offset - 2u], 0x00u);
39 DCHECK_EQ((*code)[anchor_literal_offset - 1u], 0x00u);
40 DCHECK_EQ((*code)[anchor_literal_offset] & 0xf8u, 0x58u);
45 DCHECK_LE(literal_offset, code->size());
46 DCHECK_EQ((*code)[literal_offset + 0u], static_cast<uint8_t>(kDummy32BitOffset >> 0))
    [all...]
  /test/vti/test_serving/gae/webapp/src/handlers/
errors.py 24 code: HTTP 1.1 status code
25 msg: the W3C names for HTTP 1.1 status code
28 def __init__(self, code=None, msg=None):
29 self.code = code or httplib.INTERNAL_SERVER_ERROR
30 self.msg = msg or httplib.responses[self.code]
31 super(Error, self).__init__(self.code, self.msg)
34 return repr([self.code, self.msg])
40 def __init__(self, code=None, msg=None, errors=None)
    [all...]
  /external/flatbuffers/src/
idl_gen_go.cpp 17 // independent from idl_parser, since this code is not needed for most clients
72 // this is the prefix code for that.
81 std::string &code = *code_ptr; local
83 code += "type " + struct_def.name + " struct {\n\t";
86 code += "_tab ";
87 code += struct_def.fixed ? "flatbuffers.Struct" : "flatbuffers.Table";
88 code += "\n}\n\n";
91 // Begin enum code with a class declaration.
93 std::string &code = *code_ptr; local
94 code += "const (\n"
100 std::string &code = *code_ptr; local
110 std::string &code = *code_ptr; local
116 std::string &code = *code_ptr; local
125 std::string &code = *code_ptr; local
136 std::string &code = *code_ptr; local
143 std::string &code = *code_ptr; local
160 std::string &code = *code_ptr; local
173 std::string &code = *code_ptr; local
191 std::string &code = *code_ptr; local
204 std::string &code = *code_ptr; local
217 std::string &code = *code_ptr; local
231 std::string &code = *code_ptr; local
247 std::string &code = *code_ptr; local
267 std::string &code = *code_ptr; local
290 std::string &code = *code_ptr; local
303 std::string &code = *code_ptr; local
318 std::string &code = *code_ptr; local
342 std::string &code = *code_ptr; local
365 std::string &code = *code_ptr; local
392 std::string &code = *code_ptr; local
402 std::string &code = *code_ptr; local
411 std::string &code = *code_ptr; local
432 std::string &code = *code_ptr; local
440 std::string &code = *code_ptr; local
453 std::string &code = *code_ptr; local
481 std::string &code = *code_ptr; local
497 std::string &code = *code_ptr; local
505 std::string &code = *code_ptr; local
560 std::string &code = *code_ptr; local
574 std::string &code = *code_ptr; local
785 std::string code = ""; local
786 BeginFile(LastNamespacePart(go_namespace_), true, &code); local
799 std::string &code = *code_ptr; local
819 std::string code = ""; local
820 BeginFile(LastNamespacePart(ns), needs_imports, &code); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
__init__.py 24 # the values given in the W3C recommendation. Client code can
72 return self.code
76 code = INDEX_SIZE_ERR variable in class:IndexSizeErr
79 code = DOMSTRING_SIZE_ERR variable in class:DomstringSizeErr
82 code = HIERARCHY_REQUEST_ERR variable in class:HierarchyRequestErr
85 code = WRONG_DOCUMENT_ERR variable in class:WrongDocumentErr
88 code = INVALID_CHARACTER_ERR variable in class:InvalidCharacterErr
91 code = NO_DATA_ALLOWED_ERR variable in class:NoDataAllowedErr
94 code = NO_MODIFICATION_ALLOWED_ERR variable in class:NoModificationAllowedErr
97 code = NOT_FOUND_ERR variable in class:NotFoundErr
100 code = NOT_SUPPORTED_ERR variable in class:NotSupportedErr
103 code = INUSE_ATTRIBUTE_ERR variable in class:InuseAttributeErr
106 code = INVALID_STATE_ERR variable in class:InvalidStateErr
109 code = SYNTAX_ERR variable in class:SyntaxErr
112 code = INVALID_MODIFICATION_ERR variable in class:InvalidModificationErr
115 code = NAMESPACE_ERR variable in class:NamespaceErr
118 code = INVALID_ACCESS_ERR variable in class:InvalidAccessErr
121 code = VALIDATION_ERR variable in class:ValidationErr
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
__init__.py 24 # the values given in the W3C recommendation. Client code can
72 return self.code
76 code = INDEX_SIZE_ERR variable in class:IndexSizeErr
79 code = DOMSTRING_SIZE_ERR variable in class:DomstringSizeErr
82 code = HIERARCHY_REQUEST_ERR variable in class:HierarchyRequestErr
85 code = WRONG_DOCUMENT_ERR variable in class:WrongDocumentErr
88 code = INVALID_CHARACTER_ERR variable in class:InvalidCharacterErr
91 code = NO_DATA_ALLOWED_ERR variable in class:NoDataAllowedErr
94 code = NO_MODIFICATION_ALLOWED_ERR variable in class:NoModificationAllowedErr
97 code = NOT_FOUND_ERR variable in class:NotFoundErr
100 code = NOT_SUPPORTED_ERR variable in class:NotSupportedErr
103 code = INUSE_ATTRIBUTE_ERR variable in class:InuseAttributeErr
106 code = INVALID_STATE_ERR variable in class:InvalidStateErr
109 code = SYNTAX_ERR variable in class:SyntaxErr
112 code = INVALID_MODIFICATION_ERR variable in class:InvalidModificationErr
115 code = NAMESPACE_ERR variable in class:NamespaceErr
118 code = INVALID_ACCESS_ERR variable in class:InvalidAccessErr
121 code = VALIDATION_ERR variable in class:ValidationErr
    [all...]
  /external/python/cpython2/Lib/xml/dom/
__init__.py 24 # the values given in the W3C recommendation. Client code can
72 return self.code
76 code = INDEX_SIZE_ERR variable in class:IndexSizeErr
79 code = DOMSTRING_SIZE_ERR variable in class:DomstringSizeErr
82 code = HIERARCHY_REQUEST_ERR variable in class:HierarchyRequestErr
85 code = WRONG_DOCUMENT_ERR variable in class:WrongDocumentErr
88 code = INVALID_CHARACTER_ERR variable in class:InvalidCharacterErr
91 code = NO_DATA_ALLOWED_ERR variable in class:NoDataAllowedErr
94 code = NO_MODIFICATION_ALLOWED_ERR variable in class:NoModificationAllowedErr
97 code = NOT_FOUND_ER variable in class:NotFoundErr
100 code = NOT_SUPPORTED_ERR variable in class:NotSupportedErr
103 code = INUSE_ATTRIBUTE_ERR variable in class:InuseAttributeErr
106 code = INVALID_STATE_ERR variable in class:InvalidStateErr
109 code = SYNTAX_ERR variable in class:SyntaxErr
112 code = INVALID_MODIFICATION_ERR variable in class:InvalidModificationErr
115 code = NAMESPACE_ERR variable in class:NamespaceErr
118 code = INVALID_ACCESS_ERR variable in class:InvalidAccessErr
121 code = VALIDATION_ERR variable in class:ValidationErr
    [all...]
  /external/python/cpython3/Lib/xml/dom/
__init__.py 25 # the values given in the W3C recommendation. Client code can
73 return self.code
77 code = INDEX_SIZE_ERR variable in class:IndexSizeErr
80 code = DOMSTRING_SIZE_ERR variable in class:DomstringSizeErr
83 code = HIERARCHY_REQUEST_ERR variable in class:HierarchyRequestErr
86 code = WRONG_DOCUMENT_ERR variable in class:WrongDocumentErr
89 code = INVALID_CHARACTER_ERR variable in class:InvalidCharacterErr
92 code = NO_DATA_ALLOWED_ERR variable in class:NoDataAllowedErr
95 code = NO_MODIFICATION_ALLOWED_ERR variable in class:NoModificationAllowedErr
98 code = NOT_FOUND_ER variable in class:NotFoundErr
101 code = NOT_SUPPORTED_ERR variable in class:NotSupportedErr
104 code = INUSE_ATTRIBUTE_ERR variable in class:InuseAttributeErr
107 code = INVALID_STATE_ERR variable in class:InvalidStateErr
110 code = SYNTAX_ERR variable in class:SyntaxErr
113 code = INVALID_MODIFICATION_ERR variable in class:InvalidModificationErr
116 code = NAMESPACE_ERR variable in class:NamespaceErr
119 code = INVALID_ACCESS_ERR variable in class:InvalidAccessErr
122 code = VALIDATION_ERR variable in class:ValidationErr
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
__init__.py 24 # the values given in the W3C recommendation. Client code can
72 return self.code
76 code = INDEX_SIZE_ERR variable in class:IndexSizeErr
79 code = DOMSTRING_SIZE_ERR variable in class:DomstringSizeErr
82 code = HIERARCHY_REQUEST_ERR variable in class:HierarchyRequestErr
85 code = WRONG_DOCUMENT_ERR variable in class:WrongDocumentErr
88 code = INVALID_CHARACTER_ERR variable in class:InvalidCharacterErr
91 code = NO_DATA_ALLOWED_ERR variable in class:NoDataAllowedErr
94 code = NO_MODIFICATION_ALLOWED_ERR variable in class:NoModificationAllowedErr
97 code = NOT_FOUND_ER variable in class:NotFoundErr
100 code = NOT_SUPPORTED_ERR variable in class:NotSupportedErr
103 code = INUSE_ATTRIBUTE_ERR variable in class:InuseAttributeErr
106 code = INVALID_STATE_ERR variable in class:InvalidStateErr
109 code = SYNTAX_ERR variable in class:SyntaxErr
112 code = INVALID_MODIFICATION_ERR variable in class:InvalidModificationErr
115 code = NAMESPACE_ERR variable in class:NamespaceErr
118 code = INVALID_ACCESS_ERR variable in class:InvalidAccessErr
121 code = VALIDATION_ERR variable in class:ValidationErr
    [all...]

Completed in 884 milliseconds

1 2 34 5 6 7 8 91011>>