Home
last modified time | relevance | path

Searched refs:location (Results 1 – 25 of 2622) sorted by relevance

12345678910>>...105

/external/chromium_org/v8/test/mjsunit/
Ddebug-sourceinfo.js108 var location = script.locationFromPosition(p); variable
110 assertEquals(position + 1, location.position);
111 if (line == location.line) {
112 assertEquals(column + 1, location.column);
114 assertEquals(line + 1, location.line);
115 assertEquals(0, location.column);
118 assertEquals(0, location.position);
119 assertEquals(0, location.line);
120 assertEquals(0, location.column);
124 position = location.position;
[all …]
/external/v8/test/mjsunit/
Ddebug-sourceinfo.js108 var location = script.locationFromPosition(p); variable
110 assertEquals(position + 1, location.position);
111 if (line == location.line) {
112 assertEquals(column + 1, location.column);
114 assertEquals(line + 1, location.line);
115 assertEquals(0, location.column);
118 assertEquals(0, location.position);
119 assertEquals(0, location.line);
120 assertEquals(0, location.column);
124 position = location.position;
[all …]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/lang/
Dwpa_gui_de.ts7 <location filename="../addinterface.cpp" line="38"/>
12 <location filename="../addinterface.cpp" line="47"/>
17 <location filename="../addinterface.cpp" line="48"/>
22 <location filename="../addinterface.cpp" line="49"/>
27 <location filename="../addinterface.cpp" line="221"/>
32 <location filename="../addinterface.cpp" line="229"/>
37 <location filename="../addinterface.cpp" line="238"/>
45 <location filename="../wpagui.cpp" line="1621"/>
53 <location filename="../eventhistory.ui" line="13"/>
58 <location filename="../eventhistory.ui" line="48"/>
[all …]
/external/chromium_org/content/test/data/accessibility/
Diframe-coordinates-expected-win.txt1 ROLE_SYSTEM_DOCUMENT READONLY FOCUSABLE location=(0, 0) size=(800, 600)
2 IA2_ROLE_SECTION location=(0, 0) size=(300, 150)
3 ROLE_SYSTEM_PUSHBUTTON name='Button' FOCUSABLE location=(25, 25) size=(250, 50)
4 IA2_ROLE_SECTION location=(0, 150) size=(300, 150)
5 ROLE_SYSTEM_PUSHBUTTON name='Button' FOCUSABLE location=(25, 175) size=(250, 50)
6 IA2_ROLE_SECTION location=(0, 300) size=(300, 150)
7 ROLE_SYSTEM_CLIENT FOCUSABLE location=(0, 300) size=(300, 100)
8 IA2_ROLE_SCROLL_PANE location=(0, 0) size=(0, 0)
9 ROLE_SYSTEM_DOCUMENT READONLY FOCUSABLE location=(0, 300) size=(300, 100)
10 IA2_ROLE_SECTION location=(0, 300) size=(300, 100)
[all …]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DLocationTest.java3 import android.location.Location;
4 import android.location.LocationManager;
17 private Location location; field in LocationTest
21 location = new Location(LocationManager.GPS_PROVIDER); in setUp()
22 location.setTime(1); in setUp()
23 location.setLatitude(2); in setUp()
24 location.setLongitude(3); in setUp()
25 location.setAccuracy(4); in setUp()
26 location.setBearing(0.5f); in setUp()
27 location.setSpeed(5.5f); in setUp()
[all …]
/external/chromium_org/v8/test/cctest/
Dtest-global-handles.cc106 Object** g1_objects[] = { g1s1.location(), g1s2.location() }; in TEST()
107 Object** g2_objects[] = { g2s1.location(), g2s2.location() }; in TEST()
116 skippable_objects.Add(*g1s1.location()); in TEST()
117 skippable_objects.Add(*g1s2.location()); in TEST()
118 skippable_objects.Add(*g2s1.location()); in TEST()
119 skippable_objects.Add(*g2s2.location()); in TEST()
125 ASSERT(can_skip_called_objects.Contains(*g1s1.location())); in TEST()
126 ASSERT(can_skip_called_objects.Contains(*g1s2.location())); in TEST()
127 ASSERT(can_skip_called_objects.Contains(*g2s1.location())); in TEST()
128 ASSERT(can_skip_called_objects.Contains(*g2s2.location())); in TEST()
[all …]
/external/bison/examples/calc++/
Dlocation.hh49 class location class
54 location (const position& b, const position& e) in location() function in yy::location
61 explicit location (const position& p = position ()) in location() function in yy::location
68 explicit location (std::string* f, in location() function in yy::location
117 inline const location operator+ (const location& begin, const location& end) in operator +()
119 location res = begin; in operator +()
125 inline const location operator+ (const location& begin, unsigned int width) in operator +()
127 location res = begin; in operator +()
133 inline location& operator+= (location& res, unsigned int width) in operator +=()
141 operator== (const location& loc1, const location& loc2) in operator ==()
[all …]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
DLocationProviderFactory.java8 import android.location.Criteria;
9 import android.location.Location;
10 import android.location.LocationListener;
11 import android.location.LocationManager;
99 public void onLocationChanged(Location location) { in onLocationChanged() argument
104 updateNewLocation(location); in onLocationChanged()
108 private void updateNewLocation(Location location) { in updateNewLocation() argument
110 location.getLatitude(), location.getLongitude(), in updateNewLocation()
111 location.getTime() / 1000.0, in updateNewLocation()
112 location.hasAltitude(), location.getAltitude(), in updateNewLocation()
[all …]
/external/chromium_org/extensions/common/
Dmanifest.h74 static inline bool IsExternalLocation(Location location) { in IsExternalLocation() argument
75 return location == EXTERNAL_PREF || in IsExternalLocation()
76 location == EXTERNAL_REGISTRY || in IsExternalLocation()
77 location == EXTERNAL_PREF_DOWNLOAD || in IsExternalLocation()
78 location == EXTERNAL_POLICY || in IsExternalLocation()
79 location == EXTERNAL_POLICY_DOWNLOAD || in IsExternalLocation()
80 location == EXTERNAL_COMPONENT; in IsExternalLocation()
84 static inline bool IsUnpackedLocation(Location location) { in IsUnpackedLocation() argument
85 return location == UNPACKED || location == COMMAND_LINE; in IsUnpackedLocation()
89 static inline bool IsAutoUpdateableLocation(Location location) { in IsAutoUpdateableLocation() argument
[all …]
/external/mesa3d/src/mesa/main/
Duniforms.c131 _mesa_Uniform1fARB(GLint location, GLfloat v0) in _mesa_Uniform1fARB() argument
134 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, &v0, GL_FLOAT); in _mesa_Uniform1fARB()
138 _mesa_Uniform2fARB(GLint location, GLfloat v0, GLfloat v1) in _mesa_Uniform2fARB() argument
144 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC2); in _mesa_Uniform2fARB()
148 _mesa_Uniform3fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2) in _mesa_Uniform3fARB() argument
155 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC3); in _mesa_Uniform3fARB()
159 _mesa_Uniform4fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, in _mesa_Uniform4fARB() argument
168 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC4); in _mesa_Uniform4fARB()
172 _mesa_Uniform1iARB(GLint location, GLint v0) in _mesa_Uniform1iARB() argument
175 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, &v0, GL_INT); in _mesa_Uniform1iARB()
[all …]
Duniforms.h90 _mesa_Uniform1ui(GLint location, GLuint v0);
93 _mesa_Uniform2ui(GLint location, GLuint v0, GLuint v1);
96 _mesa_Uniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2);
99 _mesa_Uniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
102 _mesa_Uniform1uiv(GLint location, GLsizei count, const GLuint *value);
105 _mesa_Uniform2uiv(GLint location, GLsizei count, const GLuint *value);
108 _mesa_Uniform3uiv(GLint location, GLsizei count, const GLuint *value);
111 _mesa_Uniform4uiv(GLint location, GLsizei count, const GLuint *value);
124 _mesa_UniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose,
128 _mesa_UniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose,
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Duniforms.c131 _mesa_Uniform1fARB(GLint location, GLfloat v0) in _mesa_Uniform1fARB() argument
134 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, &v0, GL_FLOAT); in _mesa_Uniform1fARB()
138 _mesa_Uniform2fARB(GLint location, GLfloat v0, GLfloat v1) in _mesa_Uniform2fARB() argument
144 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC2); in _mesa_Uniform2fARB()
148 _mesa_Uniform3fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2) in _mesa_Uniform3fARB() argument
155 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC3); in _mesa_Uniform3fARB()
159 _mesa_Uniform4fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, in _mesa_Uniform4fARB() argument
168 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC4); in _mesa_Uniform4fARB()
172 _mesa_Uniform1iARB(GLint location, GLint v0) in _mesa_Uniform1iARB() argument
175 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, &v0, GL_INT); in _mesa_Uniform1iARB()
[all …]
Duniforms.h90 _mesa_Uniform1ui(GLint location, GLuint v0);
93 _mesa_Uniform2ui(GLint location, GLuint v0, GLuint v1);
96 _mesa_Uniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2);
99 _mesa_Uniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
102 _mesa_Uniform1uiv(GLint location, GLsizei count, const GLuint *value);
105 _mesa_Uniform2uiv(GLint location, GLsizei count, const GLuint *value);
108 _mesa_Uniform3uiv(GLint location, GLsizei count, const GLuint *value);
111 _mesa_Uniform4uiv(GLint location, GLsizei count, const GLuint *value);
124 _mesa_UniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose,
128 _mesa_UniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose,
[all …]
/external/stlport/test/unit/
Dsearch_test.cpp45 int* location; in search0() local
46 location = search((int*)v1, (int*)v1 + 6, (int*)v3, (int*)v3 + 2); in search0()
47 CPPUNIT_ASSERT(location == v1 + 6); in search0()
49 location = search((int*)v2, (int*)v2 + 6, (int*)v3, (int*)v3 + 2); in search0()
50 CPPUNIT_ASSERT(location != v2 + 6); in search0()
51 CPPUNIT_ASSERT(location - v2 == 3); in search0()
61 IntVec::iterator location; in search1() local
62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); in search1()
64 CPPUNIT_ASSERT(location == v1.end()); in search1()
68 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); in search1()
[all …]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
Dparser.cc255 const LocationRecorder* location) { in TryConsumeEndOfDeclaration() argument
264 if (location != NULL) { in TryConsumeEndOfDeclaration()
265 location->AttachComments(&leading, &trailing); in TryConsumeEndOfDeclaration()
274 const LocationRecorder* location) { in ConsumeEndOfDeclaration() argument
275 if (TryConsumeEndOfDeclaration(text, location)) { in ConsumeEndOfDeclaration()
354 DescriptorPool::ErrorCollector::ErrorLocation location) { in RecordLegacyLocation() argument
357 descriptor, location, location_->span(0), location_->span(1)); in RecordLegacyLocation()
490 LocationRecorder location(root_location, in ParseTopLevelStatement() local
492 return ParseMessageDefinition(file->add_message_type(), location); in ParseTopLevelStatement()
494 LocationRecorder location(root_location, in ParseTopLevelStatement() local
[all …]
/external/chromium_org/sync/api/
Dsync_error_unittest.cc26 tracked_objects::Location location = FROM_HERE; in TEST_F() local
29 SyncError error(location, SyncError::DATATYPE_ERROR, msg, type); in TEST_F()
31 EXPECT_EQ(location.line_number(), error.location().line_number()); in TEST_F()
37 tracked_objects::Location location = FROM_HERE; in TEST_F() local
44 error.Reset(location, msg, type); in TEST_F()
46 EXPECT_EQ(location.line_number(), error.location().line_number()); in TEST_F()
55 EXPECT_EQ(location2.line_number(), error.location().line_number()); in TEST_F()
61 tracked_objects::Location location = FROM_HERE; in TEST_F() local
70 error1.Reset(location, msg, type); in TEST_F()
72 EXPECT_EQ(location.line_number(), error1.location().line_number()); in TEST_F()
[all …]
/external/doclava/src/com/google/doclava/parser/
DJavaParser.java471 dbg.location(293, 1); in compilationUnit()
480 dbg.location(298,9); in compilationUnit()
502 dbg.location(298,13); in compilationUnit()
521 dbg.location(298,14); in compilationUnit()
534 dbg.location(300,13); in compilationUnit()
547 dbg.location(302,9); in compilationUnit()
571 dbg.location(302,10); in compilationUnit()
587 dbg.location(304,9); in compilationUnit()
611 dbg.location(304,10); in compilationUnit()
638 dbg.location(306, 5); in compilationUnit()
[all …]
/external/chromium_org/chrome/browser/bookmarks/
Dbookmark_stats.cc12 BookmarkLaunchLocation location) { in RecordBookmarkLaunch() argument
13 if (location == BOOKMARK_LAUNCH_LOCATION_DETACHED_BAR || in RecordBookmarkLaunch()
14 location == BOOKMARK_LAUNCH_LOCATION_ATTACHED_BAR) { in RecordBookmarkLaunch()
19 "Bookmarks.LaunchLocation", location, BOOKMARK_LAUNCH_LOCATION_LIMIT); in RecordBookmarkLaunch()
35 void RecordBookmarkFolderOpen(BookmarkLaunchLocation location) { in RecordBookmarkFolderOpen() argument
36 if (location == BOOKMARK_LAUNCH_LOCATION_DETACHED_BAR || in RecordBookmarkFolderOpen()
37 location == BOOKMARK_LAUNCH_LOCATION_ATTACHED_BAR) { in RecordBookmarkFolderOpen()
43 void RecordBookmarkAppsPageOpen(BookmarkLaunchLocation location) { in RecordBookmarkAppsPageOpen() argument
44 if (location == BOOKMARK_LAUNCH_LOCATION_DETACHED_BAR || in RecordBookmarkAppsPageOpen()
45 location == BOOKMARK_LAUNCH_LOCATION_ATTACHED_BAR) { in RecordBookmarkAppsPageOpen()
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
Drewrite.rb90 return "(%s @ %p : %p)" % [ name, location, text ]
107 alias index location
108 alias index= location=
112 token = stream[ location ]
114 return location + 1
131 def initialize( stream, location, text ) argument
133 self.location = location
136 def location=( val )
147 return( location.end + 1 )
151 location.first
[all …]
/external/bison/src/
Dsymtab.h61 location location; member
72 location type_location;
90 location prec_location;
119 symbol *symbol_from_uniqstr (const uniqstr key, location loc);
122 symbol *symbol_get (const char *key, location loc);
127 symbol *dummy_symbol_get (location loc);
136 void symbol_make_alias (symbol *sym, symbol *str, location loc);
141 void symbol_type_set (symbol *sym, uniqstr type_name, location loc);
161 void symbol_precedence_set (symbol *sym, int prec, assoc a, location loc);
164 void symbol_class_set (symbol *sym, symbol_class class, location loc,
[all …]
Dreader.h35 location type_declaration_location;
45 void grammar_start_symbol_set (symbol *sym, location loc);
46 void grammar_current_rule_begin (symbol *lhs, location loc,
48 void grammar_current_rule_end (location loc);
50 void grammar_current_rule_prec_set (symbol *precsym, location loc);
51 void grammar_current_rule_dprec_set (int dprec, location loc);
52 void grammar_current_rule_merge_set (uniqstr name, location loc);
53 void grammar_current_rule_symbol_append (symbol *sym, location loc,
55 void grammar_current_rule_action_append (const char *action, location loc,
Dsymlist.h51 location location; member
54 location sym_loc;
75 location merger_declaration_location;
86 symbol_list *symbol_list_sym_new (symbol *sym, location loc);
89 symbol_list *symbol_list_type_new (uniqstr type_name, location loc);
92 symbol_list *symbol_list_default_tagged_new (location loc);
94 symbol_list *symbol_list_default_tagless_new (location loc);
116 uniqstr symbol_list_n_type_name_get (symbol_list *l, location loc, int n);
/external/clang/tools/libclang/
DCXSourceLocation.cpp201 int clang_Location_isInSystemHeader(CXSourceLocation location) { in clang_Location_isInSystemHeader() argument
203 SourceLocation::getFromRawEncoding(location.int_data); in clang_Location_isInSystemHeader()
208 *static_cast<const SourceManager*>(location.ptr_data[0]); in clang_Location_isInSystemHeader()
212 void clang_getExpansionLocation(CXSourceLocation location, in clang_getExpansionLocation() argument
218 if (!isASTUnitSourceLocation(location)) { in clang_getExpansionLocation()
219 CXLoadedDiagnostic::decodeLocation(location, file, line, column, offset); in clang_getExpansionLocation()
223 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_getExpansionLocation()
225 if (!location.ptr_data[0] || Loc.isInvalid()) { in clang_getExpansionLocation()
231 *static_cast<const SourceManager*>(location.ptr_data[0]); in clang_getExpansionLocation()
254 void clang_getPresumedLocation(CXSourceLocation location, in clang_getPresumedLocation() argument
[all …]
/external/chromium_org/base/
Dtracked_objects_unittest.cc46 void TallyABirth(const Location& location, const std::string& thread_name) { in TallyABirth() argument
53 Births* birth = ThreadData::TallyABirthIfActive(location); in TallyABirth()
71 EXPECT_EQ(kFile, process_data.tasks[0].birth.location.file_name); in ExpectSimpleProcessData()
73 process_data.tasks[0].birth.location.function_name); in ExpectSimpleProcessData()
74 EXPECT_EQ(kLineNumber, process_data.tasks[0].birth.location.line_number); in ExpectSimpleProcessData()
144 Location location(kFunction, kFile, kLineNumber, NULL); in TEST_F() local
145 Births* first_birth = ThreadData::TallyABirthIfActive(location); in TEST_F()
167 base::TrackingInfo pending_task(location, kBogusBirthTime); in TEST_F()
198 EXPECT_EQ(kFile, process_data.tasks[0].birth.location.file_name); in TEST_F()
199 EXPECT_EQ(kFunction, process_data.tasks[0].birth.location.function_name); in TEST_F()
[all …]
/external/bison/data/
Dlocation.cc153 b4_output_begin([b4_dir_prefix[]location.hh])
162 ]b4_cpp_guard_open([b4_dir_prefix[]location.hh])[
169 class location
174 location (const position& b, const position& e)
181 explicit location (const position& p = position ())
188 explicit location (]b4_percent_define_get([[filename_type]])[* f,
237 inline const location operator+ (const location& begin, const location& end)
239 location res = begin;
245 inline const location operator+ (const location& begin, unsigned int width)
247 location res = begin;
[all …]

12345678910>>...105