HomeSort by relevance Sort by last modified time
    Searched full:subregion (Results 1 - 25 of 50) sorted by null

1 2

  /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/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceFilterPrimitive.cpp 69 FloatRect subregion = subregionBoundingBox; local
86 subregion = uniteRect;
91 subregion.setX(targetBoundingBox.x() + subregionBoundingBox.x() * targetBoundingBox.width());
94 subregion.setY(targetBoundingBox.y() + subregionBoundingBox.y() * targetBoundingBox.height());
97 subregion.setWidth(subregionBoundingBox.width() * targetBoundingBox.width());
100 subregion.setHeight(subregionBoundingBox.height() * targetBoundingBox.height());
103 subregion.setX(uniteRect.x());
106 subregion.setY(uniteRect.y());
109 subregion.setWidth(uniteRect.width());
112 subregion.setHeight(uniteRect.height())
    [all...]
  /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!");
  /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 311 void Region::addSubRegion(Region *SubRegion, bool moveChildren) {
312 assert(SubRegion->parent == 0 && "SubRegion already has a parent!");
313 assert(std::find(begin(), end(), SubRegion) == children.end()
314 && "Subregion already exists!");
316 SubRegion->parent = this;
317 children.push_back(SubRegion);
322 assert(SubRegion->children.size() == 0
329 if (SubRegion->contains(BB))
330 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)) {
  /external/webkit/Source/WebCore/platform/graphics/filters/
FilterEffect.h 131 // The maximum size of a filter primitive. In SVG this is the primitive subregion in absolute coordinate space.
142 // The subregion of a filter primitive according to the SVG Filter specification in local coordinates.
146 // x, y, width and height of the actual SVGFE*Element. Is needed to determine the subregion of the
  /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 50 explicit BindingKey(const SubRegion *r, const SubRegion *Base, Kind k)
74 const SubRegion *getConcreteOffsetRegion() const {
76 return reinterpret_cast<const SubRegion *>(static_cast<uintptr_t>(Data));
112 return BindingKey(cast<SubRegion>(R), cast<SubRegion>(RO.getRegion()), k);
379 const SubRegion *R);
483 SVal getLazyBinding(const SubRegion *LazyBindingRegion,
509 std::pair<Store, const SubRegion *>
510 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() { }
968 const SubRegion* SR = dyn_cast<SubRegion>(this)
    [all...]
SimpleConstraintManager.cpp 85 const SubRegion *SubR = dyn_cast<SubRegion>(R);
96 SubR = dyn_cast<SubRegion>(SubR->getSuperRegion());
  /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/Target/R600/
AMDGPUStructurizeCFG.cpp 136 /// 4 | 2 = "Then" subregion, runs if the condition is true
138 /// |/ 4 = "Else" optional subregion, runs if the condition is false
156 /// |/ 2 = "Loop" optional subregion, with all exits at "Flow" block
412 // Edge from inside a subregion to its entry, ignore it
596 Region *SubRegion = Node->getNodeAs<Region>();
597 BasicBlock *OldExit = SubRegion->getExit();
605 if (!SubRegion->contains(BB))
627 SubRegion->replaceExit(NewExit);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 39 class SubRegion;
234 /// SubRegion::getExtent instead -- the value returned may not be a symbol.
236 const SubRegion *R;
239 SymbolExtent(SymbolID sym, const SubRegion *r)
242 const SubRegion *getRegion() const { return R; }
248 static void Profile(llvm::FoldingSetNodeID& profile, const SubRegion *R) {
511 const SymbolExtent *getExtentSymbol(const SubRegion *R);
MemRegion.h 143 /// Check if the region is a subregion of the given region.
400 /// SubRegion - A region that subsets another larger region. Most regions
401 /// are subclasses of SubRegion.
402 class SubRegion : public MemRegion {
407 SubRegion(const MemRegion* sReg, Kind k) : MemRegion(k), superRegion(sReg) {}
433 class AllocaRegion : public SubRegion {
441 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
464 class TypedRegion : public SubRegion {
468 TypedRegion(const MemRegion* sReg, Kind k) : SubRegion(sReg, k) {}
696 class SymbolicRegion : public SubRegion {
    [all...]
  /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.
HistoEq16.h 36 /** Histogram equalization using histogram generated from subregion.
  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocator.h 64 // committing/decommitting the entire region additional parameters allow a subregion to be

Completed in 960 milliseconds

1 2