/external/clang/unittests/AST/ |
MatchVerifier.h | 35 testing::AssertionResult match(const std::string &Code, 38 return match(Code, AMatcher, Args, Lang_CXX); 42 testing::AssertionResult match(const std::string &Code, 46 return match(Code, AMatcher, Args, L); 50 testing::AssertionResult match(const std::string &Code, 74 /// \brief Runs a matcher over some code, and returns the result of the 78 const std::string &Code, const MatcherType &AMatcher, 109 if (!tooling::runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName))
|
/external/llvm/lib/MC/ |
MCPureStreamer.cpp | 202 SmallString<256> Code; 203 raw_svector_ostream VecOS(Code); 207 IF->getContents() = Code; 215 SmallString<256> Code; 216 raw_svector_ostream VecOS(Code); 225 DF->getContents().append(Code.begin(), Code.end());
|
/frameworks/compile/slang/BitWriter_2_9/ |
BitcodeWriter.cpp | 120 static void WriteStringRecord(unsigned Code, StringRef Str, 124 // Code: [strchar x N] 132 Stream.EmitRecord(Code, Vals, AbbrevToUse); 310 unsigned Code = 0; 314 case Type::VoidTyID: Code = bitc::TYPE_CODE_VOID; break; 315 case Type::FloatTyID: Code = bitc::TYPE_CODE_FLOAT; break; 316 case Type::DoubleTyID: Code = bitc::TYPE_CODE_DOUBLE; break; 317 case Type::X86_FP80TyID: Code = bitc::TYPE_CODE_X86_FP80; break; 318 case Type::FP128TyID: Code = bitc::TYPE_CODE_FP128; break; 319 case Type::PPC_FP128TyID: Code = bitc::TYPE_CODE_PPC_FP128; break [all...] |
/art/runtime/ |
dex_instruction.h | 82 // TODO: the code layout below is deliberate to avoid this enum being picked up by 84 enum Code 157 // Returns the size (in 2 byte code units) of this instruction. 168 static const Instruction* At(const uint16_t* code) { 169 DCHECK(code != NULL); 170 return reinterpret_cast<const Instruction*>(code); 213 static const char* Name(Code opcode) { 283 Code Opcode() const { 284 return static_cast<Code>(Fetch16(0) & 0xFF); 287 void SetOpcode(Code opcode) [all...] |
/external/v8/src/ |
log.h | 6 // * Redistributions of source code must retain the above copyright 45 // Minimal logging (no API, code, or GC sample events), default is off. 49 // --log-api, --log-code, --log-gc, and --log-regexp. 54 // --log-code 55 // Log code (create, move, and delete) events to the logfile, default is off. 56 // --log-code implies --log. 71 // tick profiler requires code events, so --prof implies --log-code. 90 V(CODE_CREATION_EVENT, "code-creation") \ 91 V(CODE_MOVE_EVENT, "code-move") [all...] |
list.h | 6 // * Redistributions of source code must retain the above copyright 40 // the code. This implementation is based on code by Robert Griesemer 167 class Code; 170 typedef List<Code*> CodeList; 172 typedef List<Handle<Code> > CodeHandleList;
|
frames.cc | 6 // * Redistributions of source code must retain the above copyright 135 // frame code that computes the caller state to access the top 385 Code* StackFrame::GetSafepointData(Isolate* isolate, 392 entry->safepoint_entry = entry->code->GetSafepointEntry(inner_pointer); 396 entry->code->GetSafepointEntry(inner_pointer))); 399 // Fill in the results and return the code. 400 Code* code = entry->code; local 402 *stack_slots = code->stack_slots() 424 Object* code = holder; local 620 Code* code = StackFrame::GetSafepointData( local 763 Code* code = Code::cast( local 889 Code* code = function->shared()->code(); local 921 Code* code = opt_function->code(); local 1017 Object* code = Memory::Object_at(fp() + offset); local 1039 Code* code = NULL; local 1295 Code* code = reinterpret_cast<Code*>(object); local [all...] |
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...] |
incremental-marking.h | 6 // * Redistributions of source code must retain the above copyright 140 Code* value)); 147 void RecordWriteOfCodeEntrySlow(JSFunction* host, Object** slot, Code* value); 148 void RecordCodeTargetPatch(Code* host, Address pc, HeapObject* value); 204 void ActivateGeneratedStub(Code* stub);
|
/external/v8/src/ia32/ |
stub-cache-ia32.cc | 6 // * Redistributions of source code must retain the above copyright 44 Code::Flags flags, 57 // Multiply by 3 because there are 3 fields per entry (name, code, map). 61 // Get the code entry from the cache. 74 __ mov(offset, FieldOperand(extra, Code::kFlagsOffset)); 75 __ and_(offset, ~Code::kFlagsNotUsedInLookup); 87 // Jump to the first instruction in the code stub. 88 __ add(extra, Immediate(Code::kHeaderSize - kHeapObjectTag)); 108 // Get the code entry from the cache. 112 __ mov(offset, FieldOperand(offset, Code::kFlagsOffset)) 724 Handle<Code> code = (kind == Code::LOAD_IC) local 732 Handle<Code> code = local 1305 Handle<Code> code = local 1865 Register code = ebx; local 2209 Handle<Code> code = CompileCustomCall(object, holder, local 2398 Handle<Code> code = CompileCustomCall(object, holder, cell, function, name); local 3250 Handle<Code> code = isolate()->builtins()->JSConstructStubGeneric(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/ |
README | 22 optimizations on JavaScript code. The purpose of this README is to 38 http://code.google.com/p/closure-compiler/downloads/list 45 http://code.google.com/p/closure-compiler/source/checkout 96 writing output to a file, checking your code, and running 102 http://code.google.com/closure/compiler/docs/gettingstarted_app.html 124 http://code.google.com/p/closure-library/ 135 Code under: 148 Local Modifications: The packages have been renamespaced. All code not 154 Code in: 169 Code in [all...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/ |
CustomInlineMethodResolver.java | 9 * * Redistributions of source code must retain the above copyright 32 package org.jf.dexlib.Code.Analysis; 34 import org.jf.dexlib.Code.OdexedInvokeInline; 35 import org.jf.dexlib.Code.OdexedInvokeVirtual;
|
DexFileClassMap.java | 9 * 1. Redistributions of source code must retain the above copyright 29 package org.jf.dexlib.Code.Analysis;
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/ |
ArrayDataPseudoInstruction.java | 9 * 1. Redistributions of source code must retain the above copyright 29 package org.jf.dexlib.Code.Format; 31 import org.jf.dexlib.Code.Instruction; 32 import org.jf.dexlib.Code.Opcode;
|
SparseSwitchDataPseudoInstruction.java | 9 * 1. Redistributions of source code must retain the above copyright 29 package org.jf.dexlib.Code.Format; 31 import org.jf.dexlib.Code.Instruction; 32 import org.jf.dexlib.Code.MultiOffsetInstruction; 33 import org.jf.dexlib.Code.Opcode;
|
/external/v8/src/x64/ |
stub-cache-x64.cc | 6 // * Redistributions of source code must retain the above copyright 44 Code::Flags flags, 63 // Multiply by 3 because there are 3 fields per entry (name, code, map). 82 // Get the code entry from the cache. 88 __ movl(offset, FieldOperand(kScratchRegister, Code::kFlagsOffset)); 89 __ and_(offset, Immediate(~Code::kFlagsNotUsedInLookup)); 101 // Jump to the first instruction in the code stub. 102 __ addq(kScratchRegister, Immediate(Code::kHeaderSize - kHeapObjectTag)); 161 Code::Flags flags, 173 // Make sure that code is valid. The multiplying code relies on th 708 Handle<Code> code = (kind == Code::LOAD_IC) local 716 Handle<Code> code = local 1273 Handle<Code> code = local 1813 Register code = rbx; local 2035 Handle<Code> code = CompileCustomCall(object, holder, local 2229 Handle<Code> code = CompileCustomCall(object, holder, cell, function, name); local 3067 Handle<Code> code = isolate()->builtins()->JSConstructStubGeneric(); local 3477 Code* code = masm->isolate()->builtins()->builtin( local [all...] |
/external/clang/lib/Serialization/ |
ASTWriterDecl.cpp | 42 serialization::DeclCode Code; 211 Code = serialization::DECL_TYPEDEF; 216 Code = serialization::DECL_TYPEALIAS; 271 Code = serialization::DECL_ENUM; 295 Code = serialization::DECL_RECORD; 310 Code = serialization::DECL_ENUM_CONSTANT; 417 Code = serialization::DECL_FUNCTION; 466 Code = serialization::DECL_OBJC_METHOD; 473 // Abstract class (no need to define a stable serialization::DECL code). 520 Code = serialization::DECL_OBJC_INTERFACE [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
r500_fragprog_emit.c | 49 struct r500_fragment_program_code *code = &c->code->code.r500 78 struct r500_fragment_program_code * Code; 194 static void use_temporary(struct r500_fragment_program_code* code, unsigned int index) 196 if (index > code->max_temp_idx) 197 code->max_temp_idx = index; 200 static unsigned int use_source(struct r500_fragment_program_code* code, struct rc_pair_instruction_source src) 211 use_temporary(code, src.Index); 227 if ((code->inst[ip].inst0 & 0x3) != R500_INST_TYPE_TEX) 627 struct r500_fragment_program_code *code = &compiler->code->code.r500; local [all...] |
/external/chromium_org/v8/src/ |
incremental-marking.h | 6 // * Redistributions of source code must retain the above copyright 149 Code* value)); 156 void RecordWriteOfCodeEntrySlow(JSFunction* host, Object** slot, Code* value); 157 void RecordCodeTargetPatch(Code* host, Address pc, HeapObject* value); 198 void ActivateGeneratedStub(Code* stub);
|
runtime-profiler.h | 6 // * Redistributions of source code must retain the above copyright 75 bool CodeSizeOKForOSR(Code* shared_code);
|
runtime-profiler.cc | 6 // * Redistributions of source code must retain the above copyright 34 #include "code-stubs.h" 83 // Maximum size in bytes of generate code for a function to allow OSR. 90 // Maximum size in bytes of generated code for a function to be optimized 109 static void GetICCounts(Code* shared_code, 136 GetICCounts(function->shared()->code(), &typeinfo, &total, &percentage); 163 // If the code is not optimizable, don't try OSR. 164 if (!shared->code()->optimizable()) return; 167 // allocated arguments object. The optimized code would bypass it for 171 // We're using on-stack replacement: patch the unoptimized code so tha [all...] |
/external/llvm/lib/ExecutionEngine/OProfileJIT/ |
OProfileWrapper.cpp | 210 void const* Code, 216 return WriteNativeCodeFunc(Agent, Name, Addr, Code, Size); 222 void const* Code, 229 return WriteDebugLineInfoFunc(Agent, Code, NumEntries, Info);
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
r500_fragprog_emit.c | 49 struct r500_fragment_program_code *code = &c->code->code.r500 78 struct r500_fragment_program_code * Code; 194 static void use_temporary(struct r500_fragment_program_code* code, unsigned int index) 196 if (index > code->max_temp_idx) 197 code->max_temp_idx = index; 200 static unsigned int use_source(struct r500_fragment_program_code* code, struct rc_pair_instruction_source src) 211 use_temporary(code, src.Index); 227 if ((code->inst[ip].inst0 & 0x3) != R500_INST_TYPE_TEX) 627 struct r500_fragment_program_code *code = &compiler->code->code.r500; local [all...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/ |
VerificationErrorType.java | 9 * 1. Redistributions of source code must retain the above copyright 29 package org.jf.dexlib.Code;
|
/external/clang/tools/clang-format/ |
ClangFormat.cpp | 12 /// (fragments of) C++ code. 171 const MemoryBuffer *Code, 207 if (Offsets[i] >= Code->getBufferSize()) { 216 if (Offsets[i] + Lengths[i] > Code->getBufferSize()) { 238 OwningPtr<MemoryBuffer> Code; 239 if (error_code ec = MemoryBuffer::getFileOrSTDIN(FileName, Code)) { 243 if (Code->getBufferSize() == 0) 245 FileID ID = createInMemoryFile(FileName, Code.get(), Sources, Files); 247 if (fillRanges(Sources, ID, Code.get(), Ranges)) 310 "A tool to format C/C++/Obj-C code.\n\n [all...] |