/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/ |
Form21s.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.CstInsn; 20 import com.android.dx.dex.code.DalvInsn; 21 import com.android.dx.dex.code.InsnFormat; 22 import com.android.dx.rop.code.RegisterSpecList; 30 * Instruction format {@code 21s}. See the instruction format spec 34 /** {@code non-null;} unique instance of this class */
|
Form22b.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.CstInsn; 20 import com.android.dx.dex.code.DalvInsn; 21 import com.android.dx.dex.code.InsnFormat; 22 import com.android.dx.rop.code.RegisterSpecList; 30 * Instruction format {@code 22b}. See the instruction format spec 34 /** {@code non-null;} unique instance of this class */
|
Form22c.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.CstInsn; 20 import com.android.dx.dex.code.DalvInsn; 21 import com.android.dx.dex.code.InsnFormat; 22 import com.android.dx.rop.code.RegisterSpecList; 31 * Instruction format {@code 22c}. See the instruction format spec 35 /** {@code non-null;} unique instance of this class */
|
Form22s.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.CstInsn; 20 import com.android.dx.dex.code.DalvInsn; 21 import com.android.dx.dex.code.InsnFormat; 22 import com.android.dx.rop.code.RegisterSpecList; 30 * Instruction format {@code 22s}. See the instruction format spec 34 /** {@code non-null;} unique instance of this class */
|
Form32s.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.CstInsn; 20 import com.android.dx.dex.code.DalvInsn; 21 import com.android.dx.dex.code.InsnFormat; 22 import com.android.dx.rop.code.RegisterSpecList; 30 * Instruction format {@code 32s}. See the instruction format spec 34 /** {@code non-null;} unique instance of this class */
|
Form52c.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.CstInsn; 20 import com.android.dx.dex.code.DalvInsn; 21 import com.android.dx.dex.code.InsnFormat; 22 import com.android.dx.rop.code.RegisterSpecList; 31 * Instruction format {@code 52c}. See the instruction format spec 35 /** {@code non-null;} unique instance of this class */
|
/external/javassist/src/main/javassist/ |
CtNewConstructor.java | 24 * A collection of static methods for creating a <code>CtConstructor</code>. 28 * methods in this class. Call <code>makeClassInitializer()</code> in 29 * <code>CtClass</code> and append code snippet to the body of the class 30 * initializer obtained by <code>makeClassInitializer()</code>. 44 * <code>Object</code> and passed to a super-class 141 Bytecode code = new Bytecode(cp, 1, 1); local [all...] |
/external/javassist/src/main/javassist/bytecode/ |
CodeAttribute.java | 27 * <code>Code_attribute</code>. 29 * <p>To browse the <code>code</code> field of 30 * a <code>Code_attribute</code> structure, 31 * use <code>CodeIterator</code>. 37 * The name of this attribute <code>"Code"</code> [all...] |
/external/chromium/chrome/browser/policy/ |
device_policy_cache.cc | 2 // Use of this source code is governed by a BSD-style license that can be 49 chromeos::SignedSettings::ReturnCode code) OVERRIDE { 50 if (code != chromeos::SignedSettings::SUCCESS) { 51 callback_->Run(code); 185 chromeos::SignedSettings::ReturnCode code, 190 if (code == chromeos::SignedSettings::NOT_FOUND || 191 code == chromeos::SignedSettings::KEY_UNAVAILABLE || 225 if (code != chromeos::SignedSettings::SUCCESS) { 226 if (code == chromeos::SignedSettings::BAD_SIGNATURE) { 252 chromeos::SignedSettings::ReturnCode code) { [all...] |
/external/dexmaker/src/main/java/com/google/dexmaker/stock/ |
ProxyBuilder.java | 19 import com.google.dexmaker.Code; 50 * This is similar to the {@code java.lang.reflect.Proxy} class, but works for classes instead of 53 * The following example demonstrates the creation of a dynamic proxy for {@code java.util.Random} 98 * The {@link #finalize()} method on {@code Object} will not be proxied. 101 * care not to make this a world-writable directory, so that third parties cannot inject code into 104 * <pre>{@code 108 * If the base class to be proxied leaks the {@code this} pointer in the constructor (bad practice), 148 * <p>If null, {@code ProxyBuilder.class.getClassLoader()} will be used. 161 * Sets the directory where executable code is stored. See {@link 195 * @throws IOException if an exception occurred writing to the {@code dexCache} directory 417 Code code = dexMaker.declare(methodId, PUBLIC); local [all...] |
/external/emma/core/java12/com/vladium/util/exception/ |
ExceptionCommon.java | 29 * Based on code <a href="http://www.fawcette.com/javapro/2002_12/online/exception_vroubtsov_12_16_02/default_pf.asp">published</a> 49 * Note that this introduces a possibility of error code name clashes. This 52 * <LI> when <CODE>getMessage(namespace, code)</CODE> is called, 'code' 57 * key 'code', the same step is repeated for the superclass of 'namespace'; 78 * package) to add to the set from which error code mappings are retrieved 245 * which to retrieve the description for 'code' [can be null, in which case 248 * @param code the message string value that was passed into exceptio [all...] |
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
MCJITMemoryManagerTest.cpp | 88 uint8_t* code[10000]; local 94 code[i] = MemMgr->allocateCodeSection(32, 0, 1); 98 code[i][j] = 1 + (i % 254); 102 EXPECT_NE((uint8_t *)0, code[i]); 111 EXPECT_EQ(ExpectedCode, code[i][j]); 123 uint8_t* code[10000]; local 133 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i); 138 code[i][j] = 1 + (i % 254); 145 EXPECT_NE((uint8_t *)0, code[i]); 148 uintptr_t CodeAlign = Align ? (uintptr_t)code[i] % Align : 0 [all...] |
/external/protobuf/src/google/protobuf/io/ |
tokenizer.cc | 3 // http://code.google.com/p/protobuf/ 9 // * Redistributions of source code must retain the above copyright 42 // integrate cleanly with C++ code, especially abstract code or code meant 49 // use regular expressions. And, indeed, I did. I have code which 55 // a lot of code that ends up basically as complex as the hand-coded 68 // - PCRE is fast, but there's still more overhead involved than the code 77 // our code, but that obligates us to keep it up-to-date and just seems 78 // like a big waste just to save 200 lines of code 649 int code = DigitValue(*ptr); local 663 int code = 0; local [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
PasswordEntryKeyboard.java | 91 final int code = key.codes[0]; local 92 if (code >=0 && code != '\n' && (code < 32 || code > 127)) { 93 // Log.w(TAG, "Key code for " + key.label + " is not latin-1"); 257 final int code = codes[0]; local 258 if (code == KEYCODE_SHIFT || code == KEYCODE_DELETE) { 260 if (code == KEYCODE_SHIFT) x += width / 6 [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/ |
KeyCodeDescriptionMapper.java | 87 * <li>Automatic or manually-defined based on the key code</li> 89 * <li>{code null} for keys with no label or key code defined</li> 100 final int code = key.getCode(); local 102 if (code == Constants.CODE_SWITCH_ALPHA_SYMBOL) { 109 if (code == Constants.CODE_SHIFT) { 113 if (code == Constants.CODE_ENTER) { 137 * key or {@code null} if there is not a description provided for the 250 * the specified key is pressed based on its key code. 252 * The order of precedence for key code descriptions is 270 final int code = key.getCode(); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
gensuitemodule.py | 6 Reading and understanding this code is left as an exercise to the reader. 41 --creator code Set creator code for package (-c) 379 (getostype, "suite code"), 380 (getostype, "event code"), 387 (getostype, "code"), 396 (getostype, "class code"), 428 (getword, "language code"), 429 (getword, "script code"), 435 """Generate code for a full aete resource. fname passed for doc purposes"" [all...] |
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
CodeAttribute_info.java | 21 * The Code attribute is a variable-length attribute used in the attributes 22 * table of {@link com.vladium.jcd.cls.Method_info} structures. A Code attribute 25 * Every Java Virtual Machine implementation must recognize Code attributes. There 26 * must be exactly one Code attribute in each method_info structure.<P> 28 * The Code attribute has the format 36 * u1 code[code_length]; 58 * The value of the code_length item gives the number of bytes in the code array for 59 * this method. The value of code_length must be greater than zero; the code array must 60 * not be empty.The code array gives the actual bytes of Java Virtual Machine code tha [all...] |
/external/linux-tools-perf/util/ |
run-command.c | 157 int status, code; local 173 code = WEXITSTATUS(status); 174 switch (code) { 180 return -code; 192 int code = start_command(cmd); local 193 if (code) 194 return code;
|
/external/v8/src/ |
codegen.cc | 6 // * Redistributions of source code must retain the above copyright 78 PrintF("*** Generate code for %s function: ", ftype); 96 Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm, 97 Code::Flags flags, 101 // Allocate and install the code. 104 Handle<Code> code = local 107 if (!code.is_null()) { 109 code->instruction_size()); 111 return code; [all...] |
/external/chromium_org/v8/src/ |
compiler.cc | 6 // * Redistributions of source code must retain the above copyright 148 void CompilationInfo::CommitDependencies(Handle<Code> code) { 158 dependent_code->UpdateToFinishedCode(group, this, *code); 197 Code::Flags CompilationInfo::flags() const { 199 return Code::ComputeFlags(code_stub()->GetCodeKind(), 205 return Code::ComputeFlags(Code::OPTIMIZED_FUNCTION); 236 Handle<Code> code(shared_info()->code()) 580 Code* code = it.frame()->LookupCode(); local 827 Handle<Code> code = info->code(); local 869 Handle<Code> code = info->code(); local 886 Handle<Code> code = info->code(); local 959 Handle<Code> code = info->code(); local 1089 Handle<Code> code = info->code(); local 1140 Handle<Code> code = isolate->builtins()->LazyCompile(); local 1215 Handle<Code> code = info->code(); local [all...] |
/external/chromium_org/v8/test/cctest/ |
test-assembler-ia32.cc | 6 // * Redistributions of source code must retain the above copyright 63 Object* code = isolate->heap()->CreateCode( local 65 Code::ComputeFlags(Code::STUB), 66 Handle<Code>())->ToObjectChecked(); 67 CHECK(code->IsCode()); 69 Code::cast(code)->Print(); 71 F2 f = FUNCTION_CAST<F2>(Code::cast(code)->entry()) 102 Object* code = isolate->heap()->CreateCode( local 145 Object* code = isolate->heap()->CreateCode( local 180 Code* code = Code::cast(isolate->heap()->CreateCode( local 215 Code* code = Code::cast(isolate->heap()->CreateCode( local 245 Code* code = Code::cast(isolate->heap()->CreateCode( local 282 Code* code = Code::cast(isolate->heap()->CreateCode( local 322 Code* code = Code::cast(isolate->heap()->CreateCode( local 378 Code* code = Code::cast(isolate->heap()->CreateCode( local 464 Code* code = Code::cast(isolate->heap()->CreateCode( local 517 Object* code = isolate->heap()->CreateCode( local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
stringprep.py | 12 def in_table_a1(code): 13 if unicodedata.category(code) != 'Cn': return False 14 c = ord(code) 20 def in_table_b1(code): 21 return ord(code) in b1_set 189 def map_table_b3(code): 190 r = b3_exceptions.get(ord(code)) 192 return code.lower() 206 def in_table_c11(code): 207 return code == u" [all...] |
BaseHTTPServer.py | 60 # | ddd: the status code returned by the server, - if not available. 91 <p>Error code %(code)d. 93 <p>Error code explanation: %(code)s = %(explain)s. 119 code as well as to expose any misunderstandings I may have about 120 HTTP (so you don't need to read the code to figure out I'm wrong 141 the ASCII character with hex code xx). 162 1. One line giving the response code 168 The response code line has the for [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
stringprep.py | 12 def in_table_a1(code): 13 if unicodedata.category(code) != 'Cn': return False 14 c = ord(code) 20 def in_table_b1(code): 21 return ord(code) in b1_set 189 def map_table_b3(code): 190 r = b3_exceptions.get(ord(code)) 192 return code.lower() 206 def in_table_c11(code): 207 return code == u" [all...] |
/external/chromium/chrome/browser/chromeos/login/ |
signed_settings_helper.cc | 2 // Use of this source code is governed by a BSD-style license that can be 120 virtual void OnSettingsOpCompleted(SignedSettings::ReturnCode code, 125 callback_->OnCheckWhitelistCompleted(code, email_); 128 callback_->OnWhitelistCompleted(code, email_); 131 callback_->OnUnwhitelistCompleted(code, email_); 180 virtual void OnSettingsOpCompleted(SignedSettings::ReturnCode code, 182 VLOG(2) << "OnSettingsOpCompleted, code = " << code; 184 callback_->OnStorePropertyCompleted(code, name_, value_); 213 virtual void OnSettingsOpCompleted(SignedSettings::ReturnCode code, [all...] |