Searched defs:location (Results 176 - 200 of 858) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DTraceDebugEventListener.java45 public void location(int line, int pos) {System.out.println("location "+line+":"+pos);} method in class:TraceDebugEventListener
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Devent-hub.rb153 def location( line, position ) method in class:ANTLR3.Debug.EventHub
155 listener.location( line, position )
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Derror.rb159 def location method in class:ANTLR3.Error.RecognitionError
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DEventBuilder.java79 * @param location the required location
82 public EventBuilder setLocationOnly(Location location) { argument
84 mod.loc = location;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
H A DJDWPStackFrameTestCase.java39 Location location; field in class:JDWPStackFrameTestCase.FrameInfo
41 public FrameInfo(long frameID, Location location) { argument
44 this.location = location;
54 * @return Returns the location.
57 return location;
118 Location location = reply.getNextValueAsLocation();
119 frameInfos[i] = new FrameInfo(frameID, location);
/external/bison/src/
H A Dgram.h105 # include "location.h"
195 location location; member in struct:__anon375
199 location action_location;
/external/chromium_org/ash/display/
H A Dscreen_position_controller.cc63 // Finds the root window at |location| in |window|'s coordinates and returns a
64 // pair of root window and location in that root window's coordinates. The
70 const gfx::Point& location) {
72 gfx::Point location_in_root(location);
68 GetRootWindowRelativeToWindow( aura::Window* window, const gfx::Point& location) argument
/external/chromium_org/ash/wm/dock/
H A Ddocked_window_resizer.cc62 void DockedWindowResizer::Drag(const gfx::Point& location, int event_flags) { argument
63 last_location_ = location;
70 gfx::Rect bounds(CalculateBoundsForDrag(location));
72 gfx::Point modified_location(location);
283 // We need to be careful to give ParentWindowWithContext a location in
/external/chromium_org/ash/wm/
H A Ddrag_window_resizer.cc72 void DragWindowResizer::Drag(const gfx::Point& location, int event_flags) { argument
74 next_window_resizer_->Drag(location, event_flags);
79 last_mouse_location_ = location;
82 gfx::Point location_in_screen = location;
H A Dtoplevel_window_event_handler_unittest.cc374 // Verifies we don't let windows drag to a -y location.
381 // The y location and height should not have changed.
392 // The y location and height should not have changed.
407 gfx::Point location(5, 5);
410 gfx::Point end = location;
414 generator.GestureScrollSequence(location, end,
426 end = location = target->GetBoundsInRootWindow().CenterPoint();
428 generator.GestureScrollSequence(location, end,
442 end = location = target->GetBoundsInRootWindow().CenterPoint();
444 generator.GestureScrollSequence(location, en
512 gfx::Point location, end; local
[all...]
/external/chromium_org/ash/wm/panels/
H A Dpanel_window_resizer.cc52 void PanelWindowResizer::Drag(const gfx::Point& location, int event_flags) { argument
53 last_location_ = location;
84 gfx::Rect bounds(CalculateBoundsForDrag(location));
89 gfx::Point modified_location(location.x() + offset.x(),
90 location.y() + offset.y());
198 // We use last known location to ensure that after the drag the panel
199 // is reparented to a container in the root window that has that location.
/external/chromium_org/athena/home/
H A Dhome_card_gesture_manager_unittest.cc67 gfx::Point location = event.location(); local
68 location.set_y(location.y() - home_card_top);
69 event.set_location(location);
/external/chromium_org/base/task/
H A Dcancelable_task_tracker_unittest.cc12 #include "base/location.h"
42 void AddFailureAt(const tracked_objects::Location& location) { argument
43 ADD_FAILURE_AT(location.file_name(), location.line_number());
47 Closure MakeExpectedNotRunClosure(const tracked_objects::Location& location) { argument
48 return Bind(&AddFailureAt, location);
57 explicit RunChecker(const tracked_objects::Location& location) argument
58 : location_(location), called_(false) {}
74 Closure MakeExpectedRunClosure(const tracked_objects::Location& location) { argument
75 return Bind(&RunChecker::Run, Owned(new RunChecker(location)));
[all...]
/external/chromium_org/chrome/browser/extensions/api/autotest_private/
H A Dautotest_private_api.cc186 Manifest::Location location = extension->location(); local
188 location == Manifest::COMPONENT);
190 location == Manifest::INTERNAL);
192 location == Manifest::INTERNAL ||
193 Manifest::IsUnpackedLocation(location));
/external/chromium_org/chrome/browser/extensions/
H A Dtest_extension_prefs.cc147 const base::DictionaryValue& manifest, Manifest::Location location) {
148 return AddExtensionWithManifestAndFlags(manifest, location,
154 Manifest::Location location,
161 path, location, manifest, extra_flags, &errors);
146 AddExtensionWithManifest( const base::DictionaryValue& manifest, Manifest::Location location) argument
152 AddExtensionWithManifestAndFlags( const base::DictionaryValue& manifest, Manifest::Location location, int extra_flags) argument
/external/chromium_org/chrome/browser/media_galleries/win/
H A Dmtp_device_delegate_impl_win_unittest.cc61 const base::FilePath::StringType& location);
64 const base::FilePath& location);
121 const base::FilePath::StringType& location) {
122 StorageInfo info(id, location, label, base::string16(), base::string16(), 0);
129 const base::FilePath& location) {
132 base::string16 label = location.LossyDisplayName();
133 ProcessAttach(device_id, label, location.value());
157 base::FilePath location(
160 AttachDevice(StorageInfo::MTP_OR_PTP, "mtp_fake_id", location);
175 if (info.path == location) {
118 ProcessAttach( const std::string& id, const base::string16& label, const base::FilePath::StringType& location) argument
126 AttachDevice( StorageInfo::Type type, const std::string& unique_id, const base::FilePath& location) argument
[all...]
/external/chromium_org/chrome/browser/safe_browsing/
H A Dtwo_phase_uploader.cc123 std::string location; local
125 NULL, kLocationHeader, &location)) {
126 LOG(ERROR) << "no location header";
130 DVLOG(1) << "upload location: " << location;
131 upload_url_ = GURL(location);
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_shared_settings_service_unittest.cc43 const tracked_objects::Location& location,
58 const tracked_objects::Location& location,
60 return syncer::SyncError(location, SyncError::DATATYPE_ERROR, message, type_);
57 CreateAndUploadError( const tracked_objects::Location& location, const std::string& message) argument
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dsync_task_token.cc57 void SyncTaskToken::UpdateTask(const tracked_objects::Location& location, argument
60 location_ = location;
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dsyncable_file_operation_runner_unittest.cc10 #include "base/location.h"
108 StatusCallback ExpectStatus(const tracked_objects::Location& location, argument
111 weak_factory_.GetWeakPtr(), location, expect);
115 const tracked_objects::Location& location) {
117 weak_factory_.GetWeakPtr(), location);
120 void DidWrite(const tracked_objects::Location& location, argument
122 SCOPED_TRACE(testing::Message() << location.ToString());
129 void DidFinish(const tracked_objects::Location& location, argument
131 SCOPED_TRACE(testing::Message() << location.ToString());
114 GetWriteCallback( const tracked_objects::Location& location) argument
/external/chromium_org/chrome/browser/ui/ash/
H A Dwindow_positioner_unittest.cc146 int AlignToGridRoundDown(int location, int grid_size) { argument
147 if (grid_size <= 1 || location % grid_size == 0)
148 return location;
149 return location / grid_size * grid_size;
198 // Check that we overflow back to the first possible location if we overflow
229 // Now block the found location.
/external/chromium_org/chrome/renderer/pepper/
H A Dpepper_flash_menu_host.cc134 const PP_Point& location) {
151 params.x = location.x;
152 params.y = location.y;
160 pp_instance(), gfx::Point(location.x, location.y));
132 OnHostMsgShow( ppapi::host::HostMessageContext* context, const PP_Point& location) argument
/external/chromium_org/chrome/utility/media_galleries/
H A Diphoto_library_parser.cc22 base::FilePath location; member in struct:iphoto::__anon6029::PhotoInfo
42 photo_info_->location = base::FilePath(value);
175 // Return true if at least the location was found.
183 parser::Photo photo(photo_info.id, photo_info.location,
H A Diphoto_library_parser_unittest.cc109 EXPECT_EQ(a.location.value(), b.location.value());
165 const std::string& location,
167 parser::Photo photo(id, base::FilePath::FromUTF8Unsafe(location),
168 base::FilePath::FromUTF8Unsafe("/original" + location));
164 AddExpectedPhoto(uint32 id, const std::string& location, const std::string& album) argument
/external/chromium_org/chromeos/network/onc/
H A Donc_validator_unittest.cc81 : location(location_of_object),
87 std::string location; member in struct:chromeos::onc::__anon6220::OncParams
94 return os << "(" << onc.location << ", " << onc.signature << ", "
117 Validate(true, test_utils::ReadTestDictionary(onc.location), onc.signature,
124 Validate(false, test_utils::ReadTestDictionary(onc.location), onc.signature,
222 // be repaired (then the errors count as warnings). If a location of the
225 // VALID_WITH_WARNINGS. If the location is the empty string, then it is expected
246 Validate(true, GetDictionaryFromTestFile(onc.location), onc.signature,
258 Validate(false, GetDictionaryFromTestFile(onc.location), onc.signature,

Completed in 5907 milliseconds

1234567891011>>