HomeSort by relevance Sort by last modified time
    Searched defs:locations (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/chromium_org/chrome/test/chromedriver/chrome/
chrome_finder_unittest.cc 27 const std::vector<base::FilePath>& locations) {
32 locations,
46 std::vector<base::FilePath> locations; local
47 locations.push_back(found.DirName());
49 AssertFound(found, existing_paths, rel_paths, locations));
62 std::vector<base::FilePath> locations; local
63 locations.push_back(dir);
65 AssertFound(first, existing_paths, rel_paths, locations));
79 std::vector<base::FilePath> locations; local
80 locations.push_back(dir1)
92 std::vector<base::FilePath> locations; local
    [all...]
chrome_finder.cc 26 void GetApplicationDirs(std::vector<base::FilePath>* locations) {
37 locations->push_back(
41 locations->push_back(
46 void GetApplicationDirs(std::vector<base::FilePath>* locations) {
47 locations->push_back(base::FilePath("/opt/google/chrome"));
48 locations->push_back(base::FilePath("/usr/local/bin"));
49 locations->push_back(base::FilePath("/usr/local/sbin"));
50 locations->push_back(base::FilePath("/usr/bin"));
51 locations->push_back(base::FilePath("/usr/sbin"));
52 locations->push_back(base::FilePath("/bin"))
115 std::vector<base::FilePath> locations; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldHttpRetryExceptionTest.java 40 String [] locations = {"file:\\error.txt", "http:\\localhost", local
45 codes[i], locations[i]);
49 assertEquals(locations[i], hre.getLocation());
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 88 StackTraceElement locations[]=dummyException.getStackTrace(); local
92 if( locations!=null && locations.length >2 ) {
93 StackTraceElement caller=locations[2];
  /external/chromium/chrome/browser/ui/web_applications/
web_app_ui.cc 167 // Locations to check to shortcut_paths.
172 } locations[] = { local
191 for (int i = 0; i < arraysize(locations); ++i) {
192 locations[i].use_this_location = false;
195 if (!PathService::Get(locations[i].location_id, &path)) {
200 if (locations[i].sub_dir != NULL)
201 path = path.Append(locations[i].sub_dir);
206 locations[i].use_this_location = true;
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
iphoto_data_provider.cc 131 std::map<std::string, base::FilePath> locations; local
134 return locations;
138 locations.insert(make_pair(file_it->first, file_it->second));
141 return locations;
163 std::map<std::string, base::FilePath> locations; local
166 return locations;
170 locations.insert(make_pair(file_it->first, file_it->second));
173 return locations;
iphoto_file_util.cc 246 std::map<std::string, base::FilePath> locations = local
249 locations.begin();
250 it != locations.end(); it++) {
  /external/chromium_org/chrome/browser/ui/web_applications/
web_app_ui.cc 236 // Locations to check to shortcut_paths.
240 } locations[] = { local
256 for (int i = 0; i < arraysize(locations); ++i) {
258 if (!PathService::Get(locations[i].location_id, &path)) {
263 if (locations[i].sub_dir != NULL)
264 path = path.Append(locations[i].sub_dir);
  /external/chromium_org/chrome/browser/web_applications/
web_app_win.cc 263 // This will search the standard locations for shortcuts named |title| that open
282 // Get all possible locations for shortcuts.
420 // recreate them in any locations they already existed (but do not add them
421 // to locations where they do not currently exist).
491 // Locations to add to shortcut_paths.
495 } locations[] = { local
522 for (int i = 0; i < arraysize(locations); ++i) {
523 if (locations[i].use_this_location) {
525 if (!ShellUtil::GetShortcutPath(locations[i].location_id,
  /external/chromium_org/chrome/common/extensions/features/
simple_feature.cc 40 locations["component"] = Feature::COMPONENT_LOCATION;
56 std::map<std::string, Feature::Location> locations; member in struct:extensions::__anon6669::Mappings
287 g_mappings.Get().locations);
  /external/chromium_org/gpu/command_buffer/client/
program_info_manager.cc 357 const int32* locations = LocalGetAs<const int32*>( local
366 info.element_locations.push_back(locations[jj]);
  /external/qemu/android/skin/
file.h 82 SkinLocation* locations; member in struct:SkinLayout
87 SkinLocation* __loc = (layout)->locations; \
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestSemanticPredicates.java 878 Map<Integer, Set<Token>> locations = insuffPredMsg.altToLocations; local
879 Set actualAlts = locations.keySet();
  /external/chromium_org/cc/output/
shader.cc 30 int* locations,
33 locations[i] = (*base_uniform_index)++;
34 context->BindUniformLocationCHROMIUM(program, locations[i], uniforms[i]);
164 int locations[arraysize(uniforms)]; local
170 locations,
172 matrix_location_ = locations[0];
199 int locations[arraysize(uniforms)]; local
205 locations,
207 matrix_location_ = locations[0];
208 tex_scale_location_ = locations[1]
235 int locations[arraysize(uniforms)]; local
269 int locations[arraysize(uniforms)]; local
324 int locations[arraysize(uniforms)]; local
383 int locations[arraysize(uniforms)]; local
441 int locations[arraysize(uniforms)]; local
499 int locations[arraysize(uniforms)]; local
545 int locations[arraysize(uniforms)]; local
601 int locations[arraysize(uniforms)]; local
639 int locations[arraysize(uniforms)]; local
666 int locations[arraysize(uniforms)]; local
689 int locations[arraysize(uniforms)]; local
776 int locations[arraysize(uniforms)]; local
889 int locations[arraysize(uniforms)]; local
933 int locations[arraysize(uniforms)]; local
1009 int locations[arraysize(uniforms)]; local
1062 int locations[arraysize(uniforms)]; local
1125 int locations[arraysize(uniforms)]; local
1192 int locations[arraysize(uniforms)]; local
1252 int locations[arraysize(uniforms)]; local
1316 int locations[arraysize(uniforms)]; local
1377 int locations[arraysize(uniforms)]; local
1428 int locations[arraysize(uniforms)]; local
1459 int locations[arraysize(uniforms)]; local
1500 int locations[arraysize(uniforms)]; local
    [all...]
  /external/chromium_org/chrome/browser/
shell_integration_linux.cc 604 ShellIntegration::ShortcutLocations locations; local
608 locations.on_desktop =
619 locations.hidden = true;
621 locations.applications_menu_location =
626 return locations;
850 // The 'applications_menu_location' and 'hidden' locations are actually the
    [all...]
  /external/llvm/lib/CodeGen/
LiveDebugVariables.cpp 117 /// Numbered locations referenced by locmap.
118 SmallVector<MachineOperand, 4> locations; member in class:__anon21755::UserValue
183 // For register locations we dont care about use/def and other flags.
184 for (unsigned i = 0, e = locations.size(); i != e; ++i)
185 if (locations[i].isReg() &&
186 locations[i].getReg() == LocMO.getReg() &&
187 locations[i].getSubReg() == LocMO.getSubReg())
190 for (unsigned i = 0, e = locations.size(); i != e; ++i)
191 if (LocMO.isIdenticalTo(locations[i]))
193 locations.push_back(LocMO)
    [all...]
  /external/stressapptest/src/
os.cc 141 // Returns a list of locations corresponding to HD devices.
144 list<string> locations; local
145 return locations;
sat.cc 139 // Autodetect file locations.
141 // Get a space separated sting of disk locations.
142 list<string> locations = os_->FindFileDevices(); local
145 while (!locations.empty()) {
147 string disk = locations.back();
148 locations.pop_back();
423 // Initialize page locations.
487 // Initialize page locations.
814 // Autodetect tempfile locations.
984 " --findfiles find locations to do disk IO automatically\n
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EventLocationAdapter.java 124 // Constants for recent locations query (in Events table):
256 * Return filter for matching against contacts info and recent locations.
265 * recent locations.
277 // Start the recent locations query (async).
292 // Wait for the locations query.
295 // Add the matched recent locations to returned results. If a match exists in
296 // both the recent locations query and the contacts addresses, only display it
305 Log.e(TAG, "Failed waiting for locations query results.", e);
307 Log.e(TAG, "Failed waiting for locations query results.", e);
420 * Matches the input string against recent locations
456 TreeSet<String> locations = new TreeSet<String>(String.CASE_INSENSITIVE_ORDER); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 876 Field locations = horizontal.getClass().getDeclaredField("locations"); \/\/$NON-NLS-1\$ local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
program_manager.cc 818 // Go through the array element locations looking for a match.
1177 int32* locations = bucket->GetDataAs<int32*>( local
    [all...]
program_manager_unittest.cc 634 // Check that we can get the locations of the array elements > 1
797 // Check that we get the correct locations.
1062 const int32* locations = bucket.GetDataAs<const int32*>( local
1068 locations[jj]); local
1113 const int32* locations = bucket.GetDataAs<const int32*>( local
1118 locations[0]); local
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
text_format.cc 142 const vector<TextFormat::ParseLocation>* locations = local
144 if (locations == NULL || index >= locations->size()) {
148 return (*locations)[index];
    [all...]
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAToDFAConverter.java 1613 Set<Token> locations = altToLocationsReachableWithoutPredicate.get(altI); local
    [all...]

Completed in 941 milliseconds

1 2 3