Searched defs:location (Results 1 - 25 of 427) sorted by relevance

1234567891011>>

/external/stlport/test/unit/
H A Dadvance_test.cpp34 IntVector::iterator location = v.begin(); local
35 CPPUNIT_ASSERT(*location==0);
36 advance(location, 5);
37 CPPUNIT_ASSERT(*location==5);
/external/icu4c/tools/toolutil/
H A Dtoolutil.h39 IcuToolErrorCode(const char *loc) : location(loc) {}
44 const char *location; member in class:IcuToolErrorCode
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLUniformLocation.cpp35 PassRefPtr<WebGLUniformLocation> WebGLUniformLocation::create(WebGLProgram* program, GC3Dint location) argument
37 return adoptRef(new WebGLUniformLocation(program, location));
40 WebGLUniformLocation::WebGLUniformLocation(WebGLProgram* program, GC3Dint location) argument
42 , m_location(location)
57 GC3Dint WebGLUniformLocation::location() const function in class:WebCore::WebGLUniformLocation
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DHeightMapGrid.java19 public HeightMap getHeightMapAt(Vector3f location); argument
H A DImageBasedHeightMapGrid.java51 public HeightMap getHeightMapAt(Vector3f location) { argument
53 int x = (int) location.x;
54 int z = (int) location.z;
/external/skia/src/gpu/gl/
H A DGrGLUtil.cpp18 const char* location,
23 if (NULL != location) {
24 GrPrintf(" at\n\t%s", location);
17 GrGLCheckErr(const GrGLInterface* gl, const char* location, const char* call) argument
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DInfoSink.cpp34 void TInfoSinkBase::location(TSourceLoc loc) { function in class:TInfoSinkBase
56 location(loc);
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebGrammarDetail.cpp35 PassRefPtr<WebGrammarDetail> WebGrammarDetail::create(int location, int length, ImmutableArray* guesses, const String& userDescription) argument
37 return adoptRef(new WebGrammarDetail(location, length, guesses, userDescription));
45 WebGrammarDetail::WebGrammarDetail(int location, int length, ImmutableArray* guesses, const String& userDescription) argument
47 m_grammarDetail.location = location;
/external/bison/src/
H A Dlocation.h52 /* A location, that is, a region of source code. */
55 /* Boundary just before the location starts. */
58 /* Boundary just after the location ends. */
61 } location; typedef in typeref:struct:__anon332
63 #define YYLTYPE location
65 extern location const empty_location;
67 void location_print (FILE *out, location loc);
H A Dsymlist.h25 # include "location.h"
33 location location; member in struct:symbol_list
41 location action_location;
57 symbol_list *symbol_list_new (symbol *sym, location loc);
65 location loc);
78 uniqstr symbol_list_n_type_name_get (symbol_list *l, location loc, int n);
/external/chromium/base/
H A Dutf_offset_string_conversions.h76 // AdjustOffset(adjustments). Each Adjustment gives the original |location|
83 Adjustment(size_t location, size_t old_length, size_t new_length);
85 size_t location; member in struct:AdjustOffset::Adjustment
/external/chromium/chrome/browser/net/
H A Dconnect_interceptor.cc78 const GURL& location) {
76 MaybeInterceptRedirect( net::URLRequest* request, const GURL& location) argument
/external/chromium/chrome/common/extensions/
H A Dextension_messages.h102 // The location the extension was installed from.
103 Extension::Location location; member in struct:ExtensionMsg_Loaded_Params
/external/chromium/net/url_request/
H A Durl_request_redirect_job.cc24 bool URLRequestRedirectJob::IsRedirectResponse(GURL* location, argument
26 *location = redirect_destination_;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUndefinedAssignmentChecker.cpp30 void checkBind(SVal location, SVal val, const Stmt *S,
35 void UndefinedAssignmentChecker::checkBind(SVal location, SVal val, argument
/external/clang/test/PCH/
H A Dstmts.h78 void *location = &&start; local
81 location = &&done;
86 goto *location;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DTextDialogPropertyEditor.java50 public boolean activate(PropertyTable propertyTable, Property property, Point location) argument
53 if (location == null) {
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
H A DAndroid22Workaround.java6 public static void glVertexAttribPointer(int location, int components, int format, boolean normalize, int stride, int offset){ argument
7 GLES20.glVertexAttribPointer(location,
/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/jmonkeyengine/engine/src/bullet-native/
H A DjmeMotionState.cpp60 void jmeMotionState::setKinematicLocation(JNIEnv* env, jobject location) { argument
61 jmeBulletUtil::convert(env, location, &worldTransform.getOrigin());
75 bool jmeMotionState::applyTransform(JNIEnv* env, jobject location, jobject rotation) { argument
79 jmeBulletUtil::convert(env, &worldTransform.getOrigin(), location);
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShaderVariable.java40 // if -2, location not known
43 protected int location = -2; field in class:ShaderVariable
67 public void setLocation(int location){ argument
68 this.location = location;
72 return location;
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DTerrainGridTileLoader.java16 public TerrainQuad getTerrainQuadAt(Vector3f location); argument
/external/jmonkeyengine/engine/src/test/jme3test/awt/
H A DTestAwtPanels.java28 private static void createWindowForPanel(AwtPanel panel, int location){ argument
29 JFrame frame = new JFrame("Render Display " + location);
42 frame.setLocation(location, Toolkit.getDefaultToolkit().getScreenSize().height - 400);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DDataEntryUrnBox.java32 private String location; field in class:DataEntryUrnBox
44 return location;
48 return Utf8.utf8StringLengthInBytes(name) + 1 + Utf8.utf8StringLengthInBytes(location) + 1;
54 location = IsoTypeReader.readString(content);
62 byteBuffer.put(Utf8.convert(location));
67 return "DataEntryUrlBox[name=" + getName() + ";location=" + getLocation() + "]";
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macgl.c168 int Mac_GL_LoadLibrary(_THIS, const char *location) argument
170 if (location == NULL)
172 location = "/System/Library/Frameworks/OpenGL.framework/OpenGL";
174 location = "OpenGLLibrary";
177 this->hidden->libraryHandle = SDL_LoadObject(location);

Completed in 584 milliseconds

1234567891011>>