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

1 2 34 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.Insn;
20 import com.android.dx.rop.code.RegOps;
21 import com.android.dx.rop.code.Rop;
22 import com.android.dx.rop.code.Rops;
23 import com.android.dx.rop.code.ThrowingCstInsn;
24 import com.android.dx.rop.code.RegisterSpec;
38 /** {@code non-null;} map from all the common rops to dalvik opcodes */
53 * manually-generated static initialization code for this class.
55 * TODO: Make opcode-gen produce useful code in this case instea
    [all...]
ZeroSizeInsn.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
24 * Pseudo-instruction base class for zero-size (no code emitted)
26 * about the code they are adjacent to.
31 * unknown ({@code -1}).
33 * @param position {@code non-null;} source position
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form10x.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.SimpleInsn;
25 * Instruction format {@code 10x}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
Form30t.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 30t}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
SpecialFormat.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;
27 * exceptions, as code should know (implicitly or explicitly) to avoid
29 * always returns {@code true}.
32 /** {@code non-null;} unique instance of this class */
  /dalvik/dx/src/com/android/dx/rop/code/
CstInsn.java 17 package com.android.dx.rop.code;
26 /** {@code non-null;} the constant */
32 * @param opcode {@code non-null;} the opcode
33 * @param position {@code non-null;} source position
34 * @param result {@code null-ok;} spec for the result, if any
35 * @param sources {@code non-null;} specs for all the sources
36 * @param cst {@code non-null;} constant
58 * @return {@code non-null;} the constant
PlainCstInsn.java 17 package com.android.dx.rop.code;
33 * @param opcode {@code non-null;} the opcode
34 * @param position {@code non-null;} source position
35 * @param result {@code null-ok;} spec for the result, if any
36 * @param sources {@code non-null;} specs for all the sources
37 * @param cst {@code non-null;} the constant
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
DHKeyParameters.java 45 int code = isPrivate() ? 0 : 1; local
49 code ^= params.hashCode();
52 return code;
  /external/freetype/src/cff/
cffcmap.c 80 FT_UInt code = (FT_UInt)(char_code + 1); local
85 if ( code >= 256 )
88 result = cmap->gids[code];
91 *pchar_code = code;
95 code++;
  /external/icu4c/common/
uscript.c 33 UScriptCode code = USCRIPT_INVALID_CODE; local
47 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale);
50 if(code==(UScriptCode)UCHAR_INVALID_CODE){
63 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, cName);
64 /* got the script code now fill in the buffer */
66 *(fillIn)++=code;
80 code = USCRIPT_INVALID_CODE;
82 if(code==(UScriptCode)UCHAR_INVALID_CODE){
84 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale);
86 if(code!=(UScriptCode)UCHAR_INVALID_CODE)
    [all...]
  /external/llvm/lib/Support/
regerror.c 2 * This code is derived from OpenBSD's libc/regex, original license follows:
8 * This code is derived from software contributed to Berkeley by
14 * 1. Redistributions of source code must retain the above copyright
55 int code; member in struct:rerr
75 { 0, "", "*** unknown regexp error code ***" }
95 for (r = rerrs; r->code != 0; r++)
96 if (r->code == target)
100 if (r->code != 0) {
127 for (r = rerrs; r->code != 0; r++)
130 if (r->code == 0
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuthProblemException.java 94 Object code = getParameters().get(HttpResponseMessage.STATUS_CODE); local
95 if (code == null) {
97 } else if (code instanceof Number) { // the usual case
98 return ((Number) code).intValue();
100 return Integer.parseInt(code.toString());
  /external/qemu/android/
charmap.h 20 unsigned short code; member in struct:AKeyEntry
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_wimppoll.c 97 unsigned int code; local
136 code = (unsigned int)regs.r[0];
138 switch(code)
286 wmmsg.eventCode = code;
  /external/strace/linux/
ioctlsort.c 16 unsigned long code; member in struct:ioctlent
27 unsigned long code1 = ((struct ioctlent *) a)->code;
28 unsigned long code2 = ((struct ioctlent *) b)->code;
40 ioctls[i].code &= ~_IOC_DIRMASK;
46 if (i == 0 || ioctls[i].code != ioctls[i-1].code ||
49 ioctls[i].header, ioctls[i].name, ioctls[i].code);
  /external/strace/strace/linux/
ioctlsort.c 16 unsigned long code; member in struct:ioctlent
27 unsigned long code1 = ((struct ioctlent *) a)->code;
28 unsigned long code2 = ((struct ioctlent *) b)->code;
40 ioctls[i].code &= ~_IOC_DIRMASK;
46 if (i == 0 || ioctls[i].code != ioctls[i-1].code ||
49 ioctls[i].header, ioctls[i].name, ioctls[i].code);
  /external/v8/tools/
run-valgrind.py 8 # * Redistributions of source code must retain the above copyright
49 code = process.wait(); variable
53 if code != 0:
55 sys.exit(code)
  /external/valgrind/main/coregrind/
launcher-aix5-bootblock.h 75 /* 328 */ UInt code[N_BOOTBLOCK_INSNS]; member in struct:__anon12100
  /external/valgrind/main/none/tests/amd64/
smc1.c 2 /* Test Valgrind's ability to spot writes to code which has been
18 WRONG output (if you fail to spot code-writes to code[0 .. 4]) is
50 // code on the heap therefore
51 static UChar* code; variable
53 /* Make `code' be movabsq $dest, %rax ; pushq %rax ; ret */
60 code[0] = 0x48;
61 code[1] = 0xB8;
62 code[2] = (dest & 0xFF);
63 code[3] = ((dest >> 8) & 0xFF)
    [all...]
  /external/valgrind/main/none/tests/x86/
smc1.c 2 /* Test Valgrind's ability to spot writes to code which has been
18 WRONG output (if you fail to spot code-writes to code[0 .. 4]) is
47 static UChar code[10]; variable
49 /* Make `code' be PUSHL $dest ; ret */
53 code[0] = 0x68; /* PUSH imm32 */
54 code[1] = (dest & 0xFF);
55 code[2] = ((dest >> 8) & 0xFF);
56 code[3] = ((dest >> 16) & 0xFF);
57 code[4] = ((dest >> 24) & 0xFF)
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
RepatchBuffer.h 7 * 1. Redistributions of source code must retain the above copyright
38 // This class is used to modify code after code generation has been completed,
39 // and after the code has potentially already been executed. This mechanism is
40 // used to apply optimizations to the code.
48 JITCode& code = codeBlock->getJITCode(); local
49 m_start = code.start();
50 m_size = code.size();
  /external/webkit/Source/WebCore/bindings/v8/
V8LazyEventListener.cpp 8 * * Redistributions of source code must retain the above copyright
45 V8LazyEventListener::V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext)
49 , m_code(code)
110 // have the same numbers as in the original code.
111 String code = "(function (evt) {" \ local
116 code.append(m_code);
118 code.append( "\n}).call(this, evt);}}}})");
119 v8::Handle<v8::String> codeExternalString = v8ExternalString(code);
131 // argument wrapping the event source code. The reason for this is
  /external/webkit/Source/WebCore/dom/
ExceptionBase.h 8 * 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/
MediaError.h 7 * 1. Redistributions of source code must retain the above copyright
38 enum Code { MEDIA_ERR_ABORTED = 1, MEDIA_ERR_NETWORK, MEDIA_ERR_DECODE, MEDIA_ERR_SRC_NOT_SUPPORTED };
40 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); }
42 Code code() const { return m_code; } function in class:WebCore::MediaError
45 MediaError(Code code) : m_code(code) { }
    [all...]
  /external/webkit/Source/WebCore/page/
GeolocationError.h 7 * 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)); }
47 ErrorCode code() const { return m_code; } function in class:WebCore::GeolocationError
51 GeolocationError(ErrorCode code, const String& message)
52 : m_code(code)

Completed in 553 milliseconds

1 2 34 5 6 7 8 91011>>