Searched defs:code (Results 76 - 100 of 835) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/bindings/v8/
H A DScheduledAction.h8 * * Redistributions of source code must retain the above copyright
50 explicit ScheduledAction(v8::Handle<v8::Context> context, const WTF::String& code, const KURL& url = KURL()) argument
54 , m_code(code, url)
/external/webkit/Source/WebCore/dom/
H A DExceptionBase.h8 * 1. Redistributions of source code must retain the above copyright
40 unsigned short code() const { return m_code; } function in class:WebCore::ExceptionBase
/external/webkit/Source/WebCore/html/
H A DMediaError.h7 * 1. Redistributions of source code must retain the above copyright
40 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); } argument
42 Code code() const { return m_code; } function in class:WebCore::MediaError
45 MediaError(Code code) : m_code(code) { } argument
/external/webkit/Source/WebCore/page/
H A DGeolocationError.h7 * 1. Redistributions of source code must retain the above copyright
45 static PassRefPtr<GeolocationError> create(ErrorCode code, const String& message) { return adoptRef(new GeolocationError(code, message)); } argument
47 ErrorCode code() const { return m_code; } function in class:WebCore::GeolocationError
51 GeolocationError(ErrorCode code, const String& message) argument
52 : m_code(code)
H A DPositionError.h7 * 1. Redistributions of source code must retain the above copyright
43 static PassRefPtr<PositionError> create(ErrorCode code, const String& message) { return adoptRef(new PositionError(code, message)); } argument
45 ErrorCode code() const { return m_code; } function in class:WebCore::PositionError
51 PositionError(ErrorCode code, const String& message) argument
52 : m_code(code)
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DLayerChangesFlusher.cpp7 * 1. Redistributions of source code must retain the above copyright
72 LRESULT LayerChangesFlusher::hookCallback(int code, WPARAM wParam, LPARAM lParam) argument
74 return shared().hookFired(code, wParam, lParam);
77 LRESULT LayerChangesFlusher::hookFired(int code, WPARAM wParam, LPARAM lParam) argument
92 LRESULT result = ::CallNextHookEx(m_hook, code, wParam, lParam);
/external/webkit/Source/WebKit/chromium/public/
H A DWebGeolocationError.h8 * 1. Redistributions of source code must retain the above copyright
49 WebGeolocationError(Error code, const WebString& message) { assign(code, message); } argument
53 WEBKIT_API void assign(Error code, const WebString& message);
H A DWebIDBDatabaseError.h8 * 1. Redistributions of source code must retain the above copyright
45 WebIDBDatabaseError(unsigned short code, const WebString& message) { assign(code, message); } argument
56 WEBKIT_API unsigned short code() const;
66 WEBKIT_API void assign(unsigned short code, const WebString& message);
/external/webkit/Source/WebKit/chromium/src/
H A DWebGeolocationError.cpp8 * 1. Redistributions of source code must retain the above copyright
36 void WebGeolocationError::assign(Error code, const WebString& message) argument
38 m_private = GeolocationError::create(static_cast<GeolocationError::ErrorCode>(code), message);
H A DWebIDBDatabaseError.cpp8 * * Redistributions of source code must retain the above copyright
48 void WebIDBDatabaseError::assign(unsigned short code, const WebString& message) argument
50 m_private = IDBDatabaseError::createWithoutOffset(code, message);
58 unsigned short WebIDBDatabaseError::code() const function in class:WebKit::WebIDBDatabaseError
60 return m_private->code();
/external/zlib/src/contrib/infback9/
H A Dinftree9.h12 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:__anon16690
35 01000000 - invalid code
[all...]
/external/zlib/src/
H A Dinftrees.h12 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:__anon16706
35 01000000 - invalid code
[all...]
/external/apache-http/src/org/apache/http/
H A DHttpResponse.java55 * @return the status line, or <code>null</code> if not yet set
72 * @param code the status code
74 void setStatusLine(ProtocolVersion ver, int code); argument
80 * @param code the status code
81 * @param reason the reason phrase, or <code>null</code> to omit
83 void setStatusLine(ProtocolVersion ver, int code, Strin argument
103 setStatusCode(int code) argument
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Durlencode.cc8 * 1. Redistributions of source code must retain the above copyright notice,
33 static int HexPairValue(const char * code) { argument
35 const char * pch = code;
50 if (pch == code + 2)
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DArrayData.java17 package com.android.dx.dex.code;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.rop.code.SourcePosition;
33 * {@code non-null;} address representing the instruction that uses this
38 /** {@code non-null;} initial values to be filled into an array */
52 * unknown ({@code -1}).
54 * @param position {@code non-null;} source position
55 * @param user {@code non-null;} address representing the instruction that
57 * @param values {@code non-null;} initial values to be filled into an array
H A DDop.java17 package com.android.dx.dex.code;
26 /** {@code Opcodes.isValid();} the opcode value itself */
29 /** {@code Opcodes.isValid();} the opcode family */
33 * {@code Opcodes.isValid();} what opcode (by number) to try next
35 * {@code Opcodes.NO_NEXT} to indicate that this is the last
40 /** {@code non-null;} the instruction format */
49 * @param opcode {@code Opcodes.isValid();} the opcode value
51 * @param family {@code Opcodes.isValid();} the opcode family
52 * @param nextOpcode {@code Opcodes.isValid();} what opcode (by
54 * particular arguments; {@code Opcode
[all...]
H A DHighRegisterPrefix.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpec;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.rop.code.SourcePosition;
27 * {@code move*} instructions to move a set of registers into
28 * registers starting at {@code 0} sequentially. This is used
33 /** {@code null-ok;} cached instructions, if constructed */
38 * unknown ({@code -1}).
40 * @param position {@code non-null;} source position
41 * @param registers {@code no
[all...]
H A DLocalStart.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpec;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.rop.code.SourcePosition;
31 * {@code non-null;} register spec representing the local variable introduced
39 * @param spec {@code non-null;} the spec to convert
40 * @return {@code non-null;} the string form
49 * unknown ({@code -1}).
51 * @param position {@code non-null;} source position
52 * @param local {@code no
[all...]
H A DOutputCollector.java17 package com.android.dx.dex.code;
33 * {@code non-null;} the associated finisher (which holds the instruction
39 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
47 * @param dexOptions {@code non-null;} options for dex output
48 * @param initialCapacity {@code >= 0;} initial capacity of the output list
49 * @param suffixInitialCapacity {@code >= 0;} initial capacity of the output
51 * @param regCount {@code >= 0;} register count for the method
62 * @param insn {@code non-null;} the instruction to add
74 * {@code
[all...]
H A DStdCatchBuilder.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.BasicBlock;
20 import com.android.dx.rop.code.BasicBlockList;
21 import com.android.dx.rop.code.RopMethod;
35 /** the maximum range of a single catch handler, in code units */
38 /** {@code non-null;} method to build the list for */
41 /** {@code non-null;} block output order */
44 /** {@code non-null;} address objects for each block */
51 * @param method {@code non-null;} method to build the list for
52 * @param order {@code no
[all...]
H A DTargetInsn.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
26 /** {@code non-null;} the branch target */
31 * unknown ({@code -1}), and the target is initially
32 * {@code null}.
35 * @param position {@code non-null;} source position
36 * @param registers {@code non-null;} register list, including a
39 * @param target {@code non-null;} the branch target
67 * {@code l
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm10t.java17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.DalvInsn;
20 import com.android.dx.dex.code.InsnFormat;
21 import com.android.dx.dex.code.TargetInsn;
25 * Instruction format {@code 10t}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
H A DForm11n.java17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.CstInsn;
20 import com.android.dx.dex.code.DalvInsn;
21 import com.android.dx.dex.code.InsnFormat;
22 import com.android.dx.rop.code.RegisterSpecList;
30 * Instruction format {@code 11n}. See the instruction format spec
34 /** {@code non-null;} unique instance of this class */
H A DForm11x.java17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.DalvInsn;
20 import com.android.dx.dex.code.InsnFormat;
21 import com.android.dx.dex.code.SimpleInsn;
22 import com.android.dx.rop.code.RegisterSpecList;
28 * Instruction format {@code 11x}. See the instruction format spec
32 /** {@code non-null;} unique instance of this class */
H A DForm12x.java17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.DalvInsn;
20 import com.android.dx.dex.code.InsnFormat;
21 import com.android.dx.dex.code.SimpleInsn;
22 import com.android.dx.rop.code.RegisterSpec;
23 import com.android.dx.rop.code.RegisterSpecList;
29 * Instruction format {@code 12x}. See the instruction format spec
33 /** {@code non-null;} unique instance of this class */
51 * The (sz - 2) and (sz - 1) below makes this code work for
129 * The (sz - 2) and (sz - 1) below makes this code wor
[all...]

Completed in 702 milliseconds

1234567891011>>