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

<<21222324252627282930>>

  /external/v8/src/
debug.cc 6 // * Redistributions of source code must retain the above copyright
33 #include "code-stubs.h"
65 static Handle<Code> ComputeCallDebugBreak(int argc) {
66 CALL_HEAP_FUNCTION(StubCache::ComputeCallDebugBreak(argc), Code);
70 static Handle<Code> ComputeCallDebugPrepareStepIn(int argc) {
71 CALL_HEAP_FUNCTION(StubCache::ComputeCallDebugPrepareStepIn(argc), Code);
97 // Iterate through reloc info for code and original code stopping at each
98 // breakable code target.
120 // Check for breakable code target. Look in the original code as settin
125 Code* code = Code::GetCodeFromTargetAddress(target); local
1160 Code* code = Code::GetCodeFromTargetAddress(target); local
1318 Code* code = Code::GetCodeFromTargetAddress(addr); local
    [all...]
  /packages/apps/Email/src/com/android/exchange/
EasSyncService.java 175 // MSFT's custom HTTP result code indicating the need to provision
327 * Determine whether an HTTP code represents an authentication error
328 * @param code the HTTP code returned by the server
329 * @return whether or not the code represents an authentication error
331 protected boolean isAuthError(int code) {
332 return (code == HttpStatus.SC_UNAUTHORIZED) || (code == HttpStatus.SC_FORBIDDEN);
336 * Determine whether an HTTP code represents a provisioning error
337 * @param code the HTTP code returned by the serve
389 int code = resp.getStatusLine().getStatusCode(); local
489 int code = resp.getStatusLine().getStatusCode(); local
590 int code = resp.getStatusLine().getStatusCode(); local
798 int code = resp.getStatusLine().getStatusCode(); local
1312 int code = resp.getStatusLine().getStatusCode(); local
1366 int code = resp.getStatusLine().getStatusCode(); local
1424 int code = resp.getStatusLine().getStatusCode(); local
1470 int code = resp.getStatusLine().getStatusCode(); local
1698 int code = res.getStatusLine().getStatusCode(); local
2029 int code = resp.getStatusLine().getStatusCode(); local
    [all...]
  /external/icu4c/tools/gencase/
store.c 82 15..6 signed delta to simple case mapping code point
83 (add delta to input code point)
85 6 the code point is case-ignorable
126 0 lowercase mapping (code point)
127 1 case folding (code point)
128 2 uppercase mapping (code point)
129 3 titlecase mapping (code point)
139 Bits 0..3 contain the length of a string of code points for case closure.
144 Complete case closure for a code point is given by the union of all simple
145 and full case mappings and foldings, plus the case closure code point
    [all...]
  /external/libxml2/
error.c 248 int code = -1; local
265 code = err->code;
270 if (code == XML_ERR_OK)
424 * @code: the code for the error
443 void *nod, int domain, int code, xmlErrorLevel level,
484 if (code == XML_ERR_OK)
536 to->code = code;
    [all...]
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletFactory.java 66 accessModifier |= com.sun.tools.javac.code.Flags.PRIVATE; // 0x2
70 accessModifier |= com.sun.tools.javac.code.Flags.PROTECTED; // 0x4
72 accessModifier |= com.sun.tools.javac.code.Flags.PUBLIC; // 0x1
  /dalvik/dx/src/com/android/dx/cf/code/
ConcreteMethod.java 17 package com.android.dx.cf.code;
27 import com.android.dx.rop.code.AccessFlags;
28 import com.android.dx.rop.code.SourcePosition;
38 * stuff extracted from the method's {@code Code} attribute.
41 /** {@code non-null;} method being wrapped */
45 * {@code null-ok;} the class's {@code SourceFile} attribute value,
52 * {@code ACC_SUPER}
56 /** {@code non-null;} the code attribute *
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
32 * {@code non-null;} address representing the instruction that uses this
37 /** {@code non-null;} initial values to be filled into an array */
51 * unknown ({@code -1}).
53 * @param position {@code non-null;} source position
54 * @param user {@code non-null;} address representing the instruction that
56 * @param values {@code non-null;} initial values to be filled into an array
SwitchData.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
32 * {@code non-null;} address representing the instruction that uses this
37 /** {@code non-null;} sorted list of switch cases (keys) */
41 * {@code non-null;} corresponding list of code addresses; the branch
51 * unknown ({@code -1}).
53 * @param position {@code non-null;} source position
54 * @param user {@code non-null;} address representing the instruction tha
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
DOMImplementationCreateDocument.java 98 notes = "Verifies DOMException with NAMESPACE_ERR code.",
119 success = (ex.code == DOMException.NAMESPACE_ERR);
126 notes = "Verifies DOMException with NAMESPACE_ERR code.",
146 success = (ex.code == DOMException.NAMESPACE_ERR);
153 notes = "Verifies DOMException with NAMESPACE_ERR code.",
172 success = (ex.code == DOMException.NAMESPACE_ERR);
DocumentCreateElementNS.java 93 notes = "Verifies that createElementNS throws DOMException with INVALID_CHARACTER_ERR code.",
110 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
117 notes = "Verifies that createElementNS throws DOMException with NAMESPACE_ERR code.",
134 success = (ex.code == DOMException.NAMESPACE_ERR);
141 notes = "Verifies that createElementNS throws DOMException with NAMESPACE_ERR code.",
164 success = (ex.code == DOMException.NAMESPACE_ERR);
  /external/e2fsprogs/lib/et/
error_message.c 53 const char * error_message (errcode_t code)
61 offset = (int) (code & ((1<<ERRCODE_RANGE)-1));
62 table_num = code - offset;
94 strcpy (buffer, "Unknown code ");
  /external/openssl/crypto/store/
store.h 12 * 1. Redistributions of source code must retain the above copyright
133 /* Store functions take a type code for the type of data they should store
387 char *STORE_ATTR_INFO_get0_cstr(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code);
389 STORE_ATTR_TYPES code);
390 X509_NAME *STORE_ATTR_INFO_get0_dn(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code);
391 BIGNUM *STORE_ATTR_INFO_get0_number(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code);
392 int STORE_ATTR_INFO_set_cstr(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
394 int STORE_ATTR_INFO_set_sha1str(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
396 int STORE_ATTR_INFO_set_dn(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
398 int STORE_ATTR_INFO_set_number(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
    [all...]
  /external/openssl/include/openssl/
store.h 12 * 1. Redistributions of source code must retain the above copyright
133 /* Store functions take a type code for the type of data they should store
387 char *STORE_ATTR_INFO_get0_cstr(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code);
389 STORE_ATTR_TYPES code);
390 X509_NAME *STORE_ATTR_INFO_get0_dn(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code);
391 BIGNUM *STORE_ATTR_INFO_get0_number(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code);
392 int STORE_ATTR_INFO_set_cstr(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
394 int STORE_ATTR_INFO_set_sha1str(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
396 int STORE_ATTR_INFO_set_dn(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
398 int STORE_ATTR_INFO_set_number(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
ReachableCodeMarker.java 100 // Mark the code, starting at the entry point.
226 * Marks the code starting at the given offset.
232 byte[] code = codeAttribute.code;
239 Instruction instruction = InstructionFactory.create(code, offset);
  /external/qemu/distrib/zlib-1.2.3/
inftrees.c 21 Build a set of tables to decode the provided canonical Huffman code.
22 The code lengths are lens[0..codes-1]. The result starts at *table,
24 lens shorts, which is used as a work area. type is the type of code
26 -1 is an invalid code, and +1 means that ENOUGH isn't enough. table
30 longest code or if it is less than the shortest code.
36 code FAR * FAR *table;
40 unsigned len; /* a code's length in bits */
41 unsigned sym; /* index of code symbols */
42 unsigned min, max; /* minimum and maximum code lengths *
    [all...]
  /external/tcpdump/
print-chdlc.c 6 * modification, are permitted provided that: (1) source code distributions
8 * distributions including binary code include the above copyright notice and
125 u_int8_t code[4]; member in struct:cisco_slarp
157 switch (EXTRACT_32BITS(&slarp->code)) {
193 printf("0x%02x unknown", EXTRACT_32BITS(&slarp->code));
  /external/webkit/WebCore/inspector/front-end/
DatabaseQueryView.js 7 * 1. Redistributions of source code must retain the above copyright
155 if (error.code == 1)
157 else if (error.code == 2)
160 var message = WebInspector.UIString("An unexpected error %s occurred.", error.code);
  /external/zlib/contrib/infback9/
inftree9.c 21 Build a set of tables to decode the provided canonical Huffman code.
22 The code lengths are lens[0..codes-1]. The result starts at *table,
24 lens shorts, which is used as a work area. type is the type of code
26 -1 is an invalid code, and +1 means that ENOUGH isn't enough. table
30 longest code or if it is less than the shortest code.
36 code FAR * FAR *table;
40 unsigned len; /* a code's length in bits */
41 unsigned sym; /* index of code symbols */
42 unsigned min, max; /* minimum and maximum code lengths *
    [all...]
  /external/zlib/
inftrees.c 21 Build a set of tables to decode the provided canonical Huffman code.
22 The code lengths are lens[0..codes-1]. The result starts at *table,
24 lens shorts, which is used as a work area. type is the type of code
26 -1 is an invalid code, and +1 means that ENOUGH isn't enough. table
30 longest code or if it is less than the shortest code.
36 code FAR * FAR *table;
40 unsigned len; /* a code's length in bits */
41 unsigned sym; /* index of code symbols */
42 unsigned min, max; /* minimum and maximum code lengths *
    [all...]
  /frameworks/base/core/java/android/util/
EventLog.java 42 * event-log-tags file defines the payload contents for each type code.
96 /** @return the type tag code of the entry */
154 * @param tag The event type tag code
162 * @param tag The event type tag code
170 * @param tag The event type tag code
178 * @param tag The event type tag code
194 * Get the name associated with an event type tag code.
195 * @param tag code to look up
204 * Get the event type tag code associated with an event name.
206 * @return the tag code, or -1 if no tag has that nam
210 Integer code = sTagCodes.get(name); local
    [all...]
  /frameworks/base/core/jni/android/graphics/
Movie.cpp 13 #define TRACE_BITMAP(code) code
15 #define TRACE_BITMAP(code)
  /frameworks/base/include/media/
IOMX.h 194 uint32_t code, const Parcel &data, Parcel *reply,
201 uint32_t code, const Parcel &data, Parcel *reply,
208 uint32_t code, const Parcel &data, Parcel *reply,
  /frameworks/base/include/utils/
TextOutput.h 83 inline TypeCode(uint32_t code);
161 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { }
  /frameworks/base/test-runner/src/android/test/
TestRecorder.java 55 int code = FileUtils.setPermissions(file.getPath(), local
60 if (code != 0) {
62 "Set permissions for " + file.getPath() + " returned = " + code);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEN.java 58 /** A private area code(ALT+SHIFT+X) to be ignore (G1 specific). */
68 /** Previous event's code */
115 /** Message for {@code mHandler} (execute prediction) */
118 /** Message for {@code mHandler} (execute tutorial) */
121 /** Message for {@code mHandler} (close) */
130 /** {@code Handler} for drawing candidates/displaying tutorial */
233 * @param charCode A character code
234 * @return {@code true} if success; {@code false} if an error occurs.
258 * @param mode {@code SymbolList.SYMBOL_ENGLISH} or {@code null}
523 int code = keyEvent.getKeyCode(); local
    [all...]

Completed in 1654 milliseconds

<<21222324252627282930>>