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

1 23 4 5 6 7 8 91011>>

  /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
ThrowingCstInsn.java 17 package com.android.dx.rop.code;
29 /** {@code non-null;} list of exceptions caught */
35 * @param opcode {@code non-null;} the opcode
36 * @param position {@code non-null;} source position
37 * @param sources {@code non-null;} specs for all the sources
38 * @param catches {@code non-null;} list of exceptions caught
39 * @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/chromium/third_party/icu/source/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/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/libvpx/vp8/common/
fourcc.hpp 4 * Use of this source code is governed by a BSD-style license
52 char code[4]; member in union:four_cc::__anon5236
70 memcpy(code, str, 4);
86 return (memcmp(code, rhs, 4) == 0);
107 return code[i];
  /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/openssl/crypto/rand/
rand_vms.c 12 * 1. Redistributions of source code must retain the above copyright
74 short length, code; /* length is amount of bytes */ member in struct:items_data_st
92 short length, code; member in struct:__anon5592
108 pitem->code = pitems_data->code;
115 pitem->length = pitem->code = 0;
  /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/src/arm/
frames-arm.cc 6 // * Redistributions of source code must retain the above copyright
62 Object* code = Memory::Object_at(fp + offset); local
63 bool is_debug_exit = code->IsSmi();
  /external/v8/src/
code-stubs.cc 6 // * Redistributions of source code must retain the above copyright
31 #include "code-stubs.h"
39 bool CodeStub::FindCodeInCache(Code** code_out) {
43 *code_out = Code::cast(Heap::code_stubs()->ValueAt(index));
51 // Update the static counter each time a new code stub is generated.
55 // Generate the code for the stub.
61 void CodeStub::RecordCodeGeneration(Code* code, MacroAssembler* masm) {
62 code->set_major_key(MajorKey());
67 code->instruction_start()
87 Code* code; local
124 Code* code; local
    [all...]
  /external/v8/src/mips/
frames-mips.cc 6 // * Redistributions of source code must retain the above copyright
58 Object* code = Memory::Object_at(fp + offset); local
59 bool is_debug_exit = code->IsSmi();
  /external/v8/test/cctest/
test-assembler-mips.cc 6 // * Redistributions of source code must retain the above copyright
79 Object* code = Heap::CreateCode(desc, local
81 Code::ComputeFlags(Code::STUB),
83 CHECK(code->IsCode());
85 Code::cast(code)->Print();
87 F2 f = FUNCTION_CAST<F2>(Code::cast(code)->entry());
120 Object* code = Heap::CreateCode(desc local
243 Object* code = Heap::CreateCode(desc, local
    [all...]
  /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/webkit/JavaScriptCore/assembler/
RepatchBuffer.h 7 * 1. Redistributions of source code must retain the above copyright
40 // This class is used to modify code after code generation has been completed,
41 // and after the code has potentially already been executed. This mechanism is
42 // used to apply optimizations to the code.
50 JITCode& code = codeBlock->getJITCode(); local
51 m_start = code.start();
52 m_size = code.size();
  /external/webkit/WebCore/bindings/v8/
V8LazyEventListener.cpp 8 * * Redistributions of source code must retain the above copyright
44 V8LazyEventListener::V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, int lineNumber, int columnNumber, const WorldContextHandle& worldContext)
48 , m_code(code)
107 // have the same numbers as in the original code.
108 String code = "(function (evt) {" \ local
113 code.append(m_code);
115 code.append( "\n}).call(this, evt);}}}})");
116 v8::Handle<v8::String> codeExternalString = v8ExternalString(code);
128 // argument wrapping the event source code. The reason for this is
  /external/webkit/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/WebCore/html/
MediaError.h 7 * 1. Redistributions of source code must retain the above copyright
37 enum Code { MEDIA_ERR_ABORTED = 1, MEDIA_ERR_NETWORK, MEDIA_ERR_DECODE, MEDIA_ERR_SRC_NOT_SUPPORTED };
39 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); }
41 Code code() const { return m_code; } function in class:WebCore::MediaError
44 MediaError(Code code) : m_code(code) { }
    [all...]
  /external/webkit/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)

Completed in 1862 milliseconds

1 23 4 5 6 7 8 91011>>