HomeSort by relevance Sort by last modified time
    Searched refs:location (Results 251 - 275 of 3770) sorted by null

<<11121314151617181920>>

  /external/chromium_org/ui/views/corewm/
tooltip.h 31 const gfx::Point& location) = 0;
33 // Shows the tooltip at the specified location (in screen coordinates).
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
IFlyoutPreferences.java 44 * @return the docking location - {@link #DOCK_WEST}, {@link #DOCK_EAST}, {@link #DOCK_NORTH} or
65 * Sets the docking location.
67 void setDockLocation(int location);
  /frameworks/base/location/lib/java/com/android/location/provider/
GeocodeProvider.java 17 package com.android.location.provider;
21 import android.location.Address;
22 import android.location.GeocoderParams;
23 import android.location.IGeocodeProvider;
58 * {@link android.location.Geocoder#getFromLocation(double, double, int)} method.
66 * {@link android.location.Geocoder#getFromLocationName(String, int, double, double, double, double)} method.
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_nmea.h 40 void loc_eng_nmea_generate_pos(loc_eng_data_s_type *loc_eng_data_p, const UlpLocation &location, const GpsLocationExtended &locationExtended, unsigned char generate_nmea);
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_nmea.h 40 void loc_eng_nmea_generate_pos(loc_eng_data_s_type *loc_eng_data_p, const UlpLocation &location, const GpsLocationExtended &locationExtended, unsigned char generate_nmea);
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
implement.h 19 * following World Wide Web location:
770 # define PTW32_INTERLOCKED_COMPARE_EXCHANGE_64(location, value, comparand) \
778 :"r" (location), "r" (value), "a" (comparand) \
782 # define PTW32_INTERLOCKED_EXCHANGE_64(location, value) \
789 :"r" (location), "0" (value) \
793 # define PTW32_INTERLOCKED_EXCHANGE_ADD_64(location, value) \
801 :"r" (location), "0" (value) \
805 # define PTW32_INTERLOCKED_INCREMENT_64(location) \
813 :"r" (location) \
817 # define PTW32_INTERLOCKED_DECREMENT_64(location) \
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_diagnostics.py 10 assert tu.diagnostics[0].location.line == 1
11 assert tu.diagnostics[0].location.column == 11
20 assert tu.diagnostics[0].location.line == 2
21 assert tu.diagnostics[0].location.column == 7
24 # assert tu.diagnostics[1].location.line == 1
25 # assert tu.diagnostics[1].location.column == 11
32 assert tu.diagnostics[0].location.line == 1
33 assert tu.diagnostics[0].location.column == 26
46 assert tu.diagnostics[0].location.line == 1
47 assert tu.diagnostics[0].location.column == 1
    [all...]
test_location.py 23 assert_location(one.location,line=1,column=5,offset=4)
24 assert_location(two.location,line=2,column=5,offset=13)
34 assert_location(one.location,line=2,column=5,offset=5)
35 assert_location(two.location,line=3,column=5,offset=14)
42 assert_location(one.location,line=1,column=6,offset=5)
43 assert_location(two.location,line=2,column=5,offset=14)
45 # define the expected location ourselves and see if it matches
46 # the returned location
50 location = SourceLocation.from_position(tu, file, 1, 5)
51 cursor = Cursor.from_location(tu, location)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/app/
LegacyLocationProvider.java 20 import android.location.Location;
26 * A class that handles legacy (network, gps) location providers, in the event
27 * the fused location provider from Google Play Services is unavailable.
33 private android.location.LocationManager mLocationManager;
37 new LocationListener(android.location.LocationManager.GPS_PROVIDER),
38 new LocationListener(android.location.LocationManager.NETWORK_PROVIDER)
46 public Location getCurrentLocation() {
51 Location l = mLocationListeners[i].current();
54 Log.d(TAG, "No location received yet.")
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
readable_font_data.cc 175 int32_t location = 0; local
179 location = (top + bottom) / 2;
180 int32_t location_start = ReadUShort(start_index + location * start_offset);
182 // location is below current location
183 top = location;
186 int32_t location_end = ReadUShort(end_index + location * end_offset);
191 return location;
193 // location is above the current location
205 int32_t location = 0; local
230 int32_t location = 0; local
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
readable_font_data.cc 175 int32_t location = 0; local
179 location = (top + bottom) / 2;
180 int32_t location_start = ReadUShort(start_index + location * start_offset);
182 // location is below current location
183 top = location;
186 int32_t location_end = ReadUShort(end_index + location * end_offset);
191 return location;
193 // location is above the current location
205 int32_t location = 0; local
230 int32_t location = 0; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/location/
GeofenceManager.java 17 package com.android.server.location;
28 import android.location.Geofence;
29 import android.location.Location;
30 import android.location.LocationListener;
31 import android.location.LocationManager;
32 import android.location.LocationRequest;
49 * Assume a maximum land speed, as a heuristic to throttle location updates.
51 * force a new location update anyway).
56 * Maximum age after which a location is no longer considered fresh enough to use
213 Location location = mReceivingLocationUpdates ? mLastLocationUpdate : null; local
252 Location location = getFreshLocationLocked(); local
    [all...]
  /libcore/luni/src/main/java/java/util/
LinkedList.java 67 LinkIterator(LinkedList<ET> object, int location) {
70 if (location >= 0 && location <= list.size) {
75 if (location < list.size / 2) {
76 for (pos = -1; pos + 1 < location; pos++) {
80 for (pos = list.size; pos >= location; pos--) {
266 * specified location. The object is inserted before any previous element at
267 * the specified location. If the location is equal to the size of this
270 * @param location
    [all...]
  /external/chromium_org/tools/gn/
tokenizer.cc 95 Location location = GetCurrentLocation(); local
99 *err_ = GetErrorForInvalidToken(location);
103 AdvanceToEndOfToken(location, type);
127 tokens_.back().location().line_number() + 1 !=
128 location.line_number() ||
129 tokens_.back().location().char_offset() != location.char_offset())) {
148 tokens_.push_back(Token(location, type, token_value));
239 void Tokenizer::AdvanceToEndOfToken(const Location& location
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PinchViewportTest.cpp 79 return os << "Context menu location: ["
242 EXPECT_FLOAT_POINT_EQ(FloatPoint(0, 300), pinchViewport.location());
254 EXPECT_FLOAT_POINT_EQ(FloatPoint(0, 75), pinchViewport.location());
302 EXPECT_FLOAT_POINT_EQ(FloatPoint(150, 0), pinchViewport.location());
313 EXPECT_FLOAT_POINT_EQ(FloatPoint(150, 0), pinchViewport.location());
339 // Make sure that the visibleRect method acurately reflects the scale and scroll location
370 pinchViewport.setLocation(expectedRect.location());
374 pinchViewport.setLocation(expectedRect.location());
378 FloatPoint oldLocation = expectedRect.location();
386 pinchViewport.setLocation(expectedRect.location());
    [all...]
  /art/runtime/jdwp/
jdwp_request.cc 144 JdwpLocation location; local
145 memset(&location, 0, sizeof(location)); // Allows memcmp(3) later.
146 location.type_tag = ReadTypeTag();
147 location.class_id = ReadObjectId("class");
148 location.method_id = ReadMethodId();
149 location.dex_pc = Read8BE();
150 VLOG(jdwp) << " location " << location;
151 return location;
    [all...]
  /cts/tools/signature-tools/src/signature/io/html/
HtmlDeltaExternalizer.java 46 public void externalize(String location, IApiDelta apiDelta)
48 if (!location.endsWith(File.separator)) {
49 location += File.separator;
52 File directory = new File(location);
57 copyStyleSheet(location);
70 writeToFile(location + OVERVIEW_PAGE_NAME, content.toString());
77 File file = new File(location + DELTA_FOLDER);
88 String packageOverviewFileName = location + DELTA_FOLDER
100 String classOverviewFileName = location + DELTA_FOLDER
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
GLClientState.cpp 75 void GLClientState::enable(int location, int state)
77 if (!validLocation(location)) {
81 m_states[location].enableDirty |= (state != m_states[location].enabled);
82 m_states[location].enabled = state;
85 void GLClientState::setState(int location, int size, GLenum type, GLboolean normalized, GLsizei stride, const void *data)
87 if (!validLocation(location)) {
90 m_states[location].size = size;
91 m_states[location].type = type;
92 m_states[location].stride = stride
    [all...]
  /external/bison/src/
symlist.c 33 symbol_list_sym_new (symbol *sym, location loc)
39 res->location = res->sym_loc = loc;
64 symbol_list_type_new (uniqstr type_name, location loc)
70 res->location = res->sym_loc = loc;
83 symbol_list_default_tagged_new (location loc)
88 res->location = res->sym_loc = loc;
101 symbol_list_default_tagless_new (location loc)
106 res->location = res->sym_loc = loc;
206 symbol_list_n_type_name_get (symbol_list *l, location loc, int n)
symtab.c 46 location startsymbol_location;
62 symbol_new (uniqstr tag, location loc)
75 res->location = loc;
150 symbol_redeclaration (symbol *s, const char *what, location first,
151 location second)
160 semantic_type_redeclaration (semantic_type *s, const char *what, location first,
161 location second)
177 symbol_type_set (symbol *sym, uniqstr type_name, location loc)
197 symbol_redeclaration (sym, "%destructor", sym->destructor.location,
198 destructor->location);
    [all...]
  /external/chromium_org/extensions/common/
manifest_test.h 70 extensions::Manifest::Location location =
76 extensions::Manifest::Location location =
82 extensions::Manifest::Location location =
89 extensions::Manifest::Location location =
96 extensions::Manifest::Location location
    [all...]
manifest_test.cc 105 extensions::Manifest::Location location,
112 test_data_dir.DirName(), location, *value, flags, error);
117 extensions::Manifest::Location location,
121 LoadExtension(manifest, &error, location, flags);
129 extensions::Manifest::Location location,
131 return LoadAndExpectSuccess(ManifestData(manifest_name), location, flags);
137 extensions::Manifest::Location location
    [all...]
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
GLClientState.cpp 73 void GLClientState::enable(int location, int state)
75 if (!validLocation(location)) {
79 m_states[location].enableDirty |= (state != m_states[location].enabled);
80 m_states[location].enabled = state;
83 void GLClientState::setState(int location, int size, GLenum type, GLboolean normalized, GLsizei stride, const void *data)
85 if (!validLocation(location)) {
88 m_states[location].size = size;
89 m_states[location].type = type;
90 m_states[location].stride = stride
    [all...]
  /external/chromium_org/ui/chromeos/
touch_exploration_controller.cc 92 const gfx::PointF& location = touch_event.location_f(); local
99 touch_locations_.insert(std::pair<int, gfx::PointF>(touch_id, location));
118 touch_locations_[*it] = location;
128 FindEdgesWithinBounds(touch_event.location(), kLeavingScreenEdge) !=
206 int edge = FindEdgesWithinBounds(event.location(), kLeavingScreenEdge);
210 int location = FindEdgesWithinBounds(event.location(), kSlopDistanceFromEdge); local
214 (BOTTOM_LEFT_CORNER == location) || (BOTTOM_RIGHT_CORNER == location);
223 initial_presses_[event.touch_id()] = event.location();
234 int location = FindEdgesWithinBounds(event.location(), kMaxDistanceFromEdge); local
511 gfx::PointF location = event.location_f(); local
757 gfx::Point location = local
824 gfx::Point location = gesture->location(); local
1065 const gfx::PointF& location = touch_event.location_f(); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
standard_management_policy_provider.cc 28 if (!extensions::Manifest::IsComponentLocation(extension->location()) &&
29 !extensions::Manifest::IsPolicyLocation(extension->location())) {
77 if (Manifest::IsComponentLocation(extension->location()))
88 if (!Manifest::IsPolicyLocation(extension->location()) &&
132 (extension->location() == extensions::Manifest::EXTERNAL_COMPONENT &&
140 (extension->location() == extensions::Manifest::EXTERNAL_COMPONENT &&

Completed in 1292 milliseconds

<<11121314151617181920>>