Searched defs:deleted (Results 1 - 25 of 33) sorted by relevance

12

/external/llvm/lib/Analysis/
H A DAssumptionCache.cpp91 void AssumptionCacheTracker::FunctionCallbackVH::deleted() { function in class:AssumptionCacheTracker::FunctionCallbackVH
H A DIVUsers.cpp353 void IVStrideUse::deleted() { function in class:IVStrideUse
H A DAliasSetTracker.cpp510 // AliasSetTracker entirely. It should be used when an instruction is deleted
512 // dangling pointers to deleted instructions.
630 void AliasSetTracker::ASTCallbackVH::deleted() { function in class:AliasSetTracker::ASTCallbackVH
H A DLazyValueInfo.cpp304 void deleted() override;
306 deleted();
411 /// that a block has been deleted.
427 void LVIValueHandle::deleted() { function in class:LVIValueHandle
H A DScalarEvolution.cpp365 void SCEVUnknown::deleted() { function in class:SCEVUnknown
2090 // If we deleted at least one add, we added operands to the end of the list,
2463 // If we deleted at least one mul, we added operands to the end of the list,
4649 /// compute a trip count, or if the loop is deleted.
7985 void ScalarEvolution::SCEVCallbackVH::deleted() {
/external/proguard/src/proguard/classfile/editor/
H A DVariableEditor.java42 private boolean[] deleted = new boolean[ClassConstants.TYPICAL_VARIABLES_SIZE]; field in class:VariableEditor
56 if (deleted.length < maxLocals)
59 deleted = new boolean[maxLocals];
64 Arrays.fill(deleted, 0, maxLocals, false);
73 * @param variableIndex the index of the variable to be deleted.
77 deleted[variableIndex] = true;
84 * Returns whether the given variable at the given offset has deleted.
88 return deleted[instructionOffset];
117 variableMap[oldVariableIndex] = deleted[oldVariableIndex] ?
H A DCodeAttributeEditor.java76 /*private*/public boolean[] deleted = new boolean[ClassConstants.TYPICAL_CODE_LENGTH]; field in class:CodeAttributeEditor
126 deleted = new boolean[codeLength];
133 Arrays.fill(deleted, 0, codeLength, false);
155 deleted = ArrayUtil.extendArray(deleted, codeLength);
162 Arrays.fill(deleted, this.codeLength, codeLength, false);
316 * @param instructionOffset the offset of the instruction to be deleted.
326 deleted[instructionOffset] = true;
335 * @param instructionOffset the offset of the instruction not to be deleted.
345 deleted[instructionOffse
[all...]
/external/gptfdisk/
H A Dmbr.cc107 // Returns 1 if a partition was deleted, 0 otherwise....
111 int i, deleted = 0; local
122 deleted = 1;
126 return deleted;
/external/libnl/src/
H A Dnl-addr-delete.c17 static int deleted = 0; variable
68 deleted++;
137 printf("Deleted %d addresses\n", deleted);
H A Dnl-cls-delete.c15 static int deleted = 0; variable
61 deleted++;
130 printf("Deleted %d classifiers\n", deleted);
H A Dnl-neigh-delete.c16 static int quiet = 0, default_yes = 0, deleted = 0, interactive = 0; variable
63 deleted++;
119 printf("Deleted %d neighbours\n", deleted);
H A Dnl-qdisc-delete.c16 static int quiet = 0, default_yes = 0, deleted = 0, interactive = 0; variable
61 deleted++;
113 printf("Deleted %d qdiscs\n", deleted);
H A Dnl-route-delete.c17 static int deleted = 0; variable
81 deleted++;
165 printf("Deleted %d routes\n", deleted);
/external/jdiff/src/jdiff/
H A DDiffMyers.java95 of deleted lines (counting only lines before the midpoint).
97 lines inserted or deleted (counting only lines before the midpoint).
356 /** Scan the tables of which lines are inserted and deleted,
391 /** Scan the tables of which lines are inserted and deleted,
468 Each change represents one place where some lines are deleted
472 DELETED is the number of lines deleted here from file 0.
484 public int deleted; field in class:DiffMyers.change
485 /** Line number of 1st deleted line. */
492 DELETED is the number of lines deleted here from file 0.
497 change(int line0, int line1, int deleted, in argument
[all...]
/external/llvm/include/llvm/IR/
H A DValueHandle.h39 /// the value is deleted or ReplaceAllUsesWith'd. See the specific handles
169 /// \brief Value handle that asserts if the Value is deleted.
285 // Check that this value is valid (i.e., it hasn't been deleted). We
288 assert(ValueHandleBase::isValid(VP) && "Tracked Value was deleted!");
372 virtual void deleted() { setValPtr(nullptr); } function in class:llvm::CallbackVH
/external/skia/src/core/
H A DSkTDynamicHash.h159 // We have two special values to indicate an empty or deleted entry.
174 int count = 0, deleted = 0; local
177 deleted++;
184 SKTDYNAMICHASH_CHECK(deleted == fDeleted);
/external/skia/src/pathops/
H A DSkOpCoincidence.cpp199 if (start->deleted()) {
206 if (oStart->deleted()) {
349 void SkOpCoincidence::fixUp(SkOpPtT* deleted, SkOpPtT* kept) { argument
355 if (coin->fCoinPtTStart == deleted) {
361 if (coin->fCoinPtTEnd == deleted) {
367 if (coin->fOppPtTStart == deleted) {
373 if (coin->fOppPtTEnd == deleted) {
H A DSkOpSpan.h66 bool deleted() const { function in class:SkOpPtT
186 bool deleted() const { function in class:SkOpSpanBase
187 return fPtT.deleted();
H A DSkPathOpsTSect.h1473 SkTSpan<TCurve, OppCurve>* deleted = fDeleted; local
1474 while (deleted) {
1475 SkTSpan<TCurve, OppCurve>* delNext = deleted->fNext;
1476 if (deleted->fCollapsed) {
1478 while (*spanPtr && (*spanPtr)->fEndT <= deleted->fStartT) {
1481 deleted->fNext = *spanPtr;
1482 *spanPtr = deleted;
1484 deleted = delNext;
1495 // may have been deleted when opp did 'remove all but'
1696 const SkTSpan<TCurve, OppCurve>* deleted local
[all...]
/external/libnfc-nci/src/nfa/include/
H A Dnfa_hci_api.h50 #define NFA_HCI_DELETE_PIPE_EVT 0x08 /* Pipe is deleted */
257 tNFA_HCI_DELETE_PIPE deleted; /* NFA_HCI_DELETE_PIPE_EVT */ member in union:__anon8514
366 ** The allocated Gate information will be deleted from non
367 ** volatile memory and all the associated pipes are deleted
568 ** When the dynamic pipe is deleted (or if an error occurs),
571 ** entry will be deleted for the dynamic pipe and all
572 ** information related to the pipe will be deleted from non
/external/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp50 void deleted() override;
68 /// use this so we get notified if a block is deleted or RAUWd.
72 /// whose corresponding BasicBlock got deleted. These symbols need to be
82 "Some labels for deleted blocks never got emitted");
116 // entry to BBCallbacks so we can be notified if the BB is deleted or RAUWd.
145 /// takeDeletedSymbolsForFunction - If we have any deleted symbols for F, return
162 // If the block got deleted, there is no need for the symbol. If the symbol
180 // for the containing Function. Since the block is being deleted, its
192 // for the containing Function. Since the block is being deleted, its
198 // The entry is deleted, fre
244 void MMIAddrLabelMapCallbackPtr::deleted() { function in class:MMIAddrLabelMapCallbackPtr
[all...]
/external/e2fsprogs/e2fsck/
H A Dprofile.c141 unsigned int deleted:1; member in struct:profile_node
1174 new->deleted = 0;
1228 if (p->deleted)
1429 if (p->deleted)
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/v8/src/
H A Dobjects.cc668 // Preserve the enumeration index unless the property was deleted.
718 Handle<Object> deleted(
720 if (*deleted == isolate->heap()->true_value()) {
725 return deleted;
7326 // Reached the end of the code cache. If there were deleted
7374 // Skip deleted elements.
7423 // Use null instead of undefined for deleted elements to distinguish
7424 // deleted elements from unused elements. This distinction is used
11096 Handle<JSArray> deleted,
11105 { object, index_object, deleted, add_count_objec
11094 EnqueueSpliceRecord(Handle<JSArray> object, uint32_t index, Handle<JSArray> deleted, uint32_t add_count) argument
12425 Handle<JSArray> deleted = isolate->factory()->NewJSArray(0); local
12426 EnqueueSpliceRecord(Handle<JSArray>::cast(object), old_length, deleted, local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 823 milliseconds

12