/dalvik/dx/src/com/android/dx/dex/code/ |
PositionList.java | 17 package com.android.dx.dex.code; 19 import com.android.dx.rop.code.SourcePosition; 27 /** {@code non-null;} empty instance */ 53 * @param insns {@code non-null;} instructions to convert 56 * @return {@code non-null;} the positions list 115 * Constructs an instance. All indices initially contain {@code null}. 117 * @param size {@code >= 0;} the size of the list 126 * do that, this will throw {@code NullPointerException}. 128 * @param n {@code >= 0, < size();} which index 129 * @return {@code non-null;} element at that inde [all...] |
/dalvik/dx/src/com/android/dx/dex/code/form/ |
Form35c.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.RegisterSpec; 23 import com.android.dx.rop.code.RegisterSpecList; 32 * Instruction format {@code 35c}. See the instruction format spec 36 /** {@code non-null;} unique instance of this class */ 140 * category-2 values count as two words. Return {@code -1} if the 144 * @param regs {@code non-null;} the register list in questio [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
DebugInfoItem.java | 20 import com.android.dx.dex.code.DalvCode; 21 import com.android.dx.dex.code.DalvInsnList; 22 import com.android.dx.dex.code.LocalList; 23 import com.android.dx.dex.code.PositionList; 34 /** {@code non-null;} the code this item represents */ 35 private final DalvCode code; field in class:DebugInfoItem 42 public DebugInfoItem(DalvCode code, boolean isStatic, CstMethodRef ref) { 46 if (code == null) { 47 throw new NullPointerException("code == null") [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
BasicBlock.java | 17 package com.android.dx.rop.code; 28 /** {@code >= 0;} target label for this block */ 31 /** {@code non-null;} list of instructions in this block */ 35 * {@code non-null;} full list of successors that this block may 41 * {@code >= -1;} the primary / standard-flow / "default" successor, or 42 * {@code -1} if this block has no successors (that is, it 48 * Constructs an instance. The predecessor set is set to {@code null}. 50 * @param label {@code >= 0;} target label for this block 51 * @param insns {@code non-null;} list of instructions in this block 52 * @param successors {@code non-null;} full list of successors that thi [all...] |
LocalVariableInfo.java | 17 package com.android.dx.rop.code; 29 /** {@code >= 0;} the register count for the method */ 33 * {@code non-null;} {@link RegisterSpecSet} to use when indicating a block 40 * {@code non-null;} array consisting of register sets representing the 46 /** {@code non-null;} map from instructions to the variable each assigns */ 52 * @param method {@code non-null;} the method being represented by this instance 75 * @param label {@code >= 0;} the block label 76 * @param specs {@code non-null;} the register set to associate with the block 100 * @param label {@code >= 0;} the block label 101 * @param specs {@code non-null;} the register set to merge into the start se [all...] |
RegisterSpecList.java | 17 package com.android.dx.rop.code; 29 /** {@code non-null;} no-element instance */ 35 * @param spec {@code non-null;} the element 36 * @return {@code non-null;} an appropriately-constructed instance 47 * @param spec0 {@code non-null;} the first element 48 * @param spec1 {@code non-null;} the second element 49 * @return {@code non-null;} an appropriately-constructed instance 62 * @param spec0 {@code non-null;} the first element 63 * @param spec1 {@code non-null;} the second element 64 * @param spec2 {@code non-null;} the third elemen [all...] |
RopMethod.java | 17 package com.android.dx.rop.code; 26 /** {@code non-null;} basic block list of the method */ 29 /** {@code >= 0;} label for the block which starts the method */ 33 * {@code null-ok;} array of predecessors for each block, indexed by block 39 * {@code null-ok;} the predecessors for the implicit "exit" block, that is 47 * @param blocks {@code non-null;} basic block list of the method 48 * @param firstLabel {@code >= 0;} the label of the first block to execute 69 * @return {@code non-null;} the list 79 * @return {@code >= 0;} the first-block label 89 * @param label {@code >= 0;} the label of the block in questio [all...] |
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestLexer.java | 9 * 1. Redistributions of source code must retain the above copyright 248 String code = codeST.render(); local 249 int m = code.indexOf("match(\""); 250 String found = code.substring(m,m+expecting.length());
|
/external/apache-http/src/org/apache/commons/codec/language/ |
Metaphone.java | 26 * Permission given by <CITE>wbrogden</CITE> for code to be used anywhere. 54 * The max code length for metaphone is 4 72 * @param txt String to find the metaphone code for 73 * @return A metaphone code corresponding to the String supplied 88 StringBuffer code = new StringBuffer(10) ; // output local 130 while ((code.length() < this.getMaxCodeLen()) && 131 (n < wdsz) ) { // max code size of 4 works well 140 code.append(symb); 148 code.append(symb); 158 code.append('X'); [all...] |
/external/chromium/chrome/common/net/gaia/ |
gaia_auth_fetcher_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 41 net::URLRequestStatus::Status code; local 45 code = net::URLRequestStatus::SUCCESS; 48 code = net::URLRequestStatus::FAILED; 51 net::URLRequestStatus status(code, 0);
|
gaia_oauth_client_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 49 net::URLRequestStatus::Status code = net::URLRequestStatus::SUCCESS; local 51 code = net::URLRequestStatus::FAILED; 54 net::URLRequestStatus status(code, 0);
|
/external/chromium_org/chrome/browser/chromeos/login/managed/ |
locally_managed_user_creation_controller.cc | 2 // Use of this source code is governed by a BSD-style license that can be 122 ErrorCode code = NO_ERROR; local 125 code = CRYPTOHOME_NO_MOUNT; 128 code = CRYPTOHOME_FAILED_MOUNT; 131 code = CRYPTOHOME_FAILED_TPM; 137 consumer_->OnCreationError(code); 178 LOG(ERROR) << "Managed user creation failed. Error code " << error.state();
|
/external/chromium_org/chrome/browser/diagnostics/ |
diagnostics_writer.cc | 2 // Use of this source code is governed by a BSD-style license that can be 164 const char* code = "\033[m"; variable 167 code = "\033[1;31m"; 170 code = "\033[1;32m"; 177 printf("%s", code);
|
/external/chromium_org/chrome/common/translate/ |
language_detection_util.cc | 2 // Use of this source code is governed by a BSD-style license that can be 19 // Similar language code list. Some languages are very similar and difficult 22 const char* const code; member in struct:__anon9193::SimilarLanguageCode 33 // Checks |kSimilarLanguageCodes| and returns group code. 36 if (language.find(kSimilarLanguageCodes[i].code) != 0) 51 // Applies a series of language code modification in proper order. 52 void ApplyLanguageCodeCorrection(std::string* code) { 54 LanguageDetectionUtil::CorrectLanguageCodeTypo(code); 56 if (!LanguageDetectionUtil::IsValidLanguageCode(*code)) { 57 *code = std::string() [all...] |
/external/chromium_org/chrome/renderer/spellchecker/ |
spellcheck_provider.cc | 2 // Use of this source code is governed by a BSD-style license that can be 245 uint32 code = 0; local 246 U16_NEXT(data, index, length, code); 248 if (uscript_getScript(code, &error) != USCRIPT_COMMON) 324 int code = 0; local 326 U16_PREV(text.data(), 0, length, code); 328 if (uscript_getScript(code, &error) != USCRIPT_COMMON) {
|
/external/chromium_org/chrome/test/base/ |
module_system_test.cc | 2 // Use of this source code is governed by a BSD-style license that can be 151 const std::string& code) { 152 source_map_->RegisterModule(name, code); 157 const std::string& code = ResourceBundle::GetSharedInstance(). local 159 source_map_->RegisterModule(name, code); 163 const std::string& code) { 164 RegisterModule(name, code);
|
/external/chromium_org/chrome/test/chromedriver/ |
chrome_launcher.cc | 2 // Use of this source code is governed by a BSD-style license that can be 368 int code; local 371 template_string, 0, &code, &error_msg));
|
/external/chromium_org/chrome/test/chromedriver/net/ |
websocket.cc | 2 // Use of this source code is governed by a BSD-style license that can be 48 int code = socket_->Connect(base::Bind( local 50 if (code != net::ERR_IO_PENDING) 51 OnSocketConnect(code); 77 void WebSocket::OnSocketConnect(int code) { 78 if (code != net::OK) { 79 Close(code); 107 void WebSocket::OnWrite(int code) { 109 // Supposedly if |StreamSocket| is closed, the error code may be undefined. 113 if (code < 0) 131 int code = local 140 int code = local [all...] |
/external/chromium_org/net/proxy/ |
proxy_script_fetcher_impl_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 45 int code; member in struct:net::__anon11280::FetchResult
|
/external/chromium_org/sandbox/win/src/ |
process_thread_interception.cc | 2 // Use of this source code is governed by a BSD-style license that can be 73 ResultCode code = CrossCall(ipc, IPC_NTOPENTHREAD_TAG, desired_access, local 75 if (SBOX_ALL_OK != code) 151 ResultCode code = CrossCall(ipc, IPC_NTOPENPROCESS_TAG, desired_access, local 153 if (SBOX_ALL_OK != code) 196 ResultCode code = CrossCall(ipc, IPC_NTOPENPROCESSTOKEN_TAG, process, local 198 if (SBOX_ALL_OK != code) 241 ResultCode code = CrossCall(ipc, IPC_NTOPENPROCESSTOKENEX_TAG, process, local 243 if (SBOX_ALL_OK != code) 304 ResultCode code = CrossCall(ipc, IPC_CREATEPROCESSW_TAG, application_name local 381 ResultCode code = CrossCall(ipc, IPC_CREATEPROCESSW_TAG, app_name, local [all...] |
target_services.cc | 2 // Use of this source code is governed by a BSD-style license that can be 81 // If the client code as called RegOpenKey, advapi32.dll has cached some 82 // handles. The following code gets rid of them. 118 ResultCode code = CrossCall(ipc, IPC_PING1_TAG, cookie, &answer); local 120 if (SBOX_ALL_OK != code) { 144 ResultCode code = CrossCall(ipc, IPC_PING2_TAG, counted_buffer, &answer); local 146 if (SBOX_ALL_OK != code) {
|
/external/chromium_org/third_party/WebKit/Source/core/fileapi/ |
FileError.h | 8 * * Redistributions of source code must retain the above copyright 72 static PassRefPtr<FileError> create(ErrorCode code) { return adoptRef(new FileError(code)); } 74 ErrorCode code() const { return m_code; } function in class:WebCore::FileError 79 FileError(ErrorCode code) 80 : m_code(code)
|
/external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/bmp/ |
BMPImageReader.cpp | 8 * * Redistributions of source code must retain the above copyright 136 // Don't increment m_decodedOffset here, it just makes the code in 188 // other code relies on this value being correct. 432 // infinite loop in the counting code below. 534 const uint8_t code = m_data->data()[m_decodedOffset + 1]; local 535 if ((count || (code != 1)) && pastEndOfImage(0)) 540 switch (code) { 579 // |code| pixels specified as in BI_RGB, zero-padded at the end 585 const ProcessingResult result = processNonRLEData(true, code); 607 fillRGBA(endX, m_data->data()[m_decodedOffset + 3], m_data->data()[m_decodedOffset + 2], code, 0xff) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/gif/ |
GIFImageReader.cpp | 15 * The Original Code is mozilla.org code. 17 * The Initial Developer of the Original Code is 205 int code; local 230 code = datum & codemask; 235 if (code == clearCode) { 243 // Check for explicit end-of-stream code. 244 if (code == (clearCode + 1)) { 252 *rowIter++ = suffix[code]; 256 firstchar = oldcode = code; [all...] |
/external/chromium_org/third_party/freetype/src/cff/ |
cffparse.h | 55 FT_UInt code, 86 int code; member in struct:CFF_Field_Handler_
|