Searched refs:code (Results 126 - 150 of 2271) sorted by relevance

1234567891011>>

/external/dexmaker/src/main/java/com/google/dexmaker/
H A DUnaryOp.java19 import com.android.dx.rop.code.Rop;
20 import com.android.dx.rop.code.Rops;
27 /** {@code ~a}. Supports int and long. */
34 /** {@code -a}. Supports int, long, float and double. */
/external/e2fsprogs/lib/et/
H A Dcom_right.c17 * 1. Redistributions of source code must retain the above copyright
48 com_right(struct et_list *list, long code) argument
52 if (code >= p->table->base && code < p->table->base + p->table->n_msgs)
53 return p->table->msgs[code - p->table->base];
59 com_right_r(struct et_list *list, long code, char *str, size_t len) argument
63 if ((code >= p->table->base) &&
64 (code < p->table->base + p->table->n_msgs)) {
65 strncpy(str, p->table->msgs[code - p->table->base], len);
/external/elfutils/libdw/
H A Ddwarf_attr.c20 additional right to link the code of Red Hat elfutils with code licensed
23 distribution of source code with any binary distribution and to
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
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
69 result->valp = __libdw_find_attr (die, search_name, &result->code,
74 return result->code == search_name ? result : NULL;
/external/llvm/utils/
H A Dcountloc.sh11 # This script finds all the source code files in the source code directories
34 ./utils/llvmdo -topdir "$TOPDIR" -dirs "include lib tools test utils examples" -code-only wc -l | awk '\
/external/oprofile/libopagent/
H A Dopagent.h3 * Interface to report symbol names and dynamically generated code to Oprofile
67 * Signal the dynamic generation of native code from a virtual machine.
76 * vma: The virtual memory address of the executable code.
77 * code: Pointer to the location of the compiled code.
80 * obtaining the code may be impractical. For this (or any other)
82 * If NULL is passed, no code will be copied into the JIT dump
84 * code_size: Size of the compiled code.
90 uint64_t vma, void const * code,
94 * Add debug line information to a piece of code
[all...]
/external/speex/libspeex/
H A Dvq_arm4.h11 - Redistributions of source code must retain the above copyright
78 const spx_word16_t *code = codebook;
79 dist1 = MAC16_16(dist1,in[j],*code);
80 code += len;
81 dist2 = MAC16_16(dist2,in[j],*code);
82 code += len;
83 dist3 = MAC16_16(dist3,in[j],*code);
84 code += len;
85 dist4 = MAC16_16(dist4,in[j],*code);
/external/webkit/Source/WebCore/html/
H A DMediaError.idl7 * 1. Redistributions of source code must retain the above copyright
32 readonly attribute unsigned short code;
/external/webkit/Source/WebCore/page/
H A DPositionError.idl7 * 1. Redistributions of source code must retain the above copyright
29 readonly attribute unsigned short code;
/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DfixChangeLogPatch.pl10 # * Redistributions of source code must retain the above copyright
46 # Changed some code on 2009-12-22.
55 # Changed some code on 2009-12-21.
72 Changed some code on 2010-12-22.
84 Changed some code on 2010-12-22.
98 - Changed some code on 2010-12-22.
115 - Changed some code on 2010-12-22.
136 - Changed some code on 2010-12-22.
152 - Changed some code on 2010-12-22.
172 Changed some code o
[all...]
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DAnalyzerTest.java142 private static void addJump(Bytecode code, int opcode, int pos) { argument
143 int current = code.currentPc();
144 code.addOpcode(opcode);
145 code.addIndex(pos - current);
167 fail("Invalid code should have triggered a BadBytecode exception");
202 Bytecode code = new Bytecode(info.getConstPool(), 1, 2);
203 /* 0 */ code.addIconst(1);
204 /* 1 */ addJump(code, Opcode.GOTO, 5);
205 /* 4 */ code.addIconst(0); // DEAD
206 /* 5 */ code
[all...]
/external/bluetooth/glib/glib/
H A Dgerror.h37 gint code; member in struct:_GError
42 gint code,
47 gint code,
55 gint code);
57 /* if (err) *err = g_error_new(domain, code, format, ...), also has
62 gint code,
68 gint code,
H A Dgerror.c35 gint code,
44 error->code = code;
53 * @code: error code
57 * Creates a new #GError with the given @domain and @code,
64 gint code,
75 error = g_error_new_valist (domain, code, format, args);
84 * @code: error code
34 g_error_new_valist(GQuark domain, gint code, const gchar *format, va_list args) argument
63 g_error_new(GQuark domain, gint code, const gchar *format, ...) argument
95 g_error_new_literal(GQuark domain, gint code, const gchar *message) argument
166 g_error_matches(const GError *error, GQuark domain, gint code) argument
191 g_set_error(GError **err, GQuark domain, gint code, const gchar *format, ...) argument
230 g_set_error_literal(GError **err, GQuark domain, gint code, const gchar *message) argument
[all...]
/external/javassist/src/main/javassist/
H A DCtNewMethod.java24 * A collection of static methods for creating a <code>CtMethod</code>.
32 * Compiles the given source code and creates a method.
33 * The source code must include not only the method body
48 * Compiles the given source code and creates a method.
49 * The source code must include not only the method body
54 * <p>If the source code includes <code>$proceed()</code>, then
60 * that is called on by <code>
[all...]
H A DCtNewWrappedMethod.java44 Bytecode code = makeBody(declaring, declaring.getClassFile2(), body,
46 mt.getMethodInfo2().setCodeAttribute(code.toCodeAttribute());
58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0);
60 parameters, returnType, cparam, code);
61 code.setMaxStack(stacksize);
62 code.setMaxLocals(isStatic, parameters, 0);
63 return code;
73 Bytecode code)
81 code.addAload(0);
83 int stacksize = compileParameterList(code, parameter
69 makeBody0(CtClass clazz, ClassFile classfile, CtMethod wrappedBody, boolean isStatic, CtClass[] parameters, CtClass returnType, ConstParameter cparam, Bytecode code) argument
171 compileParameterList(Bytecode code, CtClass[] params, int regno) argument
179 compileReturn(Bytecode code, CtClass type) argument
[all...]
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Ddomconfigschematype1.js101 if (typeof(ex.code) != 'undefined') {
102 switch(ex.code) {
131 success = (typeof(ex.code) != 'undefined' && ex.code == 9);
156 success = (typeof(ex.code) != 'undefined' && ex.code == 9);
H A Dnodereplacechild22.js111 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
122 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
133 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DEncodedMethod.java19 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 {
54 EncodedMethod(CstMethodRef method, int accessFlags, DalvCode code, TypeList throwsList) argument
[all...]
/external/webkit/Source/WebCore/platform/text/brew/
H A DTextCodecBrew.cpp7 * 1. Redistributions of source code must retain the above copyright
79 int code = ICharsetConv_Initialize(m_charsetConverter, m_encoding.name(), m_internalEncodingName, 0); local
80 ASSERT(code == AEE_SUCCESS);
114 code = ICharsetConv_CharsetConvert(m_charsetConverter, &src, &srcSize, &dst, &dstSize, &numCharsConverted);
115 ASSERT(code != AEE_ENOSUCH);
117 if (code == AEE_EBUFFERTOOSMALL) {
123 if (code == AEE_EBADITEM) {
133 if (code == AEE_EINCOMPLETEITEM) {
161 int code = ICharsetConv_Initialize(m_charsetConverter, m_internalEncodingName, m_encoding.name(), replacementCharacter); local
162 ASSERT(code
[all...]
/external/javassist/src/main/javassist/compiler/
H A DAccessorMaker.java61 Bytecode code = new Bytecode(cp);
62 code.addAload(0);
65 regno += code.addLoad(regno, params[i]);
66 code.setMaxLocals(regno + 1); // the last parameter is added.
67 code.addInvokespecial(clazz, MethodInfo.nameInit, desc);
69 code.addReturn(null);
70 minfo.setCodeAttribute(code.toCodeAttribute());
90 * parameter type is <code>clazz</code>.
92 * <code>accDes
[all...]
/external/webkit/Source/WebKit/mac/Misc/
H A DWebKitErrors.m8 * 1. Redistributions of source code must retain the above copyright
72 -(id)_webkit_initWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL
79 localizedDesc = descriptionsDict ? [descriptionsDict objectForKey:[NSNumber numberWithInt:code]] : nil;
85 return [self initWithDomain:domain code:code userInfo:dict];
88 +(id)_webkit_errorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL
90 return [[[self alloc] _webkit_initWithDomain:domain code:code UR
[all...]
/external/opencv/cxcore/src/
H A Dcxerror.cpp19 // * Redistribution's of source code must retain the above copyright notice,
150 cvStdErrReport( int code, const char *func_name, const char *err_msg, argument
153 if( code == CV_StsBackTrace || code == CV_StsAutoTrace )
157 cvErrorStr(code), err_msg ? err_msg : "no description" );
173 cvGuiBoxReport( int code, const char *func_name, const char *err_msg, argument
177 return cvStdErrReport( code, func_name, err_msg, file, line, 0 );
179 if( code != CV_StsBackTrace && code != CV_StsAutoTrace )
189 cvErrorStr(code), err_ms
240 int code = cvGetErrStatus(); local
333 cvError( int code, const char* func_name, const char* err_msg, const char* file_name, int line ) argument
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dsigned_settings_helper.h2 // Use of this source code is governed by a BSD-style license that can be
30 SignedSettings::ReturnCode code,
35 SignedSettings::ReturnCode code, const std::string& email) {}
39 SignedSettings::ReturnCode code, const std::string& email) {}
43 SignedSettings::ReturnCode code,
49 SignedSettings::ReturnCode code,
55 SignedSettings::ReturnCode code) {}
59 SignedSettings::ReturnCode code,
29 OnCheckWhitelistCompleted( SignedSettings::ReturnCode code, const std::string& email) argument
34 OnWhitelistCompleted( SignedSettings::ReturnCode code, const std::string& email) argument
38 OnUnwhitelistCompleted( SignedSettings::ReturnCode code, const std::string& email) argument
42 OnStorePropertyCompleted( SignedSettings::ReturnCode code, const std::string& name, const std::string& value) argument
48 OnRetrievePropertyCompleted( SignedSettings::ReturnCode code, const std::string& name, const std::string& value) argument
54 OnStorePolicyCompleted( SignedSettings::ReturnCode code) argument
58 OnRetrievePolicyCompleted( SignedSettings::ReturnCode code, const em::PolicyFetchResponse& policy) argument
/external/v8/src/
H A Dstub-cache.cc6 // * Redistributions of source code must retain the above copyright
33 #include "code-stubs.h"
58 Code* StubCache::Set(String* name, Map* map, Code* code) { argument
59 // Get the flags from the code.
60 Code::Flags flags = Code::RemoveTypeFromFlags(code->flags());
74 // Make sure that the code type is not included in the hash.
95 primary->value = code;
98 return code;
126 Handle<Code> code = local
128 PROFILE(isolate_, CodeCreateEvent(Logger::LOAD_IC_TAG, *code, *cache_nam
145 Handle<Code> code = local
165 Handle<Code> code = local
185 Handle<Code> code = local
203 Handle<Code> code = local
228 Handle<Code> code = local
247 Handle<Code> code = local
267 Handle<Code> code = local
286 Handle<Code> code = compiler.CompileLoadInterceptor(receiver, holder, name); local
306 Handle<Code> code = local
323 Handle<Code> code = compiler.CompileLoadArrayLength(name); local
340 Handle<Code> code = compiler.CompileLoadStringLength(name); local
357 Handle<Code> code = compiler.CompileLoadFunctionPrototype(name); local
377 Handle<Code> code = local
472 Handle<Code> code = compiler.CompileStoreGlobal(receiver, cell, name); local
491 Handle<Code> code = compiler.CompileStoreCallback(receiver, callback, name); local
508 Handle<Code> code = compiler.CompileStoreInterceptor(receiver, name); local
528 Handle<Code> code = local
569 Handle<Code> code = local
607 Handle<Code> code = local
644 Handle<Code> code = local
649 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_IC_TAG), *code, *name)); local
674 Handle<Code> code = local
678 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_IC_TAG), *code, *name)); local
685 FillCache(Isolate* isolate, Handle<Code> code) argument
708 Object* code = dictionary->ValueAt(entry); local
729 Handle<Code> code = compiler.CompileCallInitialize(flags); local
758 Handle<Code> code = compiler.CompileCallPreMonomorphic(flags); local
775 Handle<Code> code = compiler.CompileCallNormal(flags); local
792 Handle<Code> code = compiler.CompileCallArguments(flags); local
811 Handle<Code> code = compiler.CompileCallMegamorphic(flags); local
831 Handle<Code> code = compiler.CompileCallMiss(flags); local
851 Handle<Code> code = compiler.CompileCallDebugBreak(flags); local
870 Handle<Code> code = compiler.CompileCallDebugPrepareStepIn(flags); local
1149 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallInitialize"); local
1153 *code, code->arguments_count())); local
1170 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallPreMonomorphic"); local
1174 *code, code->arguments_count())); local
1191 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallNormal"); local
1195 *code, code->arguments_count())); local
1210 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallMegamorphic"); local
1214 *code, code->arguments_count())); local
1223 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallArguments"); local
1242 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallMiss"); local
1246 *code, code->arguments_count())); local
1255 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallDebugBreak"); local
1275 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallDebugPrepareStepIn"); local
1279 *code, local
1293 Handle<Code> code = factory()->NewCode(desc, flags, masm_.CodeObject()); local
1324 Handle<Code> code = GetCodeWithFlags(flags, name); local
1336 Handle<Code> code = GetCodeWithFlags(flags, name); local
1347 Handle<Code> code = GetCodeWithFlags(flags, name); local
1361 Handle<Code> code = GetCodeWithFlags(flags, name); local
1454 Handle<Code> code = GetCodeWithFlags(flags, "ConstructStub"); local
[all...]
/external/jpeg/
H A Djerror.h27 #define JMESSAGE(code,string)
35 #define JMESSAGE(code,string) code ,
39 JMESSAGE(JMSG_NOMESSAGE, "Bogus message code %d") /* Must be first entry! */
41 /* For maintenance convenience, list is alphabetical by message code name */
57 JMESSAGE(JERR_BAD_POOL_ID, "Invalid memory pool code %d")
85 JMESSAGE(JERR_HUFF_CLEN_OVERFLOW, "Huffman code size table overflow")
86 JMESSAGE(JERR_HUFF_MISSING_CODE, "Missing Huffman code table entry")
172 JMESSAGE(JWRN_ADOBE_XFORM, "Unknown Adobe color transform code %d")
178 JMESSAGE(JWRN_HUFF_BAD_CODE, "Corrupt JPEG data: bad Huffman code")
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djerror.h27 #define JMESSAGE(code,string)
35 #define JMESSAGE(code,string) code ,
39 JMESSAGE(JMSG_NOMESSAGE, "Bogus message code %d") /* Must be first entry! */
41 /* For maintenance convenience, list is alphabetical by message code name */
57 JMESSAGE(JERR_BAD_POOL_ID, "Invalid memory pool code %d")
85 JMESSAGE(JERR_HUFF_CLEN_OVERFLOW, "Huffman code size table overflow")
86 JMESSAGE(JERR_HUFF_MISSING_CODE, "Missing Huffman code table entry")
172 JMESSAGE(JWRN_ADOBE_XFORM, "Unknown Adobe color transform code %d")
178 JMESSAGE(JWRN_HUFF_BAD_CODE, "Corrupt JPEG data: bad Huffman code")
[all...]

Completed in 1474 milliseconds

1234567891011>>