HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 226 - 250 of 9702) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/message/
BasicHttpResponse.java 68 * <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,
185 final int code = this.statusline.getStatusCode(); local
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/enc/
prefix.cc 24 // Represents the range of values belonging to a prefix code:
102 int InsertLengthExtraBits(int code) {
103 int insert_code = (kInsertRangeLut[code >> 6] << 3) + ((code >> 3) & 7);
107 int InsertLengthOffset(int code) {
108 int insert_code = (kInsertRangeLut[code >> 6] << 3) + ((code >> 3) & 7);
112 int CopyLengthExtraBits(int code) {
113 int copy_code = (kCopyRangeLut[code >> 6] << 3) + (code & 7)
    [all...]
  /external/smack/src/org/xbill/DNS/
EDNSOption.java 16 public static class Code {
17 private Code() {}
30 codes.setPrefix("CODE");
38 * Converts an EDNS Option Code into its textual representation
41 string(int code) {
42 return codes.getText(code);
46 * Converts a textual representation of an EDNS Option Code into its
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
118 int code, length; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
bytecode.py 8 # 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 objects in `code`.""
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
LookUpSwitchInstruction.java 83 protected void readInfo(byte[] code, int offset)
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)
109 writeByte(code, offset++, 0);
113 writeInt(code, offset, defaultOffset); offset += 4;
114 writeInt(code, offset, cases.length); offset += 4;
119 writeInt(code, offset, cases[index]); offset += 4
    [all...]
TableSwitchInstruction.java 87 protected void readInfo(byte[] code, int offset)
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)
112 writeByte(code, offset++, 0);
116 writeInt(code, offset, defaultOffset); offset += 4;
117 writeInt(code, offset, lowCase); offset += 4;
118 writeInt(code, offset, highCase); offset += 4
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r300_fragprog.c 61 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->config & R300_PFS_CNTL_FIRST_NODE_HAS_TEX))
    [all...]
r300_fragprog_emit.c 58 struct r300_fragment_program_code *code = &c->code->code.r300
83 static void use_temporary(struct r300_fragment_program_code *code, unsigned int index)
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)
97 use_temporary(code, src.Index);
157 if (code->alu.length >= c->Base.max_alu_insts) {
162 ip = code->alu.length++
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/
r300_fragprog.c 61 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->config & R300_PFS_CNTL_FIRST_NODE_HAS_TEX))
    [all...]
r300_fragprog_emit.c 58 struct r300_fragment_program_code *code = &c->code->code.r300
83 static void use_temporary(struct r300_fragment_program_code *code, unsigned int index)
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)
97 use_temporary(code, src.Index);
157 if (code->alu.length >= c->Base.max_alu_insts) {
162 ip = code->alu.length++
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...]
  /frameworks/base/telecomm/java/android/telecom/
DisconnectCause.java 28 * Describes the cause of a disconnected call. This always includes a code describing the generic
73 * @param code The code for the disconnect cause.
75 public DisconnectCause(int code) {
76 this(code, null, null, null, ToneGenerator.TONE_UNKNOWN);
82 * @param code The code for the disconnect cause.
85 public DisconnectCause(int code, String reason) {
86 this(code, null, null, reason, ToneGenerator.TONE_UNKNOWN);
92 * @param code The code for the disconnect cause
223 String code = ""; local
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlunicode.c     [all...]
  /external/libxml2/
xmlunicode.c     [all...]
  /development/ndk/samples/hello-neon/jni/
Application.mk 1 # Build both ARMv5TE and ARMv7-A machine code.
  /external/chromium_org/content/test/data/service_worker/
sync.js 2 // Use of this source code is governed by a BSD-style license that can be
5 var code = 404; variable
9 status: code,
19 code = 200;
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
CloseEvent.h 8 * * 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)
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)
88 , m_code(code)
97 , m_code(initializer.code)
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
063-comments.c 15 more code here
  /external/chromium_org/third_party/mesa/src/src/mapi/mapi/
entry_x86-64_tls.h 91 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;
entry_x86_tls.h 118 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;
  /external/chromium_org/third_party/zlib/
inftrees.h 12 information needed to do the operation requested by the code that
14 table that indexes more bits of the code. op indicates whether
16 distance, an end-of-block, or an invalid code. For a table
19 is the number of extra bits to get after the code. bits is
20 the number of bits in this code or part of the code to drop off
26 unsigned char bits; /* bits in this part of the code */
27 unsigned short val; /* offset in table or code value */
28 } code; typedef in typeref:struct:__anon20310
35 01000000 - invalid code
    [all...]
  /external/chromium_org/tools/json_schema_compiler/highlighters/
hilite_me_highlighter.py 2 # Use of this source code is governed by a BSD-style license that can be
9 """Highlighter that calls the http://hilite.me API to highlight code.
14 def GetCodeElement(self, code, style):
18 ('code', code),
none_highlighter.py 2 # Use of this source code is governed by a BSD-style license that can be
8 """Highlighter that just wraps code in a <pre>.
13 def GetCodeElement(self, code, style):
14 return '<pre>' + cgi.escape(code) + '</pre>'
  /external/clang/test/CodeGen/
2004-03-15-SimpleIndirectGoto.c 3 int code[]={0,0,0,0,1}; variable
21 bar(code);
  /external/clang/test/PCH/
functions.c 24 void __attribute__((noreturn)) test_abort(int code) {
25 do_abort(code);
  /external/icu/icu4c/source/common/
errorcode.cpp 25 UErrorCode code = errorCode; local
27 return code;

Completed in 1224 milliseconds

1 2 3 4 5 6 7 8 91011>>