/external/clang/lib/Driver/ |
ToolChain.cpp | 128 std::string ProgName = llvm::sys::path::stem(Argv0); 298 SmallString<128> Path(getDriver().ResourceDir); 300 llvm::sys::path::append(Path, "lib", OSLibName); 301 llvm::sys::path::append(Path, Prefix + Twine("clang_rt.") + Component + "-" + 303 return Path.str(); 553 const Twine &Path) { 555 CC1Args.push_back(DriverArgs.MakeArgString(Path)); 568 const Twine &Path) { [all...] |
/external/llvm/include/llvm/Support/ |
FileOutputBuffer.h | 40 /// to the file at the specified path. 59 /// Returns path where file will show up if buffer is committed. 81 StringRef Path, StringRef TempPath);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowCanvas.java | 88 public void drawPath(Path path, Paint paint) { 89 pathPaintEvents.add(new PathPaintHistoryEvent(path, paint)); 92 appendDescription("Path " + shadowOf(path).getPoints().toString()); 141 public Path getDrawnPath(int i) { 159 private Path drawnPath; 162 PathPaintHistoryEvent(Path drawnPath, Paint pathPaint) {
|
/external/skia/src/animator/ |
SkTextToPath.cpp | 21 SK_MEMBER(path, Path), 29 SkTextToPath::SkTextToPath() : paint(nullptr), path(nullptr), text(nullptr) { 33 path->draw(maker); 38 if (paint == nullptr || path == nullptr || text == nullptr) { 46 text->y, &path->getPath());
|
/frameworks/base/core/java/android/transition/ |
ArcMotion.java | 20 import android.graphics.Path; 26 * A PathMotion that generates a curved path along an arc on an imaginary circle containing 34 * the path, {@link #setMinimumHorizontalAngle(float)} and 81 * circle will be far from both points, giving a near straight path between the points. 83 * exaggerated curve to the path. 86 * @param angleInDegrees The minimum angle of the arc on a circle describing the Path 98 * circle will be far from both points, giving a near straight path between the points. 100 * exaggerated curve to the path. 113 * circle will be far from both points, giving a near straight path between the points. 115 * exaggerated curve to the path 197 Path path = new Path(); local [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Outline.java | 62 public final Path mPath = new Path(); 198 * {@code true}. If no outline bounds are set, or if a path has been set 199 * via {@link #setConvexPath(Path)}, returns {@code false}. 214 * Returns the rounded rect radius, if set, or a value less than 0 if a path has 215 * been set via {@link #setConvexPath(Path)}. A return value of {@code 0} 241 mPath.addOval(left, top, right, bottom, Path.Direction.CW); 255 * {@link android.graphics.Path#isConvex() convex path}. 257 public void setConvexPath(@NonNull Path convexPath) [all...] |
/frameworks/base/libs/hwui/ |
VectorDrawable.cpp | 36 void Path::draw(SkCanvas* outCanvas, const SkMatrix& groupStackedMatrix, float scaleX, float scaleY, 47 //TODO: try apply the path matrix to the canvas instead of creating a new path. 64 void Path::dump() { 65 ALOGD("Path: %s has %zu points", mName.c_str(), mProperties.getData().points.size()); 68 float Path::getMatrixScale(const SkMatrix& groupStackedMatrix) { 96 Path::Path(const char* pathStr, size_t strLength) { 103 Path::Path(const Path& path) : Node(path) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
BatteryMeterDrawable.java | 29 import android.graphics.Path; 73 private final Path mBoltPath = new Path(); 75 private final Path mPlusPath = new Path(); 82 private final Path mShapePath = new Path(); 83 private final Path mClipPath = new Path(); 84 private final Path mTextPath = new Path() [all...] |
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
ViewLayersActivity5.java | 24 import android.graphics.Path; 52 private final Path mClipPath = new Path(); 77 Math.min(getWidth(), getHeight()) / 3.0f, Path.Direction.CW);
|
/frameworks/compile/mclinker/lib/MC/ |
SearchDirs.cpp | 34 SearchDirs::SearchDirs(const sys::fs::Path& pSysRoot) : m_SysRoot(pSysRoot) { 52 if (exists(dir->path()) && is_directory(dir->path())) { 66 bool SearchDirs::insert(const sys::fs::Path& pPath) { 70 mcld::sys::fs::Path* SearchDirs::find(const std::string& pNamespec, 98 if (file == entry.path()->filename().native()) 99 return entry.path(); 106 if (file == entry.path()->stem().native()) { 108 entry.path()->extension().native()) { 109 return entry.path(); [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
PhotoDataAdapter.java | 31 import com.android.gallery3d.data.Path; 118 // The ImageCache is a Path-to-ImageEntry map. It only holds the 123 private HashMap<Path, ImageEntry> mImageCache = 124 new HashMap<Path, ImageEntry>(); 136 // mPaths keeps the corresponding Path (of MediaItem) for the images. This 138 private final Path mPaths[] = new Path[IMAGE_CACHE_SIZE]; 149 private Path mItemPath; 156 private Path mFocusHintPath = null; 159 public void onPhotoChanged(int index, Path item) 813 Path path = item.getPath(); local [all...] |
SlideshowDataAdapter.java | 25 import com.android.gallery3d.data.Path; 46 public int findItemIndex(Path path, int hint); 56 private Path mInitialPath; 69 Path initialPath) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
ComboSource.java | 35 // The only path we accept is "/combo/{set1, set2, ...} and /combo/item/{set1, set2, ...}" 37 public MediaObject createMediaObject(Path path) { 38 String[] segments = path.split(); 40 throw new RuntimeException("bad path: " + path); 44 switch (mMatcher.match(path)) { 46 return new ComboAlbumSet(path, mApplication, 50 return new ComboAlbum(path,
|
FaceClustering.java | 37 ArrayList<Path> mPaths = new ArrayList<Path>(); 48 Path path = item.getPath(); local 49 mPaths.add(path); 129 public ArrayList<Path> getCluster(int index) {
|
FilterEmptyPromptSet.java | 28 public FilterEmptyPromptSet(Path path, MediaSet baseSet, MediaItem emptyItem) { 29 super(path, INVALID_DATA_VERSION);
|
SingleItemAlbum.java | 27 public SingleItemAlbum(Path path, MediaItem item) { 28 super(path, nextVersionNumber());
|
/prebuilts/go/darwin-x86/doc/articles/wiki/ |
final-noerror.go | 33 title := r.URL.Path[len("/edit/"):] 43 title := r.URL.Path[len("/view/"):]
|
notemplate.go | 33 title := r.URL.Path[len("/view/"):] 39 title := r.URL.Path[len("/edit/"):]
|
part3.go | 38 title := r.URL.Path[len("/view/"):] 44 title := r.URL.Path[len("/edit/"):]
|
/prebuilts/go/linux-x86/doc/articles/wiki/ |
final-noerror.go | 33 title := r.URL.Path[len("/edit/"):] 43 title := r.URL.Path[len("/view/"):]
|
notemplate.go | 33 title := r.URL.Path[len("/view/"):] 39 title := r.URL.Path[len("/edit/"):]
|
part3.go | 38 title := r.URL.Path[len("/view/"):] 44 title := r.URL.Path[len("/edit/"):]
|
/external/harfbuzz_ng/test/fuzzing/ |
hb-fuzzer.cc | 47 std::string FileToString(const std::string &Path) { 49 std::ifstream T(Path.c_str());
|
/frameworks/compile/mclinker/include/mcld/ |
LinkerScript.h | 77 const sys::fs::Path& sysroot() const; 79 void setSysroot(const sys::fs::Path& pPath);
|
/frameworks/compile/mclinker/lib/Support/ |
Android.mk | 13 Path.cpp \
|