HomeSort by relevance Sort by last modified time
    Searched refs:Directory (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /external/llvm/utils/
findsym.pl 12 my $Directory = $ARGV[0];
15 # Open the directory and read its contents, sorting by name and differentiating
17 opendir DIR,$Directory;
26 "nm $Directory/$lib | grep '$Symbol' | sort --key=3 | uniq |";
GenLibDeps.pl 31 my $Directory = $ARGV[0];
32 if (!defined($Directory) || ! -d "$Directory") {
33 die "First argument must specify the directory containing LLVM libs\n";
67 # Open the directory and read its contents, sorting by name and differentiating
69 opendir DIR,$Directory;
87 `$ranlibPath $Directory/$lib`;
109 open DEFS, "$nmPath -sg $Directory/$lib|";
149 open UDEFS, "$nmPath -Aup $Directory/$lib|";
165 open DEFS, "$nmPath -g $Directory/$lib|"
    [all...]
  /external/swiftshader/third_party/LLVM/utils/
findsym.pl 12 my $Directory = $ARGV[0];
15 # Open the directory and read its contents, sorting by name and differentiating
17 opendir DIR,$Directory;
26 "nm $Directory/$lib | grep '$Symbol' | sort --key=3 | uniq |";
GenLibDeps.pl 31 my $Directory = $ARGV[0];
32 if (!defined($Directory) || ! -d "$Directory") {
33 die "First argument must specify the directory containing LLVM libs\n";
67 # Open the directory and read its contents, sorting by name and differentiating
69 opendir DIR,$Directory;
87 `$ranlibPath $Directory/$lib`;
111 open DEFS, "$nmPath -sg $Directory/$lib|";
153 open UDEFS, "$nmPath -Aup $Directory/$lib|";
169 open DEFS, "$nmPath -g $Directory/$lib|"
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/
findsym.pl 12 my $Directory = $ARGV[0];
15 # Open the directory and read its contents, sorting by name and differentiating
17 opendir DIR,$Directory;
26 "nm $Directory/$lib | grep '$Symbol' | sort --key=3 | uniq |";
GenLibDeps.pl 31 my $Directory = $ARGV[0];
32 if (!defined($Directory) || ! -d "$Directory") {
33 die "First argument must specify the directory containing LLVM libs\n";
67 # Open the directory and read its contents, sorting by name and differentiating
69 opendir DIR,$Directory;
87 `$ranlibPath $Directory/$lib`;
109 open DEFS, "$nmPath -sg $Directory/$lib|";
149 open UDEFS, "$nmPath -Aup $Directory/$lib|";
165 open DEFS, "$nmPath -g $Directory/$lib|"
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_DirectoryTest.java 27 import android.provider.ContactsContract.Directory;
54 // The directory table is populated asynchronously. Wait for it...
70 * Wait until the directory row is populated in the directory table, and return its ID.
76 try (Cursor c = getContext().getContentResolver().query(Directory.CONTENT_URI,
77 null, Directory.ACCOUNT_NAME + "=? and " + Directory.ACCOUNT_TYPE + "=?",
85 assertEquals(getContext().getPackageName(), getString(c, Directory.PACKAGE_NAME));
87 getString(c, Directory.DIRECTORY_AUTHORITY));
88 assertEquals(DummyGalProvider.DISPLAY_NAME, getString(c, Directory.DISPLAY_NAME))
    [all...]
DummyGalProvider.java 27 import android.provider.ContactsContract.Directory;
124 * Build a cursor containing the directory information.
137 if (column.equals(Directory.ACCOUNT_NAME)) {
139 } else if (column.equals(Directory.ACCOUNT_TYPE)) {
141 } else if (column.equals(Directory.TYPE_RESOURCE_ID)) {
143 } else if (column.equals(Directory.DISPLAY_NAME)) {
145 } else if (column.equals(Directory.EXPORT_SUPPORT)) {
146 row[i] = Directory.EXPORT_SUPPORT_NONE;
147 } else if (column.equals(Directory.SHORTCUT_SUPPORT)) {
148 row[i] = Directory.SHORTCUT_SUPPORT_NONE
    [all...]
  /external/clang/include/clang/Tooling/
CompilationDatabase.h 19 // To create a CompilationDatabase from a build directory one can call
42 /// \brief Specifies the working directory and command of a compilation.
45 CompileCommand(Twine Directory, Twine Filename,
47 : Directory(Directory.str()),
51 /// \brief The working directory the command was executed from.
52 std::string Directory;
81 /// \brief Loads a compilation database from a build directory.
88 /// compilation database for the build directory.
91 /// are named 'compile_commands.json' in the given directory. Extend thi
    [all...]
  /external/libexif/libexif/
i18n.h 43 # define bindtextdomain(Domain,Directory)
46 # define bindtextdomain(Domain,Directory) (Domain)
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 57 findCompilationDatabaseFromDirectory(StringRef Directory,
61 while (!Directory.empty()) {
65 CompilationDatabase::loadFromDirectory(Directory, LoadErrorMessage))
69 ErrorStream << "No compilation database found in " << Directory.str()
70 << " or any parent directory\n" << LoadErrorMessage;
74 Directory = llvm::sys::path::parent_path(Directory);
84 StringRef Directory = llvm::sys::path::parent_path(AbsolutePath);
87 findCompilationDatabaseFromDirectory(Directory, ErrorMessage);
104 ErrorMessage = ("Could not auto-detect compilation database from directory \""
    [all...]
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 38 expectFailure("[{\"directory\":\"\",\"command\":\"\"}]", "Missing file");
39 expectFailure("[{\"directory\":\"\",\"file\":\"\"}]", "Missing command or arguments");
40 expectFailure("[{\"command\":\"\",\"file\":\"\"}]", "Missing directory");
41 expectFailure("[{\"directory\":\"\",\"arguments\":[]}]", "Missing file");
42 expectFailure("[{\"arguments\":\"\",\"file\":\"\"}]", "Missing directory");
43 expectFailure("[{\"directory\":\"\",\"arguments\":\"\",\"file\":\"\"}]", "Arguments not array");
44 expectFailure("[{\"directory\":\"\",\"command\":[],\"file\":\"\"}]", "Command not string");
45 expectFailure("[{\"directory\":\"\",\"arguments\":[[]],\"file\":\"\"}]",
83 "[{\"directory\":\"//net/dir\","
86 " {\"directory\":\"//net/dir\",
    [all...]
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
Stats.cs 37 using Directory = System.IO.Directory;
119 Directory.CreateDirectory( Path.GetDirectoryName( absoluteFilename ) );
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
ContactsTest.java 41 import android.provider.ContactsContract.Directory;
79 // Directory display name
85 // Directory Authority
86 private static final String DIRECTORY_PROVIDER_AUTHORITY = "com.android.cts.contact.directory.provider";
89 // Retry directory query so we can make sure directory info in cp2 is updated
436 // local directory
439 Directory.ENTERPRISE_DEFAULT);
442 // remote directory
444 if (directoryId != 0) { // if directoryId == 0, it means it can't access managed directory
    [all...]
  /cts/hostsidetests/devicepolicy/app/ContactDirectoryProvider/src/com/android/cts/contactdirectoryprovider/
DirectoryProvider.java 35 import android.provider.ContactsContract.Directory;
49 private static final String AUTHORITY = "com.android.cts.contact.directory.provider";
52 private static final String DEFAULT_DISPLAY_NAME = "Directory";
124 if (column.equals(Directory.ACCOUNT_NAME)) {
126 } else if (column.equals(Directory.ACCOUNT_TYPE)) {
128 } else if (column.equals(Directory.TYPE_RESOURCE_ID)) {
130 } else if (column.equals(Directory.DISPLAY_NAME)) {
132 } else if (column.equals(Directory.EXPORT_SUPPORT)) {
133 row[i] = Directory.EXPORT_SUPPORT_SAME_ACCOUNT_ONLY;
134 } else if (column.equals(Directory.SHORTCUT_SUPPORT))
    [all...]
  /build/make/core/combo/
javac.mk 4 # ANDROID_JAVA_TOOLCHAIN -- Directory that contains javac and other java tools
  /external/proguard/bin/
proguard.bat 8 REM "\"C:/My Directory/My File.txt\""
proguardgui.bat 8 REM "\"C:/My Directory/My File.txt\""
retrace.bat 8 REM "\"C:/My Directory/My File.txt\""
  /external/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp 58 static void printFile(raw_ostream &O, StringRef Filename, StringRef Directory,
64 if (!Directory.empty())
65 O << Directory << "/";
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp 57 static void printFile(raw_ostream &O, StringRef Filename, StringRef Directory,
63 if (!Directory.empty())
64 O << Directory << "/";
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
Directory.java 19 public class Directory {
  /external/swiftshader/third_party/LLVM/lib/Linker/
Linker.cpp 117 // IsLibrary - Determine if "Name" is a library in "Directory". Return
120 const sys::Path &Directory) {
122 sys::Path FullPath(Directory);
154 // Indicate that the library was not found in the directory.
176 sys::Path Directory(LibPaths[Index]);
177 sys::Path FullPath = IsLibrary(Filename, Directory);
  /external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/X86/
dwarfdump-line-dwo.s 32 # Directory table
37 .byte 1 # Directory index
78 # Directory table
83 .byte 1 # Directory index
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
EdkIIWorkspace.py 42 print 'ERROR: WORKSPACE not defined. Please run EdkSetup from the EDK II install directory.'
295 ## Create a new directory
297 # @param Directory: Directory to be created
299 def CreateDirectory(Directory):
300 if not os.access(Directory, os.F_OK):
301 os.makedirs (Directory)
305 # @param Directory: Directory to be created
309 def CreateFile(Directory, FileName, Mode='w'):
    [all...]

Completed in 949 milliseconds

1 2 3 4 5 6 7