HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 101 - 125 of 1221) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
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 */
  /external/dexmaker/src/dx/java/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/elfutils/libdw/
dwarf_child.c 20 additional right to link the code of Red Hat elfutils with code licensed
23 distribution of source code with any binary distribution and to
24 distribute linked combinations of the two. Non-GPL Code permitted under
25 this exception must only link to the code of Red Hat elfutils through
27 found in the source code files (the "Approved Interfaces"). The files
28 of Non-GPL Code may instantiate templates or use macros or inline
35 License in all respects for all of the Red Hat elfutils code and other
36 code used in conjunction with Red Hat elfutils except the Non-GPL Code
181 const unsigned char *code = addr; local
    [all...]
  /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/regex-re2/re2/
filtered_re2.cc 2 // Use of this source code is governed by a BSD-style
27 RE2::ErrorCode code = re->error_code(); local
38 return 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_NRMASK << _IOC_NRSHIFT) |
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/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)
PositionError.h 7 * 1. Redistributions of source code must retain the above copyright
43 static PassRefPtr<PositionError> create(ErrorCode code, const String& message) { return adoptRef(new PositionError(code, message)); }
45 ErrorCode code() const { return m_code; } function in class:WebCore::PositionError
51 PositionError(ErrorCode code, const String& message)
52 : m_code(code)
  /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:__anon15807
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:__anon15823
35 01000000 - invalid code
    [all...]
  /frameworks/av/media/mtp/
MtpDebug.cpp 23 uint16_t code; member in struct:android::CodeEntry
370 static const char* getCodeName(uint16_t code, const CodeEntry* table) {
373 if (entry->code == code)
380 const char* MtpDebug::getOperationCodeName(MtpOperationCode code) {
381 return getCodeName(code, sOperationCodes);
384 const char* MtpDebug::getFormatCodeName(MtpObjectFormat code) {
385 if (code == 0)
387 return getCodeName(code, sFormatCodes);
390 const char* MtpDebug::getObjectPropCodeName(MtpPropertyCode code) {
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regerror.c 7 * This code is derived from software contributed to Berkeley by
13 * 1. Redistributions of source code must retain the above copyright
50 int code; member in struct:rerr
70 { 0, "", "*** unknown regexp error code ***" }
90 for (r = rerrs; r->code != 0; r++)
91 if (r->code == target)
95 if (r->code != 0) {
122 for (r = rerrs; r->code != 0; r++)
125 if (r->code == 0)
128 (void)snprintf(localbuf, localbufsize, "%d", r->code);
    [all...]

Completed in 2107 milliseconds

1 2 3 45 6 7 8 91011>>