HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 76 - 100 of 637) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/storage/
IDBDatabaseError.h 8 * 1. Redistributions of source code must retain the above copyright
47 unsigned short code() const { return m_code; } function in class:WebCore::IDBDatabaseError
IDBDatabaseException.h 8 * 1. Redistributions of source code must retain the above copyright
47 unsigned short code() const { return m_code; } function in class:WebCore::IDBDatabaseException
  /external/webkit/WebKit/chromium/src/
WebEntities.cpp 8 * * Redistributions of source code must retain the above copyright
63 int code = entity->code; local
66 if (map.contains(code) && map.get(code) == name.lower())
69 if (standardHTML && (code == '%' || code == 0x2285 || code == 0x00b9))
71 map.set(code, name);
99 String WebEntities::entityNameByCode(int code) cons
    [all...]
  /external/zlib/contrib/infback9/
inftree9.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:__anon8771
35 01000000 - invalid code
    [all...]
  /external/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:__anon8787
35 01000000 - invalid code
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
avc_bitstream.cpp 62 /* Return : Next word with emulation prevention code removed. Everything
170 AVCDec_Status BitstreamReadBits(AVCDecBitstream *stream, int nBits, uint *code)
177 *code = stream->curr_word >> (32 - nBits);
194 AVCDec_Status BitstreamShowBits(AVCDecBitstream *stream, int nBits, uint *code)
202 *code = stream->curr_word >> (32 - nBits);
218 AVCDec_Status BitstreamRead1Bit(AVCDecBitstream *stream, uint *code)
225 *code = stream->curr_word >> 31;
251 /* ignore the emulation prevention code, assume it has been taken out. */
255 uint code; local
266 BitstreamShowBits(stream, total_bit_left, &code);
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
KeyboardListPreferenceJAJP.java 26 * This class notices to {@code OpenWnnJAJP} that the keyboard image is changed.
46 int code = OpenWnnEvent.CHANGE_INPUT_VIEW; local
47 OpenWnnEvent ev = new OpenWnnEvent(code);
  /system/core/nexus/
nexctl.c 123 int code; local
128 code = atoi(tmp);
132 if (code >= 200 && code < 600)
  /system/extras/tests/framebuffer/
minui.h 38 unsigned code; member in struct:event
  /system/netd/
ndc.c 123 int code; local
128 code = atoi(tmp);
132 if (code >= 200 && code < 600)
  /system/vold/
vdc.c 123 int code; local
128 code = atoi(tmp);
132 if (code >= 200 && code < 600)
  /dalvik/dx/src/com/android/dx/dex/file/
EncodedMethod.java 19 import com.android.dx.dex.code.DalvCode;
20 import com.android.dx.rop.code.AccessFlags;
35 /** {@code non-null;} constant for the method */
39 * {@code null-ok;} code for the method, if the method is neither
40 * {@code abstract} nor {@code native}
42 private final CodeItem code; field in class:EncodedMethod
47 * @param method {@code non-null;} constant for the method
49 * @param code {@code null-ok;} code for the method, if it is neithe
    [all...]
  /bionic/libc/string/
strerror_r.c 12 int code; member in struct:__anon533
18 int code )
24 if (strings[nn].code == 0)
27 if (strings[nn].code == code)
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttCode.java 19 import com.android.dx.cf.code.ByteCatchList;
20 import com.android.dx.cf.code.BytecodeArray;
25 * Attribute class for standard {@code Code} attributes.
28 /** {@code non-null;} attribute name for attributes of this type */
29 public static final String ATTRIBUTE_NAME = "Code";
31 /** {@code >= 0;} the stack size */
34 /** {@code >= 0;} the number of locals */
37 /** {@code non-null;} array containing the bytecode per se */
38 private final BytecodeArray code; field in class:AttCode
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlock.java 17 package com.android.dx.cf.code;
27 /** {@code >= 0;} label for this block */
30 /** {@code >= 0;} bytecode offset (inclusive) of the start of the block */
33 /** {@code > start;} bytecode offset (exclusive) of the end of the block */
36 /** {@code non-null;} list of successors that this block may branch to */
39 /** {@code non-null;} list of exceptions caught and their handler targets */
45 * @param label {@code >= 0;} target label for this block
46 * @param start {@code >= 0;} bytecode offset (inclusive) of the start
48 * @param end {@code > start;} bytecode offset (exclusive) of the end
50 * @param successors {@code non-null;} list of successors that this block ma
    [all...]
LocalsArray.java 17 package com.android.dx.cf.code;
19 import com.android.dx.rop.code.RegisterSpec;
39 * @param mutable {@code true} if this instance is mutable
48 * @return {@code non-null;} the copy
56 * @param ex {@code non-null;} the exception to annotate
64 * @param type {@code non-null;} type to replace
83 * @param idx {@code >= 0, < getMaxLocals();} which local
84 * @param type {@code non-null;} new type for the local at {@code idx}
92 * {@code set(spec.getReg(), spec)}
    [all...]
Machine.java 17 package com.android.dx.cf.code;
22 import com.android.dx.rop.code.LocalItem;
35 * {@code this} argument for instance methods.
37 * @return {@code non-null;} the method prototype
51 * @param frame {@code non-null;} frame to operate on
52 * @param count {@code >= 0;} number of values to pop
58 * {@code Prototype} (popped in reverse of the argument
64 * @param frame {@code non-null;} frame to operate on
65 * @param prototype {@code non-null;} prototype indicating arguments to pop
74 * @param frame {@code non-null;} frame to operate o
    [all...]
ReturnAddress.java 17 package com.android.dx.cf.code;
31 /** {@code >= 0;} the start address of the subroutine being returned from */
37 * @param subroutineAddress {@code >= 0;} the start address of the
103 * @return {@code >= 0;} the subroutine address
ValueAwareMachine.java 17 package com.android.dx.cf.code;
33 * @param prototype {@code non-null;} the prototype for the associated
  /dalvik/dx/src/com/android/dx/dex/code/
BlockAddresses.java 17 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.Insn;
22 import com.android.dx.rop.code.RopMethod;
23 import com.android.dx.rop.code.SourcePosition;
31 /** {@code non-null;} array containing addresses for the start of each basic
35 /** {@code non-null;} array containing addresses for the final instruction
39 /** {@code non-null;} array containing addresses for the end (just past the
47 * @param method {@code non-null;} the method to have block addresses fo
    [all...]
Dop.java 17 package com.android.dx.dex.code;
29 /** {@code non-null;} the instruction format */
35 /** {@code non-null;} the name */
41 * @param opcode {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode
43 * @param family {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family
44 * @param format {@code non-null;} the instruction format
47 * @param name {@code non-null;} the name
83 * @return {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode value
93 * @return {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family
102 * @return {@code non-null;} the instruction forma
    [all...]
LocalSnapshot.java 17 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.RegisterSpecSet;
22 import com.android.dx.rop.code.SourcePosition;
30 /** {@code non-null;} local state associated with this instance */
35 * unknown ({@code -1}).
37 * @param position {@code non-null;} source position
38 * @param locals {@code non-null;} associated local variable state
65 * @return {@code non-null;} the stat
    [all...]
OutputCollector.java 17 package com.android.dx.dex.code;
31 * {@code non-null;} the associated finisher (which holds the instruction
37 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
45 * @param initialCapacity {@code >= 0;} initial capacity of the output list
46 * @param suffixInitialCapacity {@code >= 0;} initial capacity of the output
48 * @param regCount {@code >= 0;} register count for the method
59 * @param insn {@code non-null;} the instruction to add
71 * {@code 0} is the most recently added instruction,
72 * {@code 1} is the instruction before that, etc
    [all...]
TargetInsn.java 17 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 lt} test becomes a {@code ge}), and its branc
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form10t.java 17 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 */

Completed in 690 milliseconds

1 2 34 5 6 7 8 91011>>