/frameworks/compile/slang/ |
slang.h | 178 clang::ModuleIdPath Path,
|
/frameworks/support/v4/java/android/support/v4/widget/ |
MaterialProgressDrawable.java | 32 import android.graphics.Path; 428 private Path mArrow; 491 mArrow = new android.graphics.Path(); 492 mArrow.setFillType(android.graphics.Path.FillType.EVEN_ODD); 503 // Update the path each time. This works around an issue in SKIA
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
ProjectNamePage.java | 38 import org.eclipse.core.runtime.Path; 297 * the location path is enabled when using the "existing source" mode (i.e. not new project) 315 * Display a directory browser and update the location path field with the selected path 321 // Disable the path if it doesn't exist 366 * Updates the location directory path field. 375 * @param absDir A new absolute directory path or null to use the default. 389 // the exact same path. 419 mValues.extractFromAndroidManifest(new Path(mValues.projectLocation.getPath())); 480 Path path = new Path(mValues.projectLocation.getPath()) local [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/liblouis_nacl/ |
liblouis.js | 15 * @param {string} nmfPath Path to .nmf file for the module. 16 * @param {string=} opt_tablesDir Path to tables directory. 20 * Path to .nmf file for the module. 26 * Path to translation tables.
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
kernel_proxy.cc | 36 #include "nacl_io/path.h" 165 int KernelProxy::open_resource(const char* path) { 167 Path rel; 169 Error error = AcquireFsAndRelPath(path, &fs, &rel); 193 return AllocateFD(handle, path); 196 int KernelProxy::open(const char* path, int open_flags) { 200 Error error = AcquireFsAndNode(path, open_flags, &fs, &node); 213 return AllocateFD(handle, path); 254 std::string path; local 255 Error error = AcquireHandleAndPath(oldfd, &handle, &path); 563 std::string path; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGAnimateMotionElement.cpp | 109 m_path = Path(); 132 m_animationPath = Path();
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathGrammar.y | 432 $$ = new Path($1, $3); 442 $$ = new Path($1, $3);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
LinkHighlight.cpp | 175 static void addQuadToPath(const FloatQuad& quad, Path& path) 178 path.moveTo(quad.p1()); 179 path.addLineTo(quad.p2()); 180 path.addLineTo(quad.p3()); 181 path.addLineTo(quad.p4()); 182 path.closeSubpath(); 221 Path newPath; 232 // links: these should ideally be merged into a single rect before creating the path, but that's
|
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/ |
json_value.cpp | [all...] |
/external/compiler-rt/make/ |
lib_platforms.mk | 24 $(call Set,$(PlatformKey).Path,$(1))
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/ |
messages.properties | 16 RSSFeedCommon.FeedURLError=Error: no feedURL specified, eg., http://server/path/to/feed.xml\! 29 RSSFeedAddEntryTask.BuildURLError=Warning: no buildURL specified, eg., http://server/path/to/project/downloads/drops/branch/buildID/\! 61 RSSFeedPublisherTask.UsingCVSPath=Using CVS Path:
|
/external/jsoncpp/chromium-overrides/src/lib_json/ |
json_value.cpp | [all...] |
/external/jsoncpp/src/lib_json/ |
json_value.cpp | [all...] |
/external/pdfium/core/src/reflow/ |
reflowedpage.h | 298 typedef enum {Unknow, Text, Image, Path, Line, paragraph} RF_DataType; 360 m_Type = Path;
|
/external/qemu/distrib/sdl-1.2.15/src/cdrom/beos/ |
SDL_syscdrom.cc | 37 #include <Path.h> 214 BPath path; local 218 if(entry.GetPath(&path) != B_NO_ERROR) 220 name = path.Path();
|
/frameworks/base/core/java/android/text/ |
BoringLayout.java | 21 import android.graphics.Path; 391 public void draw(Canvas c, Path highlight, Paint highlightpaint,
|
/frameworks/compile/mclinker/tools/mcld/lib/ |
OutputFormatOptions.cpp | 15 llvm::cl::opt<mcld::sys::fs::Path, 17 llvm::cl::parser<mcld::sys::fs::Path> > ArgOutputFilename("o",
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
AlbumDataLoader.java | 28 import com.android.gallery3d.data.Path; 140 // Returns the index of the MediaItem with the given path or 141 // -1 if the path is not cached 142 public int findItem(Path id) {
|
AlbumSetDataLoader.java | 28 import com.android.gallery3d.data.Path; 151 // Returns the index of the MediaSet with the given path or 152 // -1 if the path is not cached 153 public int findSet(Path id) {
|
AlbumPage.java | 41 import com.android.gallery3d.data.Path; 68 public static final String KEY_MEDIA_PATH = "media-path"; 69 public static final String KEY_PARENT_MEDIA_PATH = "parent-media-path"; 87 private Path mMediaSetPath; 132 public int getItemIndex(Path path) { 137 if (item != null && item.getPath() == path) return i; 508 mMediaSetPath = Path.fromString(data.getString(KEY_MEDIA_PATH)); 512 Utils.fail("MediaSet is null. Path = %s", mMediaSetPath); 677 public void onSelectionChange(Path path, boolean selected) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ |
CreateAssetSetWizard.java | 33 import org.eclipse.core.runtime.Path; 105 IPath dest = new Path(relativePath); 209 TreePath path = new TreePath(segments.toArray()); local 210 pathList.add(path);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/ |
AaptQuickFixTest.java | 34 import org.eclipse.core.runtime.Path; 181 IPath path = new Path(expectedNewPath); local 182 IFile newFile = project.getFile(path); 183 assertNotNull(path.toPortableString(), newFile);
|
/external/clang/lib/Lex/ |
HeaderSearch.cpp | 26 #include "llvm/Support/Path.h" 122 // If we don't have a module cache path, we can't do anything. 130 llvm::sys::path::append(Result, ModuleName + ".pcm"); 142 llvm::sys::path::append(Result, ModuleName + "-" + HashStr.str() + ".pcm"); 160 llvm::sys::path::append(FrameworkDirName, ModuleName + ".framework"); 192 llvm::sys::path::append(NestedModuleMapDirName, ModuleName); 261 /// LookupFile - Lookup the specified file in this search path, returning it 279 llvm::sys::path::append(TmpDir, Filename); 301 SmallString<1024> Path; 302 StringRef Dest = HM->lookupFilename(Filename, Path); [all...] |
/frameworks/base/core/java/android/view/ |
GLES20Canvas.java | 27 import android.graphics.Path; 280 public boolean clipPath(Path path) { 281 return nClipPath(mRenderer, path.mNativePath, Region.Op.INTERSECT.nativeInt); 285 public boolean clipPath(Path path, Region.Op op) { 286 return nClipPath(mRenderer, path.mNativePath, op.nativeInt); 289 private static native boolean nClipPath(long renderer, long path, int op); 362 public boolean quickReject(Path path, EdgeType type) [all...] |
/external/clang/lib/Serialization/ |
GlobalModuleIndex.cpp | 30 #include "llvm/Support/Path.h" 209 // FIXME: this doesn't work correctly for module names containing path 211 StringRef ModuleName = llvm::sys::path::stem(Modules[ID].FileName); 236 GlobalModuleIndex::readIndex(StringRef Path) { 239 IndexPath += Path; 240 llvm::sys::path::append(IndexPath, IndexFileName); 766 GlobalModuleIndex::writeIndex(FileManager &FileMgr, StringRef Path) { 768 IndexPath += Path; 769 llvm::sys::path::append(IndexPath, IndexFileName); 793 for (llvm::sys::fs::directory_iterator D(Path, EC), DEnd [all...] |