/dalvik/dx/src/com/android/dx/cf/direct/ |
CodeObserver.java | 65 public void visitInvalid(int opcode, int offset, int length) { 66 observer.parsed(bytes, offset, length, header(offset)); 70 public void visitNoArgs(int opcode, int offset, int length, Type type) { 71 observer.parsed(bytes, offset, length, header(offset)); 75 public void visitLocal(int opcode, int offset, int length, 91 observer.parsed(bytes, offset, length, 92 header(offset) + (argComment ? " // " : " ") + 97 public void visitConstant(int opcode, int offset, int length [all...] |
/dalvik/libdex/ |
DexDataMap.cpp | 71 * Add a new element to the map. The offset must be greater than the 74 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type) { 79 (map->offsets[map->count - 1] >= offset)) { 80 ALOGE("Out-of-order data map offset: %#x then %#x", 81 map->offsets[map->count - 1], offset); 85 map->offsets[map->count] = offset; 91 * Get the type associated with the given offset. This returns -1 if 92 * there is no entry for the given offset. 94 int dexDataMapGet(DexDataMap* map, u4 offset) { 106 if (offset < guess) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FELighting.h | 67 inline void topLeft(int offset, IntPoint& normalVector); 68 inline void topRow(int offset, IntPoint& normalVector); 69 inline void topRight(int offset, IntPoint& normalVector); 70 inline void leftColumn(int offset, IntPoint& normalVector); 71 inline void interior(int offset, IntPoint& normalVector); 72 inline void rightColumn(int offset, IntPoint& normalVector); 73 inline void bottomLeft(int offset, IntPoint& normalVector); 74 inline void bottomRow(int offset, IntPoint& normalVector); 75 inline void bottomRight(int offset, IntPoint& normalVector); 95 inline void inlineSetPixel(int offset, LightingData&, LightSource::PaintingData& [all...] |
/external/elfutils/libdw/ |
dwarf_getabbrev.c | 1 /* Get abbreviation at given offset. 62 __libdw_getabbrev (dbg, cu, offset, lengthp, result) 65 Dwarf_Off offset; 73 if (offset >= dbg->sectiondata[IDX_debug_abbrev]->d_size) 80 = (unsigned char *) dbg->sectiondata[IDX_debug_abbrev]->d_buf + offset; 121 assert (abb->offset == offset); 135 abb->offset = offset; 162 dwarf_getabbrev (die, offset, lengthp [all...] |
dwarf_offabbrev.c | 1 /* Get abbreviation at given offset. 59 dwarf_offabbrev (Dwarf *dbg, Dwarf_Off offset, size_t *lengthp, 65 Dwarf_Abbrev *abbrev = __libdw_getabbrev (dbg, NULL, offset, lengthp,
|
/external/proguard/src/proguard/classfile/instruction/ |
BranchInstruction.java | 28 * This interface describes an instruction that branches to a given offset in 115 protected void readInfo(byte[] code, int offset) 117 branchOffset = readSignedValue(code, offset, branchOffsetSize()); 121 protected void writeInfo(byte[] code, int offset) 125 throw new IllegalArgumentException("Instruction has invalid branch offset size ("+this.toString(offset)+")"); 128 writeSignedValue(code, offset, branchOffset, branchOffsetSize()); 132 public int length(int offset) 138 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor) 140 instructionVisitor.visitBranchInstruction(clazz, method, codeAttribute, offset, this) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/blob/ |
BlobData.h | 70 , offset(0) 80 , offset(0) 90 , offset(0) 97 BlobDataItem(const String& path, long long offset, long long length, double expectedModificationTime) 100 , offset(offset) 107 BlobDataItem(PassRefPtr<BlobDataHandle> blobDataHandle, long long offset, long long length) 110 , offset(offset) 117 BlobDataItem(const KURL& fileSystemURL, long long offset, long long length, double expectedModificationTime 141 long long offset; member in struct:WebCore::BlobDataItem [all...] |
/art/runtime/base/unix_file/ |
null_file.h | 39 virtual int64_t Read(char* buf, int64_t byte_count, int64_t offset) const; 42 virtual int64_t Write(const char* buf, int64_t byte_count, int64_t offset);
|
random_access_file.h | 29 // must specify an offset). This interface does not imply any buffering policy. 43 // Reads 'byte_count' bytes into 'buf' starting at offset 'offset' in the 45 virtual int64_t Read(char* buf, int64_t byte_count, int64_t offset) const = 0; 56 // Writes 'byte_count' bytes from 'buf' starting at offset 'offset' in the 60 virtual int64_t Write(const char* buf, int64_t byte_count, int64_t offset) = 0;
|
string_file.cc | 38 int64_t StringFile::Read(char *buf, int64_t byte_count, int64_t offset) const { 42 if (offset < 0) { 46 const int64_t available_bytes = std::min(byte_count, GetLength() - offset); 50 memcpy(buf, data_.data() + offset, available_bytes); 66 int64_t StringFile::Write(const char *buf, int64_t byte_count, int64_t offset) { 70 if (offset < 0) { 81 const int64_t bytes_past_end = offset - GetLength(); 86 data_.replace(offset, byte_count, buf, byte_count);
|
/dalvik/vm/mterp/mips/ |
OP_IGET_QUICK.S | 4 # op vA, vB, offset /* CCCC */ 7 FETCH(a1, 1) # a1 <- field byte offset
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_StringWriter.java | 99 * Writes <code>count</code> characters starting at <code>offset</code> 104 * @param offset 105 * offset in buf to retrieve characters 110 * If offset or count are outside of bounds. 113 public void write(char[] buf, int offset, int count) { 115 if (0 <= offset && offset <= buf.length && 0 <= count 116 && count <= buf.length - offset) { 118 this.buf.append(buf, offset, count); 158 * <code>offset</code> from the String <code>str</code> to thi [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
first_run_bubble_controller.h | 22 offset:(NSPoint)offset
|
/external/chromium/chrome/browser/ui/views/ |
dropdown_bar_view.h | 32 void set_animation_offset(int offset) { animation_offset_ = offset; } 34 // Returns the offset used while animating. 46 // part of it. The view needs to know the pixel offset at which we are drawing
|
/external/chromium_org/base/allocator/ |
tcmalloc_unittest.cc | 19 for (int offset = 1; offset < kPageSize ; offset <<= 1) { 20 ASSERT_DEATH(TCMallocDoFreeForTest(p + offset), 29 for (int offset = kPageSize; offset < kMaxSize; offset += kPageSize) { 32 ASSERT_DEATH(TCMallocDoFreeForTest(p + offset),
|
/external/chromium_org/content/browser/renderer_host/ |
render_widget_host_view_mac_dictionary_helper.h | 32 void set_offset(const gfx::Vector2d& offset) { offset_ = offset; } 44 // The extra offset to use while positioning the dicitonary panel.
|
/external/chromium_org/net/disk_cache/flash/ |
storage.cc | 47 bool Storage::Read(void* buffer, int32 size, int32 offset) { 48 DCHECK(offset >= 0 && offset + size <= size_); 50 int rv = base::ReadPlatformFile(file_, offset, static_cast<char*>(buffer), 55 bool Storage::Write(const void* buffer, int32 size, int32 offset) { 56 DCHECK(offset >= 0 && offset + size <= size_); 58 int rv = base::WritePlatformFile(file_, offset,
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
CharacterData.idl | 26 [TreatReturnedNullStringAs=Null, RaisesException] DOMString substringData(unsigned long offset, unsigned long length); 29 [RaisesException] void insertData(unsigned long offset, DOMString data); 30 [RaisesException] void deleteData(unsigned long offset, unsigned long length); 31 [RaisesException] void replaceData(unsigned long offset, unsigned long length, DOMString data);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/ |
nouveau_mm.h | 13 uint32_t offset; member in struct:nouveau_mm_allocation 25 struct nouveau_bo **, uint32_t *offset);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/ |
nouveau_scratch.h | 37 int offset; member in struct:nouveau_scratch_state 43 struct nouveau_bo **bo, unsigned *offset);
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/ |
font_data.h | 61 // @param offset the start of the new bounds 64 virtual bool Bound(int32_t offset, int32_t length); 66 // Sets limits on the size of the FontData. This is a offset bound only so if 69 // @param offset the start of the new bounds which must be within the current 72 virtual bool Bound(int32_t offset); 76 // @param offset the start of the slice 79 virtual CALLER_ATTACH FontData* Slice(int32_t offset, int32_t length) = 0; 83 // @param offset the start of the slice 85 virtual CALLER_ATTACH FontData* Slice(int32_t offset) = 0; 97 // @param offset the offset to start the wrap fro [all...] |
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/ |
memory_output_stream.cc | 32 int32_t offset, 35 if (offset >= 0 && length > 0) { 37 buffer->begin() + offset, 38 buffer->begin() + offset + length); 46 void MemoryOutputStream::Write(byte_t* buffer, int32_t offset, int32_t length) { 48 if (offset >= 0 && length > 0) { 49 store_.insert(store_.end(), buffer + offset, buffer + offset + length);
|
output_stream.h | 38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length) = 0; 41 virtual void Write(byte_t* buffer, int32_t offset, int32_t length) = 0;
|
/external/emma/core/java12/com/vladium/jcd/cls/ |
IInterfaceCollection.java | 32 * constant pool index for offset'th direct superinterface. 34 * @param offset superinterface number [must be in [0, size()) range] 37 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range 39 int get (int offset); 61 * @return offset of the new pointer [same as {@link #size()}-1 when called 67 * Replaces superinterface pointer number 'offset' with new value 'interface_index'. 72 * @param offset offset of the superinterface pointer to replace [must be in [0, size()) range] 76 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range 78 int set (int offset, int interface_index) [all...] |
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
IDeclaredExceptionTable.java | 31 * pool index for offset'th exception type thrown by the method that contains 34 * @param offset thrown exception class number [must be in [0, size()) range] 37 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range 39 int get (int offset); 64 * @return offset of the new pointer [same as {@link #size()}-1 when called 70 * Replaces exception class pointer number 'offset' with new value 'interface_index'. 75 * @param offset thrown exception class number [must be in [0, size()) range] 79 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range 81 int set (int offset, int exception_index);
|