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

<<11121314151617181920>>

  /build/tools/droiddoc/templates/
sample.cs 19 <p>The file containing the source code shown below is located in the corresponding directory in <code>&lt;sdk&gt;/platforms/android-&lt;version&gt;/samples/...</code></p>
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form21c.java 17 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.RegisterSpec;
23 import com.android.dx.rop.code.RegisterSpecList;
31 * Instruction format {@code 21c}. See the instruction format spec
35 /** {@code non-null;} unique instance of this class */
  /external/skia/src/animator/
SkDisplayEvents.cpp 67 if (evt->code != (SkKey) -1) {
68 if ((int) evt->code > keyCode || (int) (evt->fMax != (SkKey) -1 ? evt->fMax : evt->code) < keyCode)
112 if (evt->code != (SkKey) -1) {
113 if ((int) evt->code > keyCode || (int) (evt->fMax != (SkKey) -1 ? evt->fMax : evt->code) < keyCode)
  /external/webkit/WebCore/bindings/objc/
ExceptionHandlers.mm 7 * 1. Redistributions of source code must retain the above copyright
65 reason = [[NSString alloc] initWithFormat:@"*** %s: %@ %d", description.name, exceptionName, description.code];
67 reason = [[NSString alloc] initWithFormat:@"*** %@ %d", exceptionName, description.code];
69 NSDictionary *userInfo = [[NSDictionary alloc] initWithObjectsAndKeys:[NSNumber numberWithInt:description.code], exceptionName, nil];
  /frameworks/base/core/java/android/content/
UriMatcher.java 123 * @param code the code to match for the root URI
125 public UriMatcher(int code)
127 mCode = code;
142 * Add a URI to match, and the code to return when this URI is
150 * @param code the code that is returned when a URI is matched
153 public void addURI(String authority, String path, int code)
155 if (code < 0) {
156 throw new IllegalArgumentException("code " + code + " is invalid: it must be positive")
    [all...]
  /external/freetype/src/cff/
cffparse.c 42 FT_UInt code,
49 parser->object_code = code;
570 #define CFF_FIELD_NUM( code, name ) \
571 CFF_FIELD( code, name, cff_kind_num )
572 #define CFF_FIELD_FIXED( code, name ) \
573 CFF_FIELD( code, name, cff_kind_fixed )
574 #define CFF_FIELD_FIXED_1000( code, name ) \
575 CFF_FIELD( code, name, cff_kind_fixed_thousand )
576 #define CFF_FIELD_STRING( code, name ) \
577 CFF_FIELD( code, name, cff_kind_string
773 FT_UInt code; local
    [all...]
cffparse.h 55 FT_UInt code,
86 int code; member in struct:CFF_Field_Handler_
  /external/v8/src/
ic.cc 6 // * Redistributions of source code must retain the above copyright
51 // computed from the original code - not the patched code. Let
52 // these cases fall through to the unreachable code below.
63 Code* new_target,
79 // To improve the performance of the (much used) IC code, we unfold
80 // a few levels of the stack frame iteration code. This yields a
114 // Find the function on the stack and both the active code for the
115 // function and the original code.
118 Code* code = shared->code() local
184 Code* code = Code::cast(Heap::FindCodeObject(addr)); local
501 Object* code = NULL; local
713 Object* code = NULL; local
808 Object* code = NULL; local
821 Object* code = StubCache::ComputeKeyedLoadArrayLength(*name, *array); local
833 Object* code = local
927 Object* code = NULL; local
1077 Object* code = NULL; local
1223 Object* code = NULL; local
    [all...]
frames.cc 6 // * Redistributions of source code must retain the above copyright
102 // frame code that computes the caller state to access the top
309 void StackHandler::Cook(Code* code) {
311 ASSERT(code->contains(pc()));
312 set_pc(AddressFrom<Address>(pc() - code->instruction_start()));
316 void StackHandler::Uncook(Code* code) {
318 set_pc(code->instruction_start() + OffsetFrom(pc()));
319 ASSERT(code->contains(pc()))
357 Code* code = this->code(); local
368 Code* code = this->code(); local
384 Code* EntryFrame::code() const { function in class:v8::internal::EntryFrame
401 Code* EntryConstructFrame::code() const { function in class:v8::internal::EntryConstructFrame
412 Code* ExitFrame::code() const { function in class:v8::internal::ExitFrame
488 Code* JavaScriptFrame::code() const { function in class:v8::internal::JavaScriptFrame
494 Code* ArgumentsAdaptorFrame::code() const { function in class:v8::internal::ArgumentsAdaptorFrame
499 Code* InternalFrame::code() const { function in class:v8::internal::InternalFrame
501 Object* code = Memory::Object_at(fp() + offset); local
523 Code* code = NULL; local
    [all...]
  /external/icu4c/tools/genprops/
genprops.c 302 /* get the character code, field 0 */
303 p.code=(uint32_t)uprv_strtoul(fields[0][0], &end, 16);
315 fprintf(stderr, "genprops: unknown general category \"%s\" at code 0x%lx\n",
316 fields[2][0], (unsigned long)p.code);
336 fprintf(stderr, "genprops: unknown decomposition type \"%s\" at code 0x%lx\n",
337 fields[5][0], (unsigned long)p.code);
342 upvec_setValue(pv, p.code, p.code, 2, (uint32_t)i, UPROPS_DT_MASK, pErrorCode);
353 fprintf(stderr, "genprops: syntax error in field 6 at code 0x%lx\n",
354 (unsigned long)p.code);
    [all...]
  /build/tools/apicheck/src/com/android/apicheck/
Errors.java 56 String message = which + error.code + ": " + text;
84 public int code; field in class:Errors.Error
87 public Error(int code, int level)
89 this.code = code;
148 public static boolean setErrorLevel(int code, int level) {
150 if (e.code == code) {
  /build/tools/droiddoc/src/
Errors.java 58 String message = which + error.code + ": " + text;
93 public int code; field in class:Errors.Error
96 public Error(int code, int level)
98 this.code = code;
137 public static boolean setErrorLevel(int code, int level) {
139 if (e.code == code) {
  /dalvik/dx/src/com/android/dx/ssa/
DeadCodeRemover.java 19 import com.android.dx.rop.code.RegOps;
20 import com.android.dx.rop.code.RegisterSpec;
21 import com.android.dx.rop.code.RegisterSpecList;
22 import com.android.dx.rop.code.Rop;
23 import com.android.dx.rop.code.PlainInsn;
24 import com.android.dx.rop.code.Rops;
25 import com.android.dx.rop.code.SourcePosition;
26 import com.android.dx.rop.code.Insn;
33 * A variation on Appel Algorithm 19.12 "Dead code elimination in SSA form".
55 * Process a method with the dead-code remve
    [all...]
LiteralOpUpgrader.java 19 import com.android.dx.rop.code.TranslationAdvice;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.rop.code.Insn;
22 import com.android.dx.rop.code.Rop;
23 import com.android.dx.rop.code.RegisterSpec;
24 import com.android.dx.rop.code.PlainInsn;
25 import com.android.dx.rop.code.Rops;
26 import com.android.dx.rop.code.RegOps;
45 * @param ssaMethod {@code non-null;} method to process
138 * @param insn {@code non-null;} an SsaInsn containing a PlainIns
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
IdenticalBlockCombiner.java 19 import com.android.dx.rop.code.BasicBlock;
20 import com.android.dx.rop.code.BasicBlockList;
21 import com.android.dx.rop.code.CstInsn;
22 import com.android.dx.rop.code.Insn;
23 import com.android.dx.rop.code.InsnList;
24 import com.android.dx.rop.code.RegOps;
25 import com.android.dx.rop.code.RopMethod;
26 import com.android.dx.rop.code.SwitchInsn;
43 * Constructs instance. Call {@code process()} to run.
45 * @param rm {@code non-null;} instance to proces
    [all...]
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementsetattributens08.java 79 success = (ex.code == DOMException.NAMESPACE_ERR);
89 success = (ex.code == DOMException.NAMESPACE_ERR);
  /external/e2fsprogs/lib/et/
com_err.h 33 extern void com_err_va (const char *whoami, errcode_t code, const char *fmt,
51 extern const char *com_right(struct et_list *list, long code);
  /external/e2fsprogs/lib/ss/
listen.c 55 int code; local
88 code = SS_ET_EOF;
103 code = ss_execute_line (sci_idx, line);
104 if (code == SS_ET_COMMAND_NOT_FOUND) {
121 code = 0;
126 return code;
129 void ss_abort_subsystem(int sci_idx, int code)
132 ss_info(sci_idx)->exit_status = code;
  /external/icu4c/extra/scrptrun/
srtest.cpp 34 UScriptCode code = scriptRun.getScriptCode(); local
36 printf("Script '%s' from %d to %d.\n", uscript_getName(code), start, end);
  /external/libpcap/
bpf_dump.c 6 * modification, are permitted provided that: (1) source code distributions
8 * distributions including binary code include the above copyright notice and
44 printf("%u %u %u %u\n", insn->code,
52 insn->code, insn->jt, insn->jf, insn->k);
  /external/opencore/codecs_v2/video/m4v_h263/dec/src/
bitstream.cpp 178 PV_STATUS BitstreamShowBits32HC(BitstreamDecVideo *stream, uint32 *code)
187 *code = stream->curr_word;
196 PV_STATUS BitstreamShowBits32(BitstreamDecVideo *stream, int nbits, uint32 *code)
205 *code = stream->curr_word >> (32 - nbits);
218 PV_STATUS BitstreamShowBits16(BitstreamDecVideo *stream, int nbits, uint *code)
229 *code = stream->curr_word >> (32 - nbits);
241 PV_STATUS BitstreamShow15Bits(BitstreamDecVideo *stream, uint *code)
250 *code = stream->curr_word >> 17;
260 PV_STATUS BitstreamShow13Bits(BitstreamDecVideo *stream, uint *code)
269 *code = stream->curr_word >> 19
275 uint code; local
292 uint code; local
316 uint code; local
338 uint code; local
387 uint32 code; local
401 uint32 code; local
    [all...]
  /external/oprofile/daemon/
opd_spu.c 143 * context switch (via handlers[code)), we cache the
149 unsigned long long code; local
152 code = pop_buffer_value(trans);
154 if (!is_escape_code(code)) {
155 opd_put_spu_sample(trans, code);
166 code = pop_buffer_value(trans);
168 if (code >= LAST_CODE) {
169 fprintf(stderr, "Unknown code %llu\n", code);
173 handlers[code](trans)
    [all...]
  /external/skia/include/core/
SkScalerContext.h 69 unsigned code = ID2Code(fID); local
70 SkASSERT(code >= baseGlyphCount);
71 return code - baseGlyphCount;
125 static uint32_t MakeID(unsigned code) {
126 return code;
129 static uint32_t MakeID(unsigned code, SkFixed x, SkFixed y) {
130 SkASSERT(code <= kCodeMask);
135 code;
215 /** Map the glyphID to its glyph index, and then to its char code. Unmapped
  /external/tcpdump/
bpf_dump.c 6 * modification, are permitted provided that: (1) source code distributions
8 * distributions including binary code include the above copyright notice and
48 printf("%u %u %u %u\n", insn->code,
56 insn->code, insn->jt, insn->jf, insn->k);
  /external/webkit/WebCore/bindings/js/
ScheduledAction.h 51 ScheduledAction(const String& code, DOMWrapperWorld* isolatedWorld)
52 : m_code(code)

Completed in 1837 milliseconds

<<11121314151617181920>>