Searched refs:location (Results 76 - 100 of 2162) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/angle/src/compiler/
H A DInfoSink.cpp34 void TInfoSinkBase::location(int file, int line) { function in class:TInfoSinkBase
45 void TInfoSinkBase::location(const TSourceLoc& loc) { function in class:TInfoSinkBase
46 location(loc.first_file, loc.first_line);
51 location(loc);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DPluginFlyoutPreferences.java47 public void initializeDefaults(int location, int state, int width) { argument
48 m_store.setDefault(m_dockLocationKey, location);
70 public void setDockLocation(int location) { argument
71 m_store.setValue(m_dockLocationKey, location);
H A DMemoryFlyoutPreferences.java52 public void setDockLocation(int location) { argument
53 m_dockLocation = location;
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DHeightMapGrid.java19 public HeightMap getHeightMapAt(Vector3f location); argument
/external/chromium/net/url_request/
H A Durl_request_redirect_job.cc24 bool URLRequestRedirectJob::IsRedirectResponse(GURL* location, argument
26 *location = redirect_destination_;
/external/chromium_org/base/test/
H A Dtest_pending_task.h9 #include "base/location.h"
21 TestPendingTask(const tracked_objects::Location& location,
49 tracked_objects::Location location; member in struct:base::TestPendingTask
/external/chromium_org/chrome/common/media_galleries/
H A Ditunes_library.h21 Track(uint64 id, const base::FilePath& location);
25 base::FilePath location; member in struct:itunes::parser::Track
/external/chromium_org/chrome/common/
H A Dspellcheck_result.h33 : decoration(d), location(loc), length(len), replacement(rep), hash(h) {
37 int location; member in struct:SpellCheckResult
/external/chromium_org/ppapi/cpp/dev/
H A Dwidget_dev.h30 bool GetLocation(Rect* location);
31 void SetLocation(const Rect& location);
H A Dwidget_dev.cc57 bool Widget_Dev::GetLocation(Rect* location) { argument
60 pp_resource(), &location->pp_rect()));
63 pp_resource(), &location->pp_rect()));
68 void Widget_Dev::SetLocation(const Rect& location) { argument
71 &location.pp_rect());
74 &location.pp_rect());
/external/chromium_org/ppapi/thunk/
H A Dppb_widget_api.h19 virtual PP_Bool GetLocation(PP_Rect* location) = 0;
20 virtual void SetLocation(const PP_Rect* location) = 0;
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/shapes/infos/
H A DChildCollisionShape.java20 public Vector3f location; field in class:ChildCollisionShape
27 public ChildCollisionShape(Vector3f location, Matrix3f rotation, CollisionShape shape) { argument
28 this.location = location;
35 capsule.write(location, "location", new Vector3f());
42 location = (Vector3f) capsule.readSavable("location", new Vector3f());
/external/chromium_org/sync/api/
H A Dsync_error_unittest.cc9 #include "base/location.h"
26 tracked_objects::Location location = FROM_HERE; local
29 SyncError error(location, SyncError::DATATYPE_ERROR, msg, type);
31 EXPECT_EQ(location.line_number(), error.location().line_number());
37 tracked_objects::Location location = FROM_HERE; local
44 error.Reset(location, msg, type);
46 EXPECT_EQ(location.line_number(), error.location().line_number());
55 EXPECT_EQ(location2.line_number(), error.location()
61 tracked_objects::Location location = FROM_HERE; local
89 tracked_objects::Location location = FROM_HERE; local
116 tracked_objects::Location location = FROM_HERE; local
[all...]
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dform_field_error.cc39 FormFieldError::Location LocationFromString(const std::string& location) { argument
40 if (LowerCaseEqualsASCII(location, "unknown_location"))
42 if (LowerCaseEqualsASCII(location, "payment_instrument"))
44 if (LowerCaseEqualsASCII(location, "shipping_address"))
46 if (LowerCaseEqualsASCII(location, "legal_address"))
53 FormFieldError::FormFieldError(ErrorType error_type, Location location) argument
55 location_(location) {}
142 std::string location; local
143 if (dictionary.GetString("location", &location))
[all...]
/external/chromium_org/third_party/angle/tests/preprocessor_tests/
H A Dtoken_test.cpp16 EXPECT_EQ(0, token.location.line);
17 EXPECT_EQ(0, token.location.file);
26 token.location.line = 1;
27 token.location.file = 1;
33 EXPECT_EQ(0, token.location.line);
34 EXPECT_EQ(0, token.location.file);
51 token.location.line = 1;
53 token.location.line = 0;
55 token.location.file = 1;
57 token.location
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_diagnostics.py10 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
[all...]
/external/clang/tools/libclang/
H A DCXSourceLocation.cpp33 // pointer, or the CXSourceLocation is a null location.
201 int clang_Location_isInSystemHeader(CXSourceLocation location) { argument
203 SourceLocation::getFromRawEncoding(location.int_data);
208 *static_cast<const SourceManager*>(location.ptr_data[0]);
212 void clang_getExpansionLocation(CXSourceLocation location, argument
218 if (!isASTUnitSourceLocation(location)) {
219 CXLoadedDiagnostic::decodeLocation(location, file, line, column, offset);
223 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data);
225 if (!location.ptr_data[0] || Loc.isInvalid()) {
231 *static_cast<const SourceManager*>(location
254 clang_getPresumedLocation(CXSourceLocation location, CXString *filename, unsigned *line, unsigned *column) argument
284 clang_getInstantiationLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
293 clang_getSpellingLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
331 clang_getFileLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Duniforms.c131 _mesa_Uniform1fARB(GLint location, GLfloat v0) argument
134 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, &v0, GL_FLOAT);
138 _mesa_Uniform2fARB(GLint location, GLfloat v0, GLfloat v1) argument
144 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC2);
148 _mesa_Uniform3fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2) argument
155 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC3);
159 _mesa_Uniform4fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, argument
168 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC4);
172 _mesa_Uniform1iARB(GLint location, GLint v0) argument
175 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location,
179 _mesa_Uniform2iARB(GLint location, GLint v0, GLint v1) argument
189 _mesa_Uniform3iARB(GLint location, GLint v0, GLint v1, GLint v2) argument
200 _mesa_Uniform4iARB(GLint location, GLint v0, GLint v1, GLint v2, GLint v3) argument
212 _mesa_Uniform1fvARB(GLint location, GLsizei count, const GLfloat * value) argument
219 _mesa_Uniform2fvARB(GLint location, GLsizei count, const GLfloat * value) argument
226 _mesa_Uniform3fvARB(GLint location, GLsizei count, const GLfloat * value) argument
233 _mesa_Uniform4fvARB(GLint location, GLsizei count, const GLfloat * value) argument
240 _mesa_Uniform1ivARB(GLint location, GLsizei count, const GLint * value) argument
247 _mesa_Uniform2ivARB(GLint location, GLsizei count, const GLint * value) argument
254 _mesa_Uniform3ivARB(GLint location, GLsizei count, const GLint * value) argument
261 _mesa_Uniform4ivARB(GLint location, GLsizei count, const GLint * value) argument
270 _mesa_Uniform1ui(GLint location, GLuint v0) argument
277 _mesa_Uniform2ui(GLint location, GLuint v0, GLuint v1) argument
287 _mesa_Uniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2) argument
298 _mesa_Uniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3) argument
310 _mesa_Uniform1uiv(GLint location, GLsizei count, const GLuint *value) argument
317 _mesa_Uniform2uiv(GLint location, GLsizei count, const GLuint *value) argument
324 _mesa_Uniform3uiv(GLint location, GLsizei count, const GLuint *value) argument
331 _mesa_Uniform4uiv(GLint location, GLsizei count, const GLuint *value) argument
340 _mesa_UniformMatrix2fvARB(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value) argument
349 _mesa_UniformMatrix3fvARB(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value) argument
358 _mesa_UniformMatrix4fvARB(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value) argument
371 _mesa_UniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
380 _mesa_UniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
389 _mesa_UniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
398 _mesa_UniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
407 _mesa_UniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
416 _mesa_UniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
426 _mesa_GetnUniformfvARB(GLhandleARB program, GLint location, GLsizei bufSize, GLfloat *params) argument
434 _mesa_GetUniformfvARB(GLhandleARB program, GLint location, GLfloat *params) argument
441 _mesa_GetnUniformivARB(GLhandleARB program, GLint location, GLsizei bufSize, GLint *params) argument
449 _mesa_GetUniformivARB(GLhandleARB program, GLint location, GLint *params) argument
457 _mesa_GetnUniformuivARB(GLhandleARB program, GLint location, GLsizei bufSize, GLuint *params) argument
465 _mesa_GetUniformuiv(GLhandleARB program, GLint location, GLuint *params) argument
473 _mesa_GetnUniformdvARB(GLhandleARB program, GLint location, GLsizei bufSize, GLdouble *params) argument
491 _mesa_GetUniformdv(GLhandleARB program, GLint location, GLdouble *params) argument
[all...]
H A 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, GLsize
293 _mesa_uniform_split_location_offset(GLint location, unsigned *base_location, unsigned *offset) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Duniforms.c131 _mesa_Uniform1fARB(GLint location, GLfloat v0) argument
134 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, &v0, GL_FLOAT);
138 _mesa_Uniform2fARB(GLint location, GLfloat v0, GLfloat v1) argument
144 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC2);
148 _mesa_Uniform3fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2) argument
155 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC3);
159 _mesa_Uniform4fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, argument
168 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC4);
172 _mesa_Uniform1iARB(GLint location, GLint v0) argument
175 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location,
179 _mesa_Uniform2iARB(GLint location, GLint v0, GLint v1) argument
189 _mesa_Uniform3iARB(GLint location, GLint v0, GLint v1, GLint v2) argument
200 _mesa_Uniform4iARB(GLint location, GLint v0, GLint v1, GLint v2, GLint v3) argument
212 _mesa_Uniform1fvARB(GLint location, GLsizei count, const GLfloat * value) argument
219 _mesa_Uniform2fvARB(GLint location, GLsizei count, const GLfloat * value) argument
226 _mesa_Uniform3fvARB(GLint location, GLsizei count, const GLfloat * value) argument
233 _mesa_Uniform4fvARB(GLint location, GLsizei count, const GLfloat * value) argument
240 _mesa_Uniform1ivARB(GLint location, GLsizei count, const GLint * value) argument
247 _mesa_Uniform2ivARB(GLint location, GLsizei count, const GLint * value) argument
254 _mesa_Uniform3ivARB(GLint location, GLsizei count, const GLint * value) argument
261 _mesa_Uniform4ivARB(GLint location, GLsizei count, const GLint * value) argument
270 _mesa_Uniform1ui(GLint location, GLuint v0) argument
277 _mesa_Uniform2ui(GLint location, GLuint v0, GLuint v1) argument
287 _mesa_Uniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2) argument
298 _mesa_Uniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3) argument
310 _mesa_Uniform1uiv(GLint location, GLsizei count, const GLuint *value) argument
317 _mesa_Uniform2uiv(GLint location, GLsizei count, const GLuint *value) argument
324 _mesa_Uniform3uiv(GLint location, GLsizei count, const GLuint *value) argument
331 _mesa_Uniform4uiv(GLint location, GLsizei count, const GLuint *value) argument
340 _mesa_UniformMatrix2fvARB(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value) argument
349 _mesa_UniformMatrix3fvARB(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value) argument
358 _mesa_UniformMatrix4fvARB(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value) argument
371 _mesa_UniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
380 _mesa_UniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
389 _mesa_UniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
398 _mesa_UniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
407 _mesa_UniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
416 _mesa_UniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
426 _mesa_GetnUniformfvARB(GLhandleARB program, GLint location, GLsizei bufSize, GLfloat *params) argument
434 _mesa_GetUniformfvARB(GLhandleARB program, GLint location, GLfloat *params) argument
441 _mesa_GetnUniformivARB(GLhandleARB program, GLint location, GLsizei bufSize, GLint *params) argument
449 _mesa_GetUniformivARB(GLhandleARB program, GLint location, GLint *params) argument
457 _mesa_GetnUniformuivARB(GLhandleARB program, GLint location, GLsizei bufSize, GLuint *params) argument
465 _mesa_GetUniformuiv(GLhandleARB program, GLint location, GLuint *params) argument
473 _mesa_GetnUniformdvARB(GLhandleARB program, GLint location, GLsizei bufSize, GLdouble *params) argument
491 _mesa_GetUniformdv(GLhandleARB program, GLint location, GLdouble *params) argument
[all...]
H A 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, GLsize
293 _mesa_uniform_split_location_offset(GLint location, unsigned *base_location, unsigned *offset) argument
[all...]
/external/stlport/test/unit/
H A Dadj_test.cpp46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5); local
47 CPPUNIT_ASSERT(location == numbers1 + 5); // no adj so loc should be _last
49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5);
50 CPPUNIT_ASSERT(location != numbers2 + 5); // adj location off should be 3 (first 1)
51 CPPUNIT_ASSERT((location - numbers2)==3);
59 IntVector::iterator location; local
60 location = adjacent_find(v.begin(), v.end());
61 CPPUNIT_ASSERT(location == v.end());
63 location
76 CStrVector::iterator location; local
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dppb_widget_impl.cc52 PP_Bool PPB_Widget_Impl::GetLocation(PP_Rect* location) { argument
53 *location = location_;
57 void PPB_Widget_Impl::SetLocation(const PP_Rect* location) { argument
58 location_ = *location;
59 SetLocationInternal(location);
/external/emma/ant/ant14/com/vladium/emma/data/
H A DmergeTask.java40 + ": no valid input data files have been specified", location).fillInStackTrace ();
59 + ": merge data file attribute already set", location).fillInStackTrace ();
68 + ": merge data file attribute already set", location).fillInStackTrace ();
77 + ": merge data file attribute already set", location).fillInStackTrace ();
86 + ": merge data file attribute already set", location).fillInStackTrace ();
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dparser.cc255 const LocationRecorder* location) {
264 if (location != NULL) {
265 location->AttachComments(&leading, &trailing);
274 const LocationRecorder* location) {
275 if (TryConsumeEndOfDeclaration(text, location)) {
354 DescriptorPool::ErrorCollector::ErrorLocation location) {
357 descriptor, location, location_->span(0), location_->span(1));
490 LocationRecorder location(root_location,
492 return ParseMessageDefinition(file->add_message_type(), location);
494 LocationRecorder location(root_locatio
254 TryConsumeEndOfDeclaration(const char* text, const LocationRecorder* location) argument
273 ConsumeEndOfDeclaration(const char* text, const LocationRecorder* location) argument
353 RecordLegacyLocation(const Message* descriptor, DescriptorPool::ErrorCollector::ErrorLocation location) argument
1581 Find( const Message* descriptor, DescriptorPool::ErrorCollector::ErrorLocation location, int* line, int* column) const argument
1598 Add( const Message* descriptor, DescriptorPool::ErrorCollector::ErrorLocation location, int line, int column) argument
[all...]

Completed in 775 milliseconds

1234567891011>>