Searched defs:Add (Results 1 - 25 of 158) sorted by relevance

1234567

/external/llvm/lib/CodeGen/
H A DMachinePassRegistry.cpp34 /// 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 Ddescriptor_database.py43 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 Ddescriptor_pool.py46 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 Dtsan_ignoreset.cc23 void IgnoreSet::Add(u32 stack_id) { function in class:__tsan::IgnoreSet
H A Dtsan_mutexset.cc25 void MutexSet::Add(u64 id, bool write, u64 epoch) { function in class:__tsan::MutexSet
47 // Add new mutex descriptor.
H A Dtsan_mutexset.h35 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 DModuleMaker.cpp40 // 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 Ddescriptor_database.py51 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 Ddescriptor_pool.py46 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 Dtrace_impl_no_op.cc50 void Trace::Add(const TraceLevel /*level*/, const TraceModule /*module*/, function in class:webrtc::Trace
/external/clang/include/clang/Sema/
H A DCXXFieldCollector.h55 /// Add - Called by Sema::ActOnCXXMemberDeclarator.
56 void Add(FieldDecl *D) { function in class:clang::CXXFieldCollector
/external/libvpx/libvpx/test/
H A Dmd5_helper.h24 void Add(const vpx_image_t *img) { function in class:libvpx_test::MD5
/external/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp70 // 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 DInflater.cs54 public override void Add(byte[] data, int offset, int count) method in class:DotZLib.Inflater
H A DDeflater.cs54 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 DRewriteRuleElementStream.cs98 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/llvm/lib/Target/XCore/
H A DXCoreMCInstLower.cpp77 const MCBinaryExpr *Add = MCBinaryExpr::CreateAdd(MCSym, OffsetExpr, *Ctx); local
78 return MCOperand::CreateExpr(Add);
/external/skia/src/gpu/gl/
H A DGrGLSL_impl.h40 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 DRewriteRuleElementStream.cs94 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 DAntlr.Runtime.Collections.pas108 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 DResults.cpp228 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 DInstCombineWorklist.h46 /// 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 DMCExternalSymbolizer.cpp86 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 DAArch64ExternalSymbolizer.cpp164 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 Dfiltered_re2.cc24 RE2::ErrorCode FilteredRE2::Add(const StringPiece& pattern, function in class:re2::FilteredRE2
51 prefilter_tree_->Add(prefilter);

Completed in 2489 milliseconds

1234567