/external/llvm/lib/CodeGen/ |
H A D | MachinePassRegistry.cpp | 34 /// Add - Adds a function pass to the registration list. 36 void MachinePassRegistry::Add(MachinePassRegistryNode *Node) { function in class:MachinePassRegistry
|
/external/nanopb-c/generator/google/protobuf/ |
H A D | descriptor_database.py | 43 def Add(self, file_desc_proto): member in class:DescriptorDatabase 64 using the Add method or else an error will be raised. 88 this database using the Add method or else an error will be raised.
|
H A D | descriptor_pool.py | 46 pool.Add(file_descriptor_proto) 70 specified in a call to FindFileByName() and not require the call to Add() 83 def Add(self, file_desc_proto): member in class:DescriptorPool 90 self._internal_db.Add(file_desc_proto) 225 self.Add(file_proto)
|
/external/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_ignoreset.cc | 23 void IgnoreSet::Add(u32 stack_id) { function in class:__tsan::IgnoreSet
|
H A D | tsan_mutexset.cc | 25 void MutexSet::Add(u64 id, bool write, u64 epoch) { function in class:__tsan::MutexSet 47 // Add new mutex descriptor.
|
H A D | tsan_mutexset.h | 35 void Add(u64 id, bool write, u64 epoch); 60 void MutexSet::Add(u64 id, bool write, u64 epoch) {} function in class:__tsan::MutexSet
|
/external/llvm/examples/ModuleMaker/ |
H A D | ModuleMaker.cpp | 40 // Add a basic block to the function... again, it automatically inserts 49 Instruction *Add = BinaryOperator::Create(Instruction::Add, Two, Three, local 53 BB->getInstList().push_back(Add); 56 BB->getInstList().push_back(ReturnInst::Create(Context, Add));
|
/external/protobuf/python/google/protobuf/ |
H A D | descriptor_database.py | 51 def Add(self, file_desc_proto): member in class:DescriptorDatabase 81 using the Add method or else an error will be raised. 105 this database using the Add method or else an error will be raised.
|
H A D | descriptor_pool.py | 46 pool.Add(file_descriptor_proto) 91 specified in a call to FindFileByName() and not require the call to Add() 104 def Add(self, file_desc_proto): member in class:DescriptorPool 111 self._internal_db.Add(file_desc_proto) 319 self.Add(file_proto)
|
/external/webrtc/src/system_wrappers/source/ |
H A D | trace_impl_no_op.cc | 50 void Trace::Add(const TraceLevel /*level*/, const TraceModule /*module*/, function in class:webrtc::Trace
|
/external/clang/include/clang/Sema/ |
H A D | CXXFieldCollector.h | 55 /// Add - Called by Sema::ActOnCXXMemberDeclarator. 56 void Add(FieldDecl *D) { function in class:clang::CXXFieldCollector
|
/external/llvm/examples/HowToUseJIT/ |
H A D | HowToUseJIT.cpp | 70 // Add a basic block to the function. As before, it automatically inserts 87 Value *Add = builder.CreateAdd(One, ArgX); local 90 builder.CreateRet(Add); 101 // Add a basic block to the FooF function.
|
/external/zlib/src/contrib/dotzlib/DotZLib/ |
H A D | Inflater.cs | 54 public override void Add(byte[] data, int offset, int count)
method in class:DotZLib.Inflater
|
H A D | Deflater.cs | 54 public override void Add(byte[] data, int offset, int count)
method in class:DotZLib.Deflater
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
H A D | RewriteRuleElementStream.cs | 98 Add( oneElement ); 122 public virtual void Add( object el ) method in class:Antlr.Runtime.Tree.RewriteRuleElementStream 131 elements.Add( el ); 141 elements.Add( singleElement ); 143 elements.Add( el );
|
/external/libvpx/libvpx/test/ |
H A D | md5_helper.h | 24 void Add(const vpx_image_t *img) { function in class:libvpx_test::MD5 45 void Add(const uint8_t *data, size_t size) { function in class:libvpx_test::MD5
|
/external/llvm/lib/Target/XCore/ |
H A D | XCoreMCInstLower.cpp | 77 const MCBinaryExpr *Add = MCBinaryExpr::CreateAdd(MCSym, OffsetExpr, *Ctx); local 78 return MCOperand::CreateExpr(Add);
|
/external/skia/src/gpu/gl/ |
H A D | GrGLSL_impl.h | 40 inline Self GrGLSLExpr<Self>::Add(T0 in0, T1 in1) { function in class:GrGLSLExpr 104 return GrGLSLExpr1::Add(in0, in1); 144 return GrGLSLExpr4::Add(in0, in1); 156 return GrGLSLExpr4::Add(in0, in1); 168 return GrGLSLExpr4::Add(in0, in1);
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
H A D | RewriteRuleElementStream.cs | 94 Add(oneElement); 116 public virtual void Add(object el) { method in class:Antlr.Runtime.Tree.RewriteRuleElementStream 122 elements.Add(el); 131 elements.Add(singleElement); 133 elements.Add(el);
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
H A D | Antlr.Runtime.Collections.pas | 108 procedure Add(const Key: TKey; const Value: TValue); procedure 168 procedure THashList<TKey, TValue>.Add(const Key: TKey; const Value: TValue); 170 FDictionary.Add(Key, Value); 171 FInsertionOrderList.Add(Key); 181 Add(Key, Value); 251 FInsertionOrderList.Add(Key); 330 Add(Item);
|
/external/lldb/tools/lldb-perf/lib/ |
H A D | Results.cpp | 228 Results::Dictionary::Add (const char *name, const char *description, const ResultSP &result_sp) function in class:Results::Dictionary 235 value_dict_ap->Add("value", NULL, result_sp);
|
/external/llvm/include/llvm/Transforms/InstCombine/ |
H A D | InstCombineWorklist.h | 46 /// Add - Add the specified instruction to the worklist if it isn't already 48 void Add(Instruction *I) { function in class:llvm::InstCombineWorklist 57 Add(I); 60 /// AddInitialGroup - Add the specified batch of stuff in reverse order. 98 Add(cast<Instruction>(U));
|
/external/llvm/lib/MC/MCDisassembler/ |
H A D | MCExternalSymbolizer.cpp | 86 const MCExpr *Add = nullptr; local 91 Add = MCSymbolRefExpr::Create(Sym, Ctx); 93 Add = MCConstantExpr::Create((int)SymbolicOp.AddSymbol.Value, Ctx); 115 if (Add) 116 LHS = MCBinaryExpr::CreateSub(Add, Sub, Ctx); 123 } else if (Add) { 125 Expr = MCBinaryExpr::CreateAdd(Add, Off, Ctx); 127 Expr = Add;
|
/external/llvm/lib/Target/AArch64/Disassembler/ |
H A D | AArch64ExternalSymbolizer.cpp | 164 const MCExpr *Add = nullptr; local 171 Add = MCSymbolRefExpr::Create(Sym, Variant, Ctx); 173 Add = MCSymbolRefExpr::Create(Sym, Ctx); 175 Add = MCConstantExpr::Create(SymbolicOp.AddSymbol.Value, Ctx); 197 if (Add) 198 LHS = MCBinaryExpr::CreateSub(Add, Sub, Ctx); 205 } else if (Add) { 207 Expr = MCBinaryExpr::CreateAdd(Add, Off, Ctx); 209 Expr = Add;
|
/external/regex-re2/re2/ |
H A D | filtered_re2.cc | 24 RE2::ErrorCode FilteredRE2::Add(const StringPiece& pattern, function in class:re2::FilteredRE2 51 prefilter_tree_->Add(prefilter);
|