HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 626 - 650 of 2299) sorted by null

<<21222324252627282930>>

  /external/libxml2/
xmlIO.c 255 * @code: the error number
262 __xmlIOErr(int domain, int code, const char *extra)
266 if (code == 0) {
268 if (errno == 0) code = 0;
270 else if (errno == EACCES) code = XML_IO_EACCES;
273 else if (errno == EAGAIN) code = XML_IO_EAGAIN;
276 else if (errno == EBADF) code = XML_IO_EBADF;
279 else if (errno == EBADMSG) code = XML_IO_EBADMSG;
282 else if (errno == EBUSY) code = XML_IO_EBUSY;
285 else if (errno == ECANCELED) code = XML_IO_ECANCELED
3635 int code; local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
PositionList.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.SourcePosition;
27 /** {@code non-null;} empty instance */
53 * @param insns {@code non-null;} instructions to convert
56 * @return {@code non-null;} the positions list
115 * Constructs an instance. All indices initially contain {@code null}.
117 * @param size {@code >= 0;} the size of the list
126 * do that, this will throw {@code NullPointerException}.
128 * @param n {@code >= 0, < size();} which index
129 * @return {@code non-null;} element at that inde
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
InterferenceRegisterMapper.java 19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.RegisterSpec;
76 * Checks to see if old namespace reg {@code oldReg} interferes
77 * with what currently maps to {@code newReg}.
102 * Checks to see if old namespace reg {@code oldReg} interferes
103 * with what currently maps to {@code newReg}.
105 * @param oldSpec {@code non-null;} old namespace register
136 * @param oldSpecs {@code non-null;} set of old-namespace regs
137 * @param newReg {@code >= 0;} new-namespace register
138 * @param targetCategory {@code 1..2;} the number of adjacent new-namespac
    [all...]
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrsetvaluenomodificationallowederr.java 103 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
113 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
hc_attrinsertbefore7.java 89 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
104 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR);
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapsetnameditemns05.java 95 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
105 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyKeyEvent.java 50 int code, int repeat, int metaState,
55 mKeyCode = code;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlarmService_Service.java 125 protected boolean onTransact(int code, Parcel data, Parcel reply,
127 return super.onTransact(code, data, reply, flags);
NotifyingService.java 122 protected boolean onTransact(int code, Parcel data, Parcel reply,
124 return super.onTransact(code, data, reply, flags);
  /external/clearsilver/csharp/
README 17 merely access the structure members directly from C# unsafe code, just
18 like you would if this was C code.
37 - sample code for using inside mod_mono, includign CSPage.cs
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/dec/src/
dec_gain.cpp 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
45 Description: Added fixes to the code as per review comments. Removed nested
112 code[] = pointer to innovative vector of type Word16
120 gain_cod = pointer to code gain of type Word16
148 PSEUDO-CODE
160 When the code is written for a specific target processor the
185 Word16 code[], /* i : Innovative vector. */
188 Word16 * gain_cod, /* o : Code gain. */
275 gc_pred(pred_state, mode, code, &exp, &frac, NULL, NULL, pOverflow);
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/
spstproc.cpp 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
109 code -- Word16 Array -- Fixed codebook exitation
146 PSEUDO-CODE
152 When the code is written for a specific target processor the
181 Word16 code[], /* i : Fixed codebook exitation */
240 p_code = &code[0];
244 /* exc[i] = gain_pit*exc[i] + gain_code*code[i]; */
254 * code Q12 Q13
  /external/openssl/android.testssl/
Uss.cnf 17 countryName = Country Name (2 letter code)
  /external/srec/srec/include/
duk_err.h 183 enum CrecException code; member in struct:__anon5858
193 enum CrecException code; member in struct:__anon5859
  /external/v8/src/arm/
frames-arm.cc 6 // * Redistributions of source code must retain the above copyright
62 Object* code = Memory::Object_at(fp + offset); local
63 bool is_debug_exit = code->IsSmi();
  /external/v8/src/
uri.js 6 // * Redistributions of source code must retain the above copyright
39 result[index++] = 37; // Char code of '%'.
214 result[index++] = 37; // Char code of '%'.
263 // Does the char code correspond to an alpha-numeric char.
329 var code = c.charCodeAt(0);
332 if (code >= 48 && code <= 57) return code - 48;
334 if (code >= 65 && code <= 70) return code - 55
    [all...]
  /external/webkit/JavaScriptCore/assembler/
AbstractMacroAssembler.h 7 * 1. Redistributions of source code must retain the above copyright
194 // We rely on being able to regenerate code to recover exception handling
196 // that if pointer values change the layout of the generated code will change.
198 // from ImmPtrs) with a code sequence that is able to represent any pointer
205 // Section 2: MacroAssembler code buffer handles
207 // The following types are used to reference items in the code buffer
208 // during JIT code generation. For example, the type Jump is used to
242 // A DataLabelPtr is used to refer to a location in the code containing a pointer to be
243 // patched after the code has been generated.
264 // A DataLabelPtr is used to refer to a location in the code containing a pointer to b
    [all...]
MacroAssemblerCodeRef.h 7 * 1. Redistributions of source code must retain the above copyright
41 // ARM/thumb instructions must be 16-bit aligned, but all code pointers to be loaded
43 // thumb code (as oposed to 32-bit traditional ARM). The first test checks for both
94 // 'call' instructions exectued in JIT code. We use return addresses to look up
124 // MacroAssemblerCodePtr should be used to wrap pointers to JIT generated code.
134 // Decorate the pointer as a thumb code pointer.
168 // A reference to a section of JIT generated code. A CodeRef consists of a
169 // pointer to the code, and a ref pointer to the pool from within which it
178 MacroAssemblerCodeRef(void* code, PassRefPtr<ExecutablePool> executablePool, size_t size)
179 : m_code(code)
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
permission-denied.js 12 shouldBe('error.code', 'error.PERMISSION_DENIED');
  /external/webkit/WebCore/dom/
DOMCoreException.idl 8 * 1. Redistributions of source code must retain the above copyright
33 readonly attribute unsigned short code;
  /external/webkit/WebCore/html/
HTMLAppletElement.idl 32 attribute [ConvertNullToNullString, Reflect] DOMString code;
  /external/webkit/WebCore/storage/
DatabaseTask.cpp 8 * 1. Redistributions of source code must retain the above copyright
90 DatabaseOpenTask::DatabaseOpenTask(Database* database, DatabaseTaskSynchronizer* synchronizer, ExceptionCode& code, bool& success)
92 , m_code(code)
DatabaseTask.h 8 * 1. Redistributions of source code must retain the above copyright
94 static PassOwnPtr<DatabaseOpenTask> create(Database* db, DatabaseTaskSynchronizer* synchronizer, ExceptionCode& code, bool& success)
96 return new DatabaseOpenTask(db, synchronizer, code, success);
  /frameworks/base/awt/java/awt/
Rectangle.java 635 int code = 0; local
638 code |= OUT_LEFT | OUT_RIGHT;
640 code |= OUT_LEFT;
642 code |= OUT_RIGHT;
646 code |= OUT_TOP | OUT_BOTTOM;
648 code |= OUT_TOP;
650 code |= OUT_BOTTOM;
653 return code;
  /frameworks/base/cmds/servicemanager/
binder.h 24 uint32_t code; member in struct:binder_txn
79 void *target, uint32_t code);

Completed in 1846 milliseconds

<<21222324252627282930>>