Searched refs:location (Results 251 - 275 of 2162) sorted by relevance

<<11121314151617181920>>

/external/v8/src/
H A Dglobal-handles.cc56 // Maps handle location (slot) to the containing node.
57 static Node* FromLocation(Object** location) { argument
59 return reinterpret_cast<Node*>(location);
114 Object** location() { return &object_; } function in class:v8::internal::GlobalHandles::Node
115 Handle<Object> handle() { return Handle<Object>(location()); }
426 void GlobalHandles::Destroy(Object** location) {
429 if (location == NULL) return;
430 Node::FromLocation(location)->Release(this);
434 void GlobalHandles::MakeWeak(Object** location, void* parameter,
437 Node::FromLocation(location)
[all...]
H A Dglobal-handles.h121 void Destroy(Object** location);
129 void MakeWeak(Object** location,
133 static void SetWrapperClassId(Object** location, uint16_t class_id);
152 void ClearWeakness(Object** location);
155 void MarkIndependent(Object** location);
158 static bool IsNearDeath(Object** location);
161 static bool IsWeak(Object** location);
/external/v8/test/cctest/
H A Dtest-mark-compact.cc324 global_handles->MakeWeak(g1s1.location(),
327 global_handles->MakeWeak(g1s2.location(),
330 global_handles->MakeWeak(g1c1.location(),
340 global_handles->MakeWeak(g2s1.location(),
343 global_handles->MakeWeak(g2s2.location(),
346 global_handles->MakeWeak(g2c1.location(),
357 Object** g1_objects[] = { g1s1.location(), g1s2.location() };
358 Object** g1_children[] = { g1c1.location() };
359 Object** g2_objects[] = { g2s1.location(), g2s
[all...]
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_popup_view_gtk_unittest.cc69 RunInfo RunInfoForAttrType(guint location, argument
93 if (attr->end_index <= location)
97 // the length to the next start - location.
99 // If the start is still less than the location, then reset
102 if (attr->start_index <= location) {
105 retval.length_ = attr->start_index - location;
119 retval.length_ = end_location - location;
122 retval.length_ = attr->end_index - location;
131 guint RunLengthForAttrType(guint location, argument
134 RunInfo info = RunInfoForAttrType(location,
140 RunHasAttribute(guint location, guint end_location, PangoAttribute* attribute) argument
150 RunHasColor(guint location, guint end_location, const GdkColor& color) argument
167 RunHasWeight(guint location, guint end_location, PangoWeight weight) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLNoOpInterface.h192 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1f(GrGLint location, GrGLfloat v0);
194 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1i(GrGLint location, GrGLint v0);
196 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1fv(GrGLint location,
200 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1iv(GrGLint location,
204 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2f(GrGLint location,
208 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2i(GrGLint location, GrGLint v0, GrGLint v1);
210 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2fv(GrGLint location,
214 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2iv(GrGLint location,
218 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform3f(GrGLint location,
223 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform3i(GrGLint location,
[all...]
/external/skia/src/gpu/gl/
H A DGrGLNoOpInterface.h192 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1f(GrGLint location, GrGLfloat v0);
194 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1i(GrGLint location, GrGLint v0);
196 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1fv(GrGLint location,
200 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1iv(GrGLint location,
204 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2f(GrGLint location,
208 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2i(GrGLint location, GrGLint v0, GrGLint v1);
210 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2fv(GrGLint location,
214 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2iv(GrGLint location,
218 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform3f(GrGLint location,
223 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform3i(GrGLint location,
[all...]
/external/qemu/android/skin/
H A Dfile.c288 SkinLocation* location; local
291 dprint( "### WARNING: ignoring part location without 'name' element" );
300 dprint( "### WARNING: ignoring part location with unknown name '%s'", partname );
304 ANEW0(location);
305 location->part = part;
306 location->anchor.x = x;
307 location->anchor.y = y;
308 location->rotation = rot;
310 return location;
537 SkinLocation* location local
568 SkinLocation* location; local
[all...]
/external/chromium_org/v8/src/
H A Dpreparser.cc76 int end_pos = scanner()->location().end_pos;
107 Scanner::Location source_location = scanner()->location();
267 Scanner::Location end_location = scanner()->location();
297 Scanner::Location location = scanner()->location(); local
309 ReportMessageAt(location, type, NULL);
393 Scanner::Location location = scanner()->peek_location(); local
394 ReportMessageAt(location, "strict_const", NULL);
401 Scanner::Location location = scanner()->peek_location(); local
402 ReportMessageAt(location
418 Scanner::Location location = scanner()->peek_location(); local
427 Scanner::Location location = scanner()->peek_location(); local
574 Scanner::Location location = scanner()->location(); local
1496 Scanner::Location location = scanner()->location(); local
1512 Scanner::Location location = scanner()->location(); local
1527 SetStrictModeViolation(Scanner::Location location, const char* type, bool* ok) argument
1551 Scanner::Location location = strict_mode_violation_location_; local
1560 StrictModeIdentifierViolation(Scanner::Location location, const char* eval_args_type, Identifier identifier, bool* ok) argument
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpage_heap.cc79 ASSERT(ll->next->location == Span::ON_NORMAL_FREELIST);
85 ASSERT(ll->next->location == Span::ON_RETURNED_FREELIST);
123 ASSERT(best->location == Span::ON_NORMAL_FREELIST);
137 ASSERT(best->location == Span::ON_RETURNED_FREELIST);
148 ASSERT(span->location == Span::IN_USE);
154 ASSERT(leftover->location == Span::IN_USE);
165 ASSERT(span->location != Span::IN_USE);
166 const int old_location = span->location;
168 span->location = Span::IN_USE;
175 leftover->location
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.console_1.0.200.v20100601.jar ... .framework.console.CommandInterpreter interpreter String profileId String location String flavor String environments java.util.Map props ...
/external/chromium/chrome/browser/
H A Denumerate_modules_model_win.cc56 if (a.location == b.location)
59 return a.location < b.location;
75 return (module.location == module_in.location) &&
110 // NOTE: Please keep this list sorted by dll name, then location.
148 // hblitesahook.dll. Each report has different version number in location.
194 // location, since it is installed into and run from a game folder. Various
196 // npggnt.des, no fixed location
601 string16 location = entry->location; local
952 GenerateHash(WideToUTF8(module.location), &location); local
[all...]
/external/chromium_org/chrome/browser/
H A Denumerate_modules_model_win.cc64 if (a.location == b.location)
67 return a.location < b.location;
83 return (module.location == module_in.location) &&
119 // NOTE: Please keep this list sorted by dll name, then location.
180 // hblitesahook.dll. Each report has different version number in location.
226 // location, since it is installed into and run from a game folder. Various
228 // npggnt.des, no fixed location
661 base::string16 location = entry->location; local
1060 GenerateHash(WideToUTF8(module.location), &location); local
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
H A Dview.js86 View.prototype.handleTouchChange_ = function(location) {
88 if (!this.isInButton_(previous, location)) {
89 this.touched = this.findButtonContaining_(location);
100 View.prototype.findButtonContaining_ = function(location) {
102 for (var i = 0; location && i < this.buttons.length && !found; ++i) {
103 if (this.isInButton_(this.buttons[i], location))
110 View.prototype.isInButton_ = function(button, location) {
111 var bounds = location && button && button.getClientRects()[0];
112 var x = bounds && location.clientX;
113 var y = bounds && location
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Duniform_query.cpp157 GLint location, GLsizei count,
168 if (location == -1) {
173 * linked successfully, or if location is not a valid location for
179 * "If the value of location is -1, the Uniform* commands will
183 * Allowing -1 for the location parameter of glUniform allows
188 * sensible to do for a location of -1.
193 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(location=%d)",
194 caller, location);
218 * - if no variable with a location o
155 validate_uniform_parameters(struct gl_context *ctx, struct gl_shader_program *shProg, GLint location, GLsizei count, unsigned *loc, unsigned *array_index, const char *caller, bool negative_one_is_not_valid) argument
263 _mesa_get_uniform(struct gl_context *ctx, GLuint program, GLint location, GLsizei bufSize, enum glsl_base_type returnType, GLvoid *paramsOut) argument
385 log_uniform(const void *values, enum glsl_base_type basicType, unsigned rows, unsigned cols, unsigned count, bool transpose, const struct gl_shader_program *shProg, GLint location, const struct gl_uniform_storage *uni) argument
576 _mesa_uniform(struct gl_context *ctx, struct gl_shader_program *shProg, GLint location, GLsizei count, const GLvoid *values, GLenum type) argument
828 _mesa_uniform_matrix(struct gl_context *ctx, struct gl_shader_program *shProg, GLuint cols, GLuint rows, GLint location, GLsizei count, GLboolean transpose, const GLfloat *values) argument
1011 unsigned location = 0; local
[all...]
/external/mesa3d/src/mesa/main/
H A Duniform_query.cpp157 GLint location, GLsizei count,
168 if (location == -1) {
173 * linked successfully, or if location is not a valid location for
179 * "If the value of location is -1, the Uniform* commands will
183 * Allowing -1 for the location parameter of glUniform allows
188 * sensible to do for a location of -1.
193 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(location=%d)",
194 caller, location);
218 * - if no variable with a location o
155 validate_uniform_parameters(struct gl_context *ctx, struct gl_shader_program *shProg, GLint location, GLsizei count, unsigned *loc, unsigned *array_index, const char *caller, bool negative_one_is_not_valid) argument
263 _mesa_get_uniform(struct gl_context *ctx, GLuint program, GLint location, GLsizei bufSize, enum glsl_base_type returnType, GLvoid *paramsOut) argument
385 log_uniform(const void *values, enum glsl_base_type basicType, unsigned rows, unsigned cols, unsigned count, bool transpose, const struct gl_shader_program *shProg, GLint location, const struct gl_uniform_storage *uni) argument
576 _mesa_uniform(struct gl_context *ctx, struct gl_shader_program *shProg, GLint location, GLsizei count, const GLvoid *values, GLenum type) argument
828 _mesa_uniform_matrix(struct gl_context *ctx, struct gl_shader_program *shProg, GLuint cols, GLuint rows, GLint location, GLsizei count, GLboolean transpose, const GLfloat *values) argument
1011 unsigned location = 0; local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkTLList.h18 const typename SkTLList<T>::Iter& location);
25 SkNEW_INSERT_IN_LLIST_BEFORE(list, location, type_name, args)
26 SkNEW_INSERT_IN_LLIST_AFTER(list, location, type_name, args)
27 where list is a SkTLList<type_name>*, location is an iterator, and args is the paren-surrounded
87 /** Adds a new element to the list before the location indicated by the iterator. If the
88 iterator refers to a NULL location then the new element is added at the tail */
89 T* addBefore(const T& t, const Iter& location) { argument
90 return SkNEW_PLACEMENT_ARGS(this->internalAddBefore(location), T, (t));
93 /** Adds a new element to the list after the location indicated by the iterator. If the
94 iterator refers to a NULL location the
95 addAfter(const T& t, const Iter& location) argument
326 internalAddBefore(Iter location) argument
334 internalAddAfter(Iter location) argument
351 operator new(size_t, SkTLList<T>* list, typename SkTLList<T>::Placement placement, const typename SkTLList<T>::Iter& location) argument
[all...]
/external/skia/src/core/
H A DSkTLList.h18 const typename SkTLList<T>::Iter& location);
25 SkNEW_INSERT_IN_LLIST_BEFORE(list, location, type_name, args)
26 SkNEW_INSERT_IN_LLIST_AFTER(list, location, type_name, args)
27 where list is a SkTLList<type_name>*, location is an iterator, and args is the paren-surrounded
87 /** Adds a new element to the list before the location indicated by the iterator. If the
88 iterator refers to a NULL location then the new element is added at the tail */
89 T* addBefore(const T& t, const Iter& location) { argument
90 return SkNEW_PLACEMENT_ARGS(this->internalAddBefore(location), T, (t));
93 /** Adds a new element to the list after the location indicated by the iterator. If the
94 iterator refers to a NULL location the
95 addAfter(const T& t, const Iter& location) argument
326 internalAddBefore(Iter location) argument
334 internalAddAfter(Iter location) argument
351 operator new(size_t, SkTLList<T>* list, typename SkTLList<T>::Placement placement, const typename SkTLList<T>::Iter& location) argument
[all...]
/external/chromium/base/
H A Dtracked_objects.cc73 BirthOnThread::BirthOnThread(const Location& location) argument
74 : location_(location),
78 Births::Births(const Location& location) argument
79 : BirthOnThread(location),
269 Births* ThreadData::TallyABirth(const Location& location) { argument
279 BirthMap::iterator it = birth_map_.find(location);
285 Births* tracker = new Births(location);
289 birth_map_[location] = tracker;
566 birth_->location().Write(true, true, output);
670 AddBirthPlace(birth.location());
674 AddBirthPlace(const Location& location) argument
[all...]
/external/chromium_org/ui/gl/
H A Dgl_bindings_skia_in_process.cc452 GLvoid StubGLUniform1f(GLint location, GLfloat v) { argument
453 glUniform1i(location, v);
456 GLvoid StubGLUniform1i(GLint location, GLint v) { argument
457 glUniform1i(location, v);
460 GLvoid StubGLUniform1fv(GLint location, GLsizei count, const GLfloat* v) { argument
461 glUniform1fv(location, count, v);
464 GLvoid StubGLUniform1iv(GLint location, GLsizei count, const GLint* v) { argument
465 glUniform1iv(location, count, v);
468 GLvoid StubGLUniform2f(GLint location, GLfloat v0, GLfloat v1) { argument
469 glUniform2i(location, v
472 StubGLUniform2i(GLint location, GLint v0, GLint v1) argument
476 StubGLUniform2fv(GLint location, GLsizei count, const GLfloat* v) argument
480 StubGLUniform2iv(GLint location, GLsizei count, const GLint* v) argument
484 StubGLUniform3f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2) argument
488 StubGLUniform3i(GLint location, GLint v0, GLint v1, GLint v2) argument
492 StubGLUniform3fv(GLint location, GLsizei count, const GLfloat* v) argument
496 StubGLUniform3iv(GLint location, GLsizei count, const GLint* v) argument
500 StubGLUniform4f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3) argument
505 StubGLUniform4i(GLint location, GLint v0, GLint v1, GLint v2, GLint v3) argument
510 StubGLUniform4fv(GLint location, GLsizei count, const GLfloat* v) argument
514 StubGLUniform4iv(GLint location, GLsizei count, const GLint* v) argument
518 StubGLUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
523 StubGLUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
528 StubGLUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb46 RewriteOperation = Struct.new( :stream, :location, :text )
90 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 )
133 self.location = location
136 def location
[all...]
/external/chromium_org/chrome/common/extensions/
H A Dextension_test_util.cc58 Manifest::Location location,
76 path.DirName(), location, *dict, extra_flags, id, error);
82 Manifest::Location location,
86 dir, test_file, location, extra_flags, std::string(), error);
91 Manifest::Location location,
95 LoadManifestUnchecked(dir, test_file, location, extra_flags, &error);
56 LoadManifestUnchecked(const std::string& dir, const std::string& test_file, Manifest::Location location, int extra_flags, const std::string& id, std::string* error) argument
80 LoadManifestUnchecked(const std::string& dir, const std::string& test_file, Manifest::Location location, int extra_flags, std::string* error) argument
89 LoadManifest(const std::string& dir, const std::string& test_file, Manifest::Location location, int extra_flags) argument
/external/chromium_org/chrome/utility/media_galleries/
H A Ditunes_library_parser.cc25 base::FilePath location; member in struct:itunes::__anon7397::TrackInfo
31 // true if at least the id and location where found (artist and album may be
77 string16 location(decoded_location.data(), decoded_location.length());
80 std::string location = "/" + UTF16ToUTF8(location16); local
82 result->location = base::FilePath(location);
176 parser::Track track(track_info.id, track_info.location);
/external/chromium_org/content/browser/renderer_host/input/
H A Dsynthetic_gesture_target_aura.cc64 gfx::Point location(web_wheel.x, web_wheel.y);
66 ui::ET_MOUSEWHEEL, location, location, ui::EF_NONE);
127 gfx::Point location(web_mouse.x, web_mouse.y);
130 ui::MouseEvent mouse_event(event_type, location, location, flags);
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DKeyboardEvent.cpp90 : location(0)
122 , m_location(initializer.location)
130 const String &keyIdentifier, unsigned location,
134 , m_location(location)
146 const String &keyIdentifier, unsigned location,
155 m_location = location;
129 KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, const String &keyIdentifier, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
145 initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, const String &keyIdentifier, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
/external/chromium_org/tools/gn/
H A Dstring_utils.cc22 Location begin_loc(token.location().file(),
23 token.location().line_number(),
24 token.location().char_offset() + int_offset + 1);
25 Location end_loc(token.location().file(),
26 token.location().line_number(),
27 token.location().char_offset() + int_offset + 1 +

Completed in 1050 milliseconds

<<11121314151617181920>>