/external/chromium_org/courgette/ |
encoded_program.h | 36 CheckBool DefineRel32Label(int index, RVA address) WARN_UNUSED_RESULT; 37 CheckBool DefineAbs32Label(int index, RVA address) WARN_UNUSED_RESULT; 43 CheckBool AddOrigin(RVA rva) WARN_UNUSED_RESULT; 44 CheckBool AddCopy(uint32 count, const void* bytes) WARN_UNUSED_RESULT; 45 CheckBool AddRel32(int label_index) WARN_UNUSED_RESULT; 46 CheckBool AddRel32ARM(uint16 op, int label_index) WARN_UNUSED_RESULT; 47 CheckBool AddAbs32(int label_index) WARN_UNUSED_RESULT; 48 CheckBool AddPeMakeRelocs(ExecutableType kind) WARN_UNUSED_RESULT; 49 CheckBool AddElfMakeRelocs() WARN_UNUSED_RESULT; 50 CheckBool AddElfARMMakeRelocs() WARN_UNUSED_RESULT [all...] |
assembly_program.h | 75 CheckBool EmitPeRelocsInstruction() WARN_UNUSED_RESULT; 78 CheckBool EmitElfRelocationInstruction() WARN_UNUSED_RESULT; 81 CheckBool EmitElfARMRelocationInstruction() WARN_UNUSED_RESULT; 84 CheckBool EmitOriginInstruction(RVA rva) WARN_UNUSED_RESULT; 87 CheckBool EmitByteInstruction(uint8 byte) WARN_UNUSED_RESULT; 90 CheckBool EmitBytesInstruction(const uint8* value, uint32 len) 94 CheckBool EmitRel32(Label* label) WARN_UNUSED_RESULT; 98 CheckBool EmitRel32ARM(uint16 op, Label* label, const uint8* arm_op, 102 CheckBool EmitAbs32(Label* label) WARN_UNUSED_RESULT; 130 CheckBool TrimLabels() [all...] |
disassembler_elf_32_x86.h | 24 virtual CheckBool ComputeRelativeTarget(const uint8* op_pointer) OVERRIDE { 29 virtual CheckBool EmitInstruction(AssemblyProgram* program, 44 virtual CheckBool RelToRVA(Elf32_Rel rel, RVA* result) 47 virtual CheckBool ParseRelocationSection( 51 virtual CheckBool ParseRel32RelocsFromSection(
|
disassembler_elf_32_arm.h | 35 virtual CheckBool ComputeRelativeTarget(const uint8* op_pointer); 37 virtual CheckBool EmitInstruction(AssemblyProgram* program, 55 static CheckBool Compress(ARM_RVA type, uint32 arm_op, RVA rva, 58 static CheckBool Decompress(ARM_RVA type, uint16 c_op, uint32 addr, 63 virtual CheckBool RelToRVA(Elf32_Rel rel, RVA* result) 66 virtual CheckBool ParseRelocationSection( 70 virtual CheckBool ParseRel32RelocsFromSection(
|
disassembler_elf_32.h | 59 virtual CheckBool ComputeRelativeTarget(const uint8* op_pointer) = 0; 62 virtual CheckBool EmitInstruction(AssemblyProgram* program, 153 CheckBool IsValidRVA(RVA rva) const WARN_UNUSED_RESULT; 156 virtual CheckBool RelToRVA(Elf32_Rel rel, RVA* result) 160 CheckBool RVAToFileOffset(RVA rva, size_t* result) const WARN_UNUSED_RESULT; 164 CheckBool RVAsToOffsets(std::vector<RVA>* rvas /*in*/, 167 CheckBool RVAsToOffsets(ScopedVector<TypedRVA>* rvas /*in and out*/); 171 CheckBool ParseFile(AssemblyProgram* target) WARN_UNUSED_RESULT; 172 virtual CheckBool ParseRelocationSection( 175 CheckBool ParseProgbitsSection [all...] |
streams.h | 124 CheckBool Write(const void* data, size_t byte_count) WARN_UNUSED_RESULT; 127 CheckBool WriteVarint32(uint32 value) WARN_UNUSED_RESULT; 130 CheckBool WriteVarint32Signed(int32 value) WARN_UNUSED_RESULT; 134 CheckBool WriteSizeVarint32(size_t value) WARN_UNUSED_RESULT; 138 CheckBool Append(SinkStream* other) WARN_UNUSED_RESULT; 152 CheckBool Reserve(size_t length) WARN_UNUSED_RESULT { 219 CheckBool CopyTo(SinkStream* combined_stream) WARN_UNUSED_RESULT; 224 CheckBool WriteSet(SinkStreamSet* set) WARN_UNUSED_RESULT; 227 CheckBool CopyHeaderTo(SinkStream* stream) WARN_UNUSED_RESULT;
|
encoded_program.cc | 45 CheckBool WriteVector(const V& items, SinkStream* buffer) { 77 CheckBool WriteU32Delta(const V& set, SinkStream* buffer) { 91 static CheckBool ReadU32Delta(V* set, SourceStream* buffer) { 122 CheckBool WriteVectorU8(const V& items, SinkStream* buffer) { 149 CheckBool EncodedProgram::DefineRel32Label(int index, RVA value) { 153 CheckBool EncodedProgram::DefineAbs32Label(int index, RVA value) { 159 CheckBool EncodedProgram::DefineLabelCommon(RvaVector* rvas, 195 CheckBool EncodedProgram::AddOrigin(RVA origin) { 199 CheckBool EncodedProgram::AddCopy(uint32 count, const void* bytes) { 238 CheckBool EncodedProgram::AddAbs32(int label_index) [all...] |
disassembler_elf_32_x86.cc | 25 CheckBool DisassemblerElf32X86::RelToRVA(Elf32_Rel rel, RVA* result) const { 63 CheckBool DisassemblerElf32X86::ParseRelocationSection( 117 CheckBool DisassemblerElf32X86::ParseRel32RelocsFromSection(
|
disassembler_win32_x64.h | 61 CheckBool ParseFile(AssemblyProgram* target) WARN_UNUSED_RESULT; 66 CheckBool ParseNonSectionFileRegion(uint32 start_file_offset, 68 CheckBool ParseFileRegion(const Section* section,
|
disassembler_win32_x86.h | 61 CheckBool ParseFile(AssemblyProgram* target) WARN_UNUSED_RESULT; 66 CheckBool ParseNonSectionFileRegion(uint32 start_file_offset, 68 CheckBool ParseFileRegion(const Section* section,
|
streams.cc | 184 CheckBool SinkStream::Write(const void* data, size_t byte_count) { 188 CheckBool SinkStream::WriteVarint32(uint32 value) { 194 CheckBool SinkStream::WriteVarint32Signed(int32 value) { 207 CheckBool SinkStream::WriteSizeVarint32(size_t value) { 214 CheckBool SinkStream::Append(SinkStream* other) { 332 CheckBool SinkStreamSet::CopyHeaderTo(SinkStream* header) { 345 CheckBool SinkStreamSet::CopyTo(SinkStream *combined_stream) { 366 CheckBool SinkStreamSet::WriteSet(SinkStreamSet* set) {
|
disassembler_elf_32.cc | 142 CheckBool DisassemblerElf32::IsValidRVA(RVA rva) const { 162 CheckBool DisassemblerElf32::RVAToFileOffset(Elf32_Addr addr, 206 CheckBool DisassemblerElf32::RVAsToOffsets(std::vector<RVA>* rvas, 225 CheckBool DisassemblerElf32::RVAsToOffsets(ScopedVector<TypedRVA>* rvas) { 241 CheckBool DisassemblerElf32::ParseFile(AssemblyProgram* program) { 321 CheckBool DisassemblerElf32::ParseProgbitsSection( 404 CheckBool DisassemblerElf32::ParseSimpleRegion( 423 CheckBool DisassemblerElf32::ParseAbs32Relocs() { 455 CheckBool DisassemblerElf32::CheckSection(RVA rva) { 482 CheckBool DisassemblerElf32::ParseRel32RelocsFromSections() [all...] |
disassembler_elf_32_arm.cc | 20 CheckBool DisassemblerElf32ARM::Compress(ARM_RVA type, uint32 arm_op, RVA rva, 134 CheckBool DisassemblerElf32ARM::Decompress(ARM_RVA type, uint16 c_op, 222 CheckBool DisassemblerElf32ARM::TypedRVAARM::ComputeRelativeTarget( 230 CheckBool ret = Compress(type_, Read16LittleEndian(op_pointer), rva(), 237 CheckBool ret = Compress(type_, Read32LittleEndian(op_pointer), rva(), 249 CheckBool ret = Compress(type_, pval, rva(), &c_op_, &relative_target); 258 CheckBool DisassemblerElf32ARM::TypedRVAARM::EmitInstruction( 272 CheckBool DisassemblerElf32ARM::RelToRVA(Elf32_Rel rel, RVA* result) const { 298 CheckBool DisassemblerElf32ARM::ParseRelocationSection( 367 CheckBool DisassemblerElf32ARM::ParseRel32RelocsFromSection [all...] |
assembly_program.cc | 161 CheckBool AssemblyProgram::EmitPeRelocsInstruction() { 165 CheckBool AssemblyProgram::EmitElfRelocationInstruction() { 169 CheckBool AssemblyProgram::EmitElfARMRelocationInstruction() { 173 CheckBool AssemblyProgram::EmitOriginInstruction(RVA rva) { 177 CheckBool AssemblyProgram::EmitByteInstruction(uint8 byte) { 181 CheckBool AssemblyProgram::EmitBytesInstruction(const uint8* values, 186 CheckBool AssemblyProgram::EmitRel32(Label* label) { 190 CheckBool AssemblyProgram::EmitRel32ARM(uint16 op, Label* label, 196 CheckBool AssemblyProgram::EmitAbs32(Label* label) { 240 CheckBool AssemblyProgram::Emit(Instruction* instruction) [all...] |
memory_allocator.h | 51 typedef CheckReturnValue<bool> CheckBool; 53 typedef bool CheckBool; 350 CheckBool reserve(size_t size) WARN_UNUSED_RESULT { 376 CheckBool append(const T* data, size_t size) WARN_UNUSED_RESULT { 406 CheckBool resize(size_t size, const T& init_value) WARN_UNUSED_RESULT { 422 CheckBool push_back(const T& item) WARN_UNUSED_RESULT {
|
disassembler_win32_x64.cc | 334 CheckBool DisassemblerWin32X64::ParseFile(AssemblyProgram* program) { 510 CheckBool DisassemblerWin32X64::ParseNonSectionFileRegion( 531 CheckBool DisassemblerWin32X64::ParseFileRegion(
|
disassembler_win32_x86.cc | 334 CheckBool DisassemblerWin32X86::ParseFile(AssemblyProgram* program) { 510 CheckBool DisassemblerWin32X86::ParseNonSectionFileRegion( 531 CheckBool DisassemblerWin32X86::ParseFileRegion(
|
/external/chromium_org/chrome/browser/ui/webui/ |
sync_setup_handler_unittest.cc | 103 void CheckBool(const DictionaryValue* dictionary, 119 void CheckBool(const DictionaryValue* dictionary, 122 return CheckBool(dictionary, key, expected_value, false); 131 CheckBool(dictionary, "syncAllDataTypes", config == SYNC_ALL_DATA); 132 CheckBool(dictionary, "syncNothing", config == SYNC_NOTHING); 133 CheckBool(dictionary, "appsSynced", types.Has(syncer::APPS)); 134 CheckBool(dictionary, "autofillSynced", types.Has(syncer::AUTOFILL)); 135 CheckBool(dictionary, "bookmarksSynced", types.Has(syncer::BOOKMARKS)); 136 CheckBool(dictionary, "extensionsSynced", types.Has(syncer::EXTENSIONS)); 137 CheckBool(dictionary, "passwordsSynced", types.Has(syncer::PASSWORDS)) [all...] |
/external/chromium_org/courgette/third_party/ |
bsdiff_create.cc | 194 static CheckBool WriteHeader(SinkStream* stream, MBSPatchHeader* header) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
types.py | 182 def CheckBool(self):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
types.py | 182 def CheckBool(self):
|