/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidXmlCharacterMatcher.java | 70 ITextRegion subRegion = region.getRegionAtCharacterOffset(offset); 71 if (subRegion == null) { 75 int index = subRegions.indexOf(subRegion); 77 String type = subRegion.getType(); 86 (subRegion.getStart() + region.getStartOffset() == offset)) { 95 subRegion = region.getRegionAtCharacterOffset(offset); 96 if (subRegion == null) { 99 type = subRegion.getType(); 102 index = subRegions.indexOf(subRegion); 107 subRegion = subRegions.get(i) [all...] |
AndroidXmlAutoEditStrategy.java | 365 * Returns the subregion at the given offset, with a bias to the left or a bias to the 367 * {@code <foo>|</bar>} then the subregion with bias left is the closing {@code >} and 368 * the subregion with bias right is the opening {@code </}. 373 * @return the subregion at the given offset, or null if not found 413 ITextRegion subRegion = subRegions.get(i); 414 int subRegionStart = regionStart + subRegion.getStart(); 415 int subRegionEnd = regionStart + subRegion.getEnd(); 419 String type = subRegion.getType();
|
/external/llvm/include/llvm/Analysis/ |
RegionInfo.h | 49 /// selected for SubRegions just one RegionNode containing the subregion is 54 /// @brief A RegionNode represents a subregion or a BasicBlock that is part of a 69 /// Use one bit to save, if this RegionNode is a subregion or BasicBlock 83 /// BasicBlock itself. If it represents a subregion, this 84 /// is the entry BasicBlock of the subregion. 85 /// @param isSubRegion If this RegionNode represents a SubRegion. 102 /// itself, otherwise we return the entry BasicBlock of the Subregion 109 /// This can be either a BasicBlock or a subregion. Before calling getNodeAs() 116 /// @brief Is this RegionNode a subregion? 118 /// @return True if it contains a subregion. False if it contains [all...] |
RegionIterator.h | 28 /// the parent Region. Furthermore for BasicBlocks that start a subregion, a 29 /// RegionNode representing the subregion is returned. 31 /// For a subregion RegionNode there is just one successor. The RegionNode 32 /// representing the exit of the subregion. 68 // RegionNode or a subregion RegionNode. 72 assert(succ && "BB not in Region or entered subregion!"); 76 // getRegionSucc - Return the successor basic block of a SubRegion RegionNode. 184 && "Subregion node not allowed in flat iterating mode!"); 196 && "Subregion node not allowed in flat iterating mode!");
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FilterEffect.cpp | 72 // Filters in SVG clip to primitive subregion, while CSS doesn't. 454 FloatRect subregion; local 456 subregion = inputEffect(0)->determineFilterPrimitiveSubregion(flags); 458 subregion.unite(inputEffect(i)->determineFilterPrimitiveSubregion(flags)); 460 subregion = filter()->filterRegion(); 462 // After calling determineFilterPrimitiveSubregion on the target effect, reset the subregion again for <feTile>. 464 subregion = filter()->filterRegion(); 467 subregion = mapRect(subregion); 471 subregion.setX(boundaries.x()) [all...] |
FilterEffect.h | 126 // into account the filter primitive subregion of each effect. 199 // The maximum size of a filter primitive. In SVG this is the primitive subregion in absolute coordinate space. 207 // The subregion of a filter primitive according to the SVG Filter specification in local coordinates. 211 // x, y, width and height of the actual SVGFE*Element. Is needed to determine the subregion of the
|
/external/chromium_org/third_party/skia/include/effects/ |
SkTileImageFilter.h | 20 @param input Input from which the subregion defined by srcRect will be tiled
|
/external/skia/include/effects/ |
SkTileImageFilter.h | 20 @param input Input from which the subregion defined by srcRect will be tiled
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/ |
ApplicationPackageNameRefactoring.java | 248 ITextRegion subRegion = list.get(i); 249 String type = subRegion.getType(); 253 lastAttrName = region.getText(subRegion); 261 String lastAttrValue = region.getText(subRegion); 266 region.getStartOffset() + subRegion.getStart(), 267 subRegion.getTextLength(), 339 ITextRegion subRegion = list.get(i); 340 String type = subRegion.getType(); 344 lastTagName = region.getText(subRegion); 348 lastAttrName = region.getText(subRegion); [all...] |
/external/llvm/lib/Analysis/ |
RegionInfo.cpp | 344 void Region::addSubRegion(Region *SubRegion, bool moveChildren) { 345 assert(SubRegion->parent == 0 && "SubRegion already has a parent!"); 346 assert(std::find(begin(), end(), SubRegion) == children.end() 347 && "Subregion already exists!"); 349 SubRegion->parent = this; 350 children.push_back(SubRegion); 355 assert(SubRegion->children.size() == 0 362 if (SubRegion->contains(BB)) 363 RI->setRegionFor(BB, SubRegion); [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
ArrayBoundCheckerV2.cpp | 46 const SubRegion *baseRegion; 53 RegionRawOffsetV2(const SubRegion* base, SVal offset) 57 const SubRegion *getRegion() const { return baseRegion; } 79 region = cast<SubRegion>(region)->getSuperRegion(); 276 if (const SubRegion *subReg = dyn_cast<SubRegion>(region)) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
RefactoringAssistant.java | 115 ITextRegion subRegion = region.getRegionAtCharacterOffset(offset); 116 if (subRegion != null) { 117 String type = subRegion.getType(); 119 String value = region.getText(subRegion); 133 String name = region.getText(subRegion);
|
VisualRefactoring.java | 377 ITextRegion subRegion = list.get(j); 378 String type = subRegion.getType(); 380 attributeName = region.getText(subRegion); 387 int subRegionStart = regionStart + subRegion.getStart(); 392 String attributeValue = region.getText(subRegion); [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
RegionStore.cpp | 52 explicit BindingKey(const SubRegion *r, const SubRegion *Base, Kind k) 76 const SubRegion *getConcreteOffsetRegion() const { 78 return reinterpret_cast<const SubRegion *>(static_cast<uintptr_t>(Data)); 114 return BindingKey(cast<SubRegion>(R), cast<SubRegion>(RO.getRegion()), k); 412 const SubRegion *R); 516 SVal getLazyBinding(const SubRegion *LazyBindingRegion, 542 std::pair<Store, const SubRegion *> 543 findLazyBinding(RegionBindingsConstRef B, const SubRegion *R [all...] |
MemRegion.cpp | 149 bool SubRegion::isSubRegionOf(const MemRegion* R) const { 154 if (const SubRegion* sr = dyn_cast<SubRegion>(r)) 162 MemRegionManager* SubRegion::getMemRegionManager() const { 163 const SubRegion* r = this; 166 if (const SubRegion *sr = dyn_cast<SubRegion>(superRegion)) { 433 void SubRegion::anchor() { } [all...] |
/art/runtime/ |
memory_region.h | 62 void Subregion(const MemoryRegion& from, uintptr_t offset, uintptr_t size) {
|
/external/chromium_org/content/browser/renderer_host/ |
backing_store.h | 48 // gives the location of bitmap, and copy_rects specifies the subregion(s) of
|
/sdk/eclipse/ |
dictionary.txt | 294 subregion
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/ |
AndroidXmlFormattingStrategy.java | 231 ITextRegion subRegion = endRegion.getRegionAtCharacterOffset(end); 233 int index = regions.indexOf(subRegion); 237 subRegion = regions.get(index); 238 String type = subRegion.getType(); 244 subRegion = regions.get(index); 245 String type = subRegion.getType(); 256 subRegion = regions.get(index); 257 String type = subRegion.getType(); 259 openTagEnd = subRegion.getEnd() + endRegion.getStartOffset(); [all...] |
/device/generic/goldfish/opengl/system/renderControl_enc/ |
README | 129 subregion. It act the same as OpenGL glReadPixels however pixels 135 Updates the content of a subregion of a colorBuffer object.
|
/external/llvm/lib/Transforms/Scalar/ |
StructurizeCFG.cpp | 129 /// 4 | 2 = "Then" subregion, runs if the condition is true 131 /// |/ 4 = "Else" optional subregion, runs if the condition is false 149 /// |/ 2 = "Loop" optional subregion, with all exits at "Flow" block 405 // Edge from inside a subregion to its entry, ignore it 586 Region *SubRegion = Node->getNodeAs<Region>(); 587 BasicBlock *OldExit = SubRegion->getExit(); 595 if (!SubRegion->contains(BB)) 617 SubRegion->replaceExit(NewExit);
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
SymbolManager.h | 39 class SubRegion; 237 /// SubRegion::getExtent instead -- the value returned may not be a symbol. 239 const SubRegion *R; 242 SymbolExtent(SymbolID sym, const SubRegion *r) 245 const SubRegion *getRegion() const { return R; } 251 static void Profile(llvm::FoldingSetNodeID& profile, const SubRegion *R) { 516 const SymbolExtent *getExtentSymbol(const SubRegion *R);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringRefactoring.java | 659 ITextRegion subRegion = list.get(i); 660 String type = subRegion.getType(); 663 currAttrName = region.getText(subRegion); 670 if (subRegion.getStart() <= startInRegion && 671 startInRegion < subRegion.getTextEnd()) { 678 subRegion = list.get(i + 2); 679 type = subRegion.getType(); 682 currAttrValue = region.getText(subRegion); 687 } else if (subRegion.getStart() <= startInRegion && 688 startInRegion < subRegion.getTextEnd() & [all...] |
/external/clang/test/Analysis/ |
array-struct.c | 116 // The binding of a.e.d should not be removed. Test recursive subregion map
|
/external/neven/Embedded/common/src/b_ImageEm/ |
HistoEq.h | 40 /** Histogram equalization using histogram generated from subregion.
|