HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 176 - 200 of 8676) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/apache-http/src/org/apache/commons/codec/language/
Metaphone.java 26 * 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 local
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.append('X');
    [all...]
  /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/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...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
deprecated_code_generator_v8.pm 31 # Sample code:
39 # Output code:
94 my $code = "";
95 $code .= "/* BEGIN " . $object->{name} . " */\n" if $verbose;
96 $code .= $header . "\n" if $header;
99 $code .= $content->toString();
101 $code .= $content;
104 $code .= $footer . "\n" if $footer;
105 $code .= "/* END " . $object->{name} . " */\n" if $verbose;
106 return $code;
    [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/public/test/android/javatests/src/org/chromium/content/browser/test/util/
JavaScriptUtils.java 2 // Use of this source code is governed by a BSD-style license that can be
23 * Executes the given snippet of JavaScript code within the given ContentView.
28 final String code) throws InterruptedException, TimeoutException {
32 code);
36 * Executes the given snippet of JavaScript code within the given ContentViewCore.
43 final String code) throws InterruptedException, TimeoutException {
45 viewCore, helper, code, EVALUATION_TIMEOUT_SECONDS, TimeUnit.SECONDS);
49 * Executes the given snippet of JavaScript code within the given ContentViewCore.
56 final String code,
62 helper.evaluateJavaScript(viewCore, code);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
PositionError.idl 7 * 1. Redistributions of source code must retain the above copyright
29 readonly attribute unsigned short code;
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
CloseEvent.h 8 * * Redistributions of source code must retain the above copyright
42 , code(0)
47 unsigned short code; member in struct:WebCore::CloseEventInit
58 static PassRefPtr<CloseEvent> create(bool wasClean, unsigned short code, const String& reason)
60 return adoptRef(new CloseEvent(wasClean, code, reason));
69 unsigned short code() const { return m_code; } function in class:WebCore::CloseEvent
84 CloseEvent(bool wasClean, int code, const String& reason)
87 , m_code(code)
96 , 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:__anon16448
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);

Completed in 438 milliseconds

1 2 3 4 5 6 78 91011>>