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

<<2122232425

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mtxadmin.h 265 virtual HRESULT WINAPI Add(IDispatch **ppCatalogObject) = 0;
292 HRESULT (WINAPI *Add)(ICatalogCollection *This,IDispatch **ppCatalogObject);
321 #define ICatalogCollection_Add(This,ppCatalogObject) (This)->lpVtbl->Add(This,ppCatalogObject)
    [all...]
sdpblb.h     [all...]
asptlb.h 476 virtual HRESULT WINAPI Add(BSTR bstrHeaderValue,BSTR bstrHeaderName) = 0;
514 HRESULT (WINAPI *Add)(IResponse *This,BSTR bstrHeaderValue,BSTR bstrHeaderName);
    [all...]
cdonts.h 495 virtual HRESULT WINAPI Add(VARIANT Subject,VARIANT Text,VARIANT Importance,VARIANT *pvarResult) = 0;
    [all...]
eventsys.h     [all...]
msimcntl.h 252 virtual HRESULT WINAPI Add(VARIANT vUser) = 0;
312 HRESULT (WINAPI *Add)(IMSIMContactView *This,VARIANT vUser);
374 #define IMSIMContactView_Add(This,vUser) (This)->lpVtbl->Add(This,vUser)
    [all...]
msimcsdk.h     [all...]
  /art/oatdump/
oatdump.cc 208 // TODO: Add symbols for dex bytecode in the .dex section.
539 cumulative.Add(data);
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 445 procedure Add(const El: Integer);
774 /// For grammar debugging, you will want to override this to add more information
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 80 void Add(const NamedDecl *ND, unsigned Index) {
97 // Add the new element to the end of the vector.
284 /// \brief Add a new result to this result set (if it isn't already in one
288 /// \param R the result to add (if it is unique).
293 /// \brief Add a new result to this result set, where we already know
296 /// \param R the result to add (if it is unique).
307 /// \brief Add a new non-declaration result to this result set.
833 // For non-declaration results, just add the result.
924 // If this result is supposed to have an informative qualifier, add one.
    [all...]
  /external/dng_sdk/source/
dng_image_writer.cpp 572 void dng_tiff_directory::Add (const tiff_tag *tag)
787 directory.Add (&fNewSubFileType);
789 directory.Add (&fImageWidth);
790 directory.Add (&fImageLength);
792 directory.Add (&fPhotoInterpretation);
794 directory.Add (&fSamplesPerPixel);
796 directory.Add (&fBitsPerSample);
803 directory.Add (&fFillOrder);
810 directory.Add (&fTileWidth);
814 directory.Add (&fTileLength)
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
JmDNSImpl.java 60 Remove, Update, Add, RegisterServiceType, Noop
244 public boolean add(String subtype) { method in class:JmDNSImpl.ServiceTypeEntry
248 _entrySet.add(new SubTypeEntry(subtype));
269 entry.add(subTypeEntry.getValue());
342 * If an incoming package which needs an answer is truncated, we store it here. We add more incoming DNSRecords to it, until the JmDNS.Responder timer picks it up.<br/>
895 _typeListeners.add(status);
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp 365 setOperationAction(ISD::ADD, VT, Expand);
791 SDValue Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, InitPtr, Offset);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp 308 setOperationAction(ISD::ADD, MVT::i32, Custom);
310 setOperationAction(ISD::ADD, MVT::i64, Custom);
426 setTargetDAGCombine(ISD::ADD);
557 // Assume the 3rd operand is a CondCodeSDNode. Add code to check the type of
638 return DAG.getNode(ISD::ADD, DL, SetCC.getValueType(), SetCC, False);
648 return DAG.getNode(ISD::ADD, DL, SetCC.getValueType(), SetCC, True);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 26 // %i.next = add %i, 1
31 // the value of the register before the add and some using it after. In this
46 // TODO: When a negated register is used by an add (such as in a list of
49 // negation can be implemented by using a sub instead of an add. The
275 /// temporary register, but the offset itself can live in an add immediate
317 // Look at add operands.
318 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
319 for (const SCEV *S : Add->operands())
515 /// Return true if the given add can be sign-extended without changing its
585 // Distribute the sdiv over add operands, if the add doesn't overflow
1605 void add(const IVInc &X) { Incs.push_back(X); } function in struct:__anon28080::IVChain
    [all...]
  /external/v8/src/
deoptimizer.cc 290 codes.Add(code, &zone);
    [all...]
gdb-jit.cc 420 uintptr_t Add(const char* str) {
465 header->name = static_cast<uint32_t>(strtab->Add(name_));
479 sections_.Add(section, zone_);
607 sections_.Add(new(zone) ELFSection("", ELFSection::TYPE_NULL, 0), zone);
608 sections_.Add(new(zone) ELFStringTable(".shstrtab"), zone);
622 sections_.Add(section, zone_);
839 s->name = static_cast<uint32_t>(t->Add(name));
890 void Add(const ELFSymbol& symbol, Zone* zone) {
892 locals_.Add(symbol, zone);
894 globals_.Add(symbol, zone)
    [all...]
  /external/v8/src/parsing/
preparser.h 166 left.variables_->Add(variable, zone);
376 variables_->Add(variable, zone);
416 // These functions make list->Add(some_expression) work (and do nothing).
419 void Add(const T& element, Zone* zone);
435 inline void PreParserList<PreParserExpression>::Add(
444 variables_->Add(identifier, zone);
451 void PreParserList<T>::Add(const T& element, Zone* zone) {
    [all...]
  /external/v8/src/ppc/
macro-assembler-ppc.cc 173 Add(sp, sp, count * kPointerSize, r0);
179 add(sp, sp, scratch);
307 Add(dst, object, offset - kHeapObjectTag, r0);
953 add(kConstantPoolRegister, kConstantPoolRegister, code_target_address);
    [all...]
  /external/webrtc/webrtc/
common_types.h 200 void Add(const RtcpPacketTypeCounter& other) {
678 // TODO(ivica): Add max_quantizer and min_quantizer?
831 void Add(const RtpPacketCounter& other) {
860 void Add(const StreamDataCounters& other) {
861 transmitted.Add(other.transmitted);
862 retransmitted.Add(other.retransmitted);
863 fec.Add(other.fec);
  /art/runtime/
debugger.cc 804 *class_object_id = gRegistry->Add(c);
819 *superclass_id = gRegistry->Add(c->GetSuperClass());
830 expandBufAddObjectId(pReply, gRegistry->Add(c->GetClassLoader()));
873 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeerFromOtherThread()));
875 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
880 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeerFromOtherThread()));
911 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp 656 * when it is evaluated, it can add a variable binding to the environment
667 //! Add the functions used in this statement to `dst`.
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp 690 * when it is evaluated, it can add a variable binding to the environment
701 //! Add the functions used in this statement to `dst`.
    [all...]
  /external/llvm/bindings/go/llvm/
ir.go 180 Add Opcode = C.LLVMAdd
    [all...]

Completed in 1960 milliseconds

<<2122232425