HomeSort by relevance Sort by last modified time
    Searched defs:Add (Results 376 - 400 of 624) sorted by null

<<11121314151617181920>>

  /build/kati/
find.cc 299 // to add a regen dependency on the directory, we just need to ensure
339 void Add(const string& name, DirentNode* c) {
971 n->Add(ent->d_name, c);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
ast.py 53 class Add(Node):
66 return "Add((%s, %s))" % (repr(self.left), repr(self.right))
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 52 // ExplodedNode is not constified all over the engine because we need to add
164 ID.Add(Loc);
175 /// in tandem add this node as a successor of the other node.
310 /// addRoot - Add an untyped node to the set of roots.
316 /// addEndOfPath - Add an untyped node to the set of EOP nodes.
419 inline void Add(ExplodedNode *N) {
  /external/google-breakpad/src/common/mac/
macho_reader_unittest.cc 612 // Add a section entry with the given characteristics to this segment
    [all...]
  /external/libmojo/third_party/jinja2/
nodes.py 33 '+': operator.add,
743 class Add(BinExpr):
744 """Add the left to the right node."""
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 89 Add,
169 Op = BinOpToken::Add;
190 case BinOpToken::Add:
    [all...]
  /external/opencv/cv/src/
cvinpaint.cpp 117 bool Add(const CvMat* f) {
130 CvHeapElem *tmp=empty,*add=empty; local
134 add->prev->next = add->next;
135 add->next->prev = add->prev;
136 empty = add->next;
137 add->prev = tmp->prev;
138 add->next = tmp;
139 add->prev->next = add
    [all...]
  /external/pdfium/fpdfsdk/pwl/
cpwl_list_impl.cpp 60 void CPLST_Select::Add(int32_t nItemIndex) {
64 void CPLST_Select::Add(int32_t nBeginIndex, int32_t nEndIndex) {
69 Add(i);
176 m_aSelItems.Add(nHitIndex);
184 m_aSelItems.Add(m_nFootIndex, nHitIndex);
188 m_aSelItems.Add(nHitIndex);
211 m_aSelItems.Add(m_nFootIndex, nHitIndex);
218 m_aSelItems.Add(m_nFootIndex, nHitIndex);
237 m_aSelItems.Add(m_nFootIndex, nItemIndex);
241 m_aSelItems.Add(nItemIndex)
    [all...]
  /external/protobuf/src/google/protobuf/
extension_set.h 185 // Add all fields which are currently present to the given vector. This
669 // static inline void Add(int number, ConstType value, ExtensionSet* set);
670 // static inline MutableType Add(int number, ExtensionSet* set);
    [all...]
  /external/python/cpython2/Lib/compiler/
ast.py 53 class Add(Node):
66 return "Add((%s, %s))" % (repr(self.left), repr(self.right))
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCExpr.h 285 Add, ///< Addition.
324 return Create(Add, LHS, RHS, Ctx);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JIT.cpp 234 void Add(JIT *jit) {
282 AllJits->Add(this);
284 // Add target data
287 PM.add(new TargetData(*TM.getTargetData()));
329 /// addModule - Add a new Module to the JIT. If we previously removed the last
340 PM.add(new TargetData(*TM.getTargetData()));
371 PM.add(new TargetData(*TM.getTargetData()));
678 assert(Addr && "Code generation didn't add function to GlobalAddress table!");
768 assert(Addr && "Code generation didn't add function to GlobalAddress table!");
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
NaClBitCodes.h 274 void Add(const NaClBitCodeAbbrevOp &OpInfo) {
324 AbbrevCopy->Add(NaClBitCodeAbbrevOp(getOperandInfo(I)));
362 // since we can't add 1 to it.
  /external/tensorflow/tensorflow/core/framework/
shape_inference.cc 910 Status InferenceContext::Add(DimensionHandle first, DimensionOrConstant second,
    [all...]
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_code.cc 185 void Add(const CodeNode* node, const std::vector<uint64>& location_ids) {
201 sample_pb->mutable_location_id()->Add(id);
203 pprof::Label* label_pb = sample_pb->mutable_label()->Add();
207 sample_pb->mutable_value()->Add(1);
210 sample_pb->mutable_value()->Add(gn->exec_micros(node->node->step()));
212 sample_pb->mutable_value()->Add(
215 sample_pb->mutable_value()->Add(
218 sample_pb->mutable_value()->Add(
221 sample_pb->mutable_value()->Add(gn->peak_bytes(node->node->step()));
223 sample_pb->mutable_value()->Add(
    [all...]
  /external/v8/src/crankshaft/
hydrogen-gvn.cc 30 void Add(HInstruction* instr, Zone* zone) {
31 present_depends_on_.Add(side_effects_tracker_->ComputeDependsOn(instr));
174 present_depends_on_.Add(depends_on);
194 present_depends_on_.Add(depends_on); // Keep it.
545 side_effects.Add(side_effects_tracker_.ComputeChanges(instr));
547 block_side_effects_[id].Add(side_effects);
551 loop_side_effects_[id].Add(side_effects);
560 loop_side_effects_[parent_block->block_id()].Add(side_effects);
659 visited_on_paths_.Add(block->block_id());
660 side_effects.Add(block_side_effects_[block->block_id()])
    [all...]
  /external/v8/src/regexp/
regexp-parser.h 30 // be read using last() or removed using RemoveLast until a new Add or until
32 void Add(T* value, Zone* zone) {
37 list_->Add(last_, zone);
87 list_->Add(last_, zone);
  /external/v8/src/snapshot/
serializer-common.h 40 void Add(HeapObject* object) {
  /external/v8/tools/
ll_prof.py 238 def Add(self, code):
264 def Add(self, code, max_pages=-1):
279 page.Add(code)
401 self.code_map.Add(code)
422 self.code_map.Add(code)
737 code_sections.add(after_section)
739 reloc_sections.add(after_section)
764 code_map.Add(Code(name, start_address, start_address + size,
784 self.names.add(name)
801 code_map.Add(code, 16
    [all...]
  /frameworks/ml/nn/tools/test_generator/
test_generator.py 107 Uses.all_uses.add(self)
256 Input.__inputs.add(self)
293 unique = [x for x in Output.__outputs if x not in saw and (saw.add(x) or True)]
301 IgnoredOutput.__ignored.add(self)
434 def Add(self, i1: Value, i2 = None) -> Operation:
443 op = Operation("ADD", ins, [])
460 op = Operation("ADD", ins, outs)
694 start.add(o)
742 # Phase 1: add operands
750 # Phase 3: add inputs and output
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/
remote_method_tests.cpp 156 PDX_REMOTE_METHOD(Add, kOpAdd, int(int, int));
182 PDX_REMOTE_API(API, Add, Foo, Concatenate, SumVector, StringLength,
192 int Add(int a, int b) {
193 return ReturnStatusOrError(InvokeRemoteMethod<TestInterface::Add>(a, b));
347 case TestInterface::Add::Opcode:
348 DispatchRemoteMethod<TestInterface::Add>(*this, &TestService::OnAdd,
587 // Create a test service and add it to the dispatcher.
597 const int sum = client->Add(10, 25);
641 // Create a test service and add it to the dispatcher.
685 // Create a test service and add it to the dispatcher
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 51 // ExplodedNode is not constified all over the engine because we need to add
163 ID.Add(Loc);
174 /// in tandem add this node as a successor of the other node.
309 /// addRoot - Add an untyped node to the set of roots.
315 /// addEndOfPath - Add an untyped node to the set of EOP nodes.
418 inline void Add(ExplodedNode *N) {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 51 // ExplodedNode is not constified all over the engine because we need to add
163 ID.Add(Loc);
174 /// in tandem add this node as a successor of the other node.
309 /// addRoot - Add an untyped node to the set of roots.
315 /// addEndOfPath - Add an untyped node to the set of EOP nodes.
418 inline void Add(ExplodedNode *N) {
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 51 // ExplodedNode is not constified all over the engine because we need to add
163 ID.Add(Loc);
174 /// in tandem add this node as a successor of the other node.
309 /// addRoot - Add an untyped node to the set of roots.
315 /// addEndOfPath - Add an untyped node to the set of EOP nodes.
418 inline void Add(ExplodedNode *N) {
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 51 // ExplodedNode is not constified all over the engine because we need to add
163 ID.Add(Loc);
174 /// in tandem add this node as a successor of the other node.
309 /// addRoot - Add an untyped node to the set of roots.
315 /// addEndOfPath - Add an untyped node to the set of EOP nodes.
418 inline void Add(ExplodedNode *N) {

Completed in 1720 milliseconds

<<11121314151617181920>>