/external/elfutils/src/tests/ |
D | run-funcretval.sh | 34 () fun_char: return value location: {0x50, 0} 35 () fun_short: return value location: {0x50, 0} 36 () fun_int: return value location: {0x50, 0} 37 () fun_ptr: return value location: {0x50, 0} 38 () fun_iptr: return value location: {0x50, 0} 39 () fun_long: return value location: {0x50, 0} 40 () fun_int128: return value location: {0x50, 0} {0x93, 0x8} {0x51, 0} {0x93, 0x8} 41 () fun_large_struct1: return value location: {0x70, 0} 42 () fun_large_struct2: return value location: {0x70, 0} 43 () fun_float: return value location: {0x90, 0x40} [all …]
|
/external/v8/test/mjsunit/ |
D | debug-sourceinfo.js | 108 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/ |
D | wpa_gui_de.ts | 7 <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/v8/test/cctest/ |
D | test-global-handles.cc | 106 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 DCHECK(can_skip_called_objects.Contains(*g1s1.location())); in TEST() 126 DCHECK(can_skip_called_objects.Contains(*g1s2.location())); in TEST() 127 DCHECK(can_skip_called_objects.Contains(*g2s1.location())); in TEST() 128 DCHECK(can_skip_called_objects.Contains(*g2s2.location())); in TEST() [all …]
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | LocationTest.java | 3 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/mesa3d/src/mesa/main/ |
D | uniforms.c | 131 _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 …]
|
D | uniforms.h | 90 _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/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/ |
D | MutableMethodImplementation.java | 85 final MethodLocation location = instructionList.get(index); in MutableMethodImplementation() local 90 convertAndSetInstruction(location, codeAddressToIndex, instruction); in MutableMethodImplementation() 94 convertAndSetInstruction(location, codeAddressToIndex, instruction); in MutableMethodImplementation() 111 builderDebugItem.location = debugLocation; in MutableMethodImplementation() 218 instruction.location = newLoc; 223 MethodLocation location = instructionList.get(i); 224 location.index++; 225 location.codeAddress = codeAddress; 226 if (location.instruction != null) { 227 codeAddress += location.instruction.getCodeUnits(); [all …]
|
D | Label.java | 38 @Nullable MethodLocation location; field in Label 43 Label(MethodLocation location) { in Label() argument 44 this.location = location; in Label() 53 if (location == null) { in getLocation() 56 return location; in getLocation() 60 return location != null; in isPlaced()
|
/external/bison/examples/calc++/ |
D | location.hh | 49 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/doclava/src/com/google/doclava/parser/ |
D | JavaParser.java | 471 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/protobuf/src/google/protobuf/compiler/ |
D | parser.cc | 255 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() 359 DescriptorPool::ErrorCollector::ErrorLocation location) { in RecordLegacyLocation() argument 362 descriptor, location, location_->span(0), location_->span(1)); in RecordLegacyLocation() 495 LocationRecorder location(root_location, in ParseTopLevelStatement() local 497 return ParseMessageDefinition(file->add_message_type(), location, file); in ParseTopLevelStatement() 499 LocationRecorder location(root_location, in ParseTopLevelStatement() local [all …]
|
/external/deqp/data/gles31/shaders/ |
D | uniform_location.test | 9 layout(location = 0) uniform float uni0; 10 layout(location = 0) uniform float uni1; 29 layout(location = 0) uniform float uni0; 30 layout(location = 0) uniform float uni1; 49 layout(location = 0) uniform float uni0; 62 layout(location = 0) uniform float uni1; 64 layout(location = 0) out mediump vec4 dEQP_FragColor; 81 layout(location = 0) uniform float uni0[8]; 82 layout(location = 5) uniform float uni1; 101 layout(location = 0) uniform float uni0[8]; [all …]
|
/external/clang/tools/libclang/ |
D | CXSourceLocation.cpp | 211 int clang_Location_isInSystemHeader(CXSourceLocation location) { in clang_Location_isInSystemHeader() argument 213 SourceLocation::getFromRawEncoding(location.int_data); in clang_Location_isInSystemHeader() 218 *static_cast<const SourceManager*>(location.ptr_data[0]); in clang_Location_isInSystemHeader() 222 int clang_Location_isFromMainFile(CXSourceLocation location) { in clang_Location_isFromMainFile() argument 224 SourceLocation::getFromRawEncoding(location.int_data); in clang_Location_isFromMainFile() 229 *static_cast<const SourceManager*>(location.ptr_data[0]); in clang_Location_isFromMainFile() 233 void clang_getExpansionLocation(CXSourceLocation location, in clang_getExpansionLocation() argument 239 if (!isASTUnitSourceLocation(location)) { in clang_getExpansionLocation() 240 CXLoadedDiagnostic::decodeLocation(location, file, line, column, offset); in clang_getExpansionLocation() 244 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_getExpansionLocation() [all …]
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/ |
D | rewrite.rb | 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 ) argument 133 self.location = location 136 def location=( val ) 147 return( location.end + 1 ) 151 location.first [all …]
|
/external/lldb/examples/python/ |
D | diagnose_nsstring.py | 8 def read_memory(process,location,size): argument 12 byte = process.ReadUnsignedFromMemory(x+location,1,error) 140 location = 2 * ptr_size + nsstring_address 141 location = process.ReadPointerFromMemory(location,error) 143 location = 3 * ptr_size + nsstring_address 145 location = 2 * ptr_size + nsstring_address 150 location += ptr_size 152 location = process.ReadPointerFromMemory(location,error) 154 location = nsstring_address + ptr_size + 4 156 location = 2 * ptr_size + nsstring_address [all …]
|
/external/bison/src/ |
D | symtab.h | 61 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 …]
|
D | reader.h | 35 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,
|
D | symlist.h | 51 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);
|
D | reader.c | 59 grammar_start_symbol_set (symbol *sym, location loc) in grammar_start_symbol_set() 112 record_merge_function_type (int merger, uniqstr type, location declaration_loc) in record_merge_function_type() 178 grammar_symbol_append (symbol *sym, location loc) in grammar_symbol_append() 226 grammar_current_rule_begin (symbol *lhs, location loc, in grammar_current_rule_begin() 303 warn_at (r->location, in grammar_rule_check() 309 warn_at (r->location, in grammar_rule_check() 325 void (*warn_at_ptr)(location, char const*, ...) = in grammar_rule_check() 328 warn_at_ptr (l->location, _("unused value: $%d"), n); in grammar_rule_check() 330 warn_at_ptr (l->location, _("unset value: $$")); in grammar_rule_check() 341 warn_at (r->location, _("token for %%prec is not defined: %s"), in grammar_rule_check() [all …]
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/ |
D | InsnList.java | 221 public void set(final AbstractInsnNode location, final AbstractInsnNode insn) { in set() argument 222 if (check && !(contains(location) && insn.index == -1)) { in set() 225 AbstractInsnNode next = location.next; in set() 232 AbstractInsnNode prev = location.prev; in set() 240 int index = location.index; in set() 246 location.index = -1; // i no longer belongs to an InsnList in set() 247 location.prev = null; in set() 248 location.next = null; in set() 368 public void insert(final AbstractInsnNode location, final AbstractInsnNode insn) { in insert() argument 369 if (check && !(contains(location) && insn.index == -1)) { in insert() [all …]
|
/external/bison/data/ |
D | location.cc | 153 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 …]
|
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/ |
D | TextureAtlas.java | 239 TextureAtlasTile location = locationMap.get(name); in addImage() local 240 if (location != null) { in addImage() 244 drawImage(image, location.getX(), location.getY(), mapName); in addImage() 255 location = node.location; in addImage() 258 location = locationMap.get(sourceTextureName); in addImage() 259 if (location == null) { in addImage() 261 } else if (location.width != image.getWidth() || location.height != image.getHeight()) { in addImage() 266 locationMap.put(name, location); in addImage() 267 drawImage(image, location.getX(), location.getY(), mapName); in addImage() 560 public TextureAtlasTile location; field in TextureAtlas.Node [all …]
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/ |
D | JDWPProxyTestCase.java | 37 private final Location location; field in JDWPProxyTestCase.EventContext 39 public EventContext(long threadId, long frameId, Location location) { in EventContext() argument 42 this.location = location; in EventContext() 54 return location; in getLocation() 89 Location location = reply.getNextValueAsLocation(); in getFirstProxyFrameId() local 91 String className = getClassSignature(location.classID); in getFirstProxyFrameId() 92 String methodName = getMethodName(location.classID, location.methodID); in getFirstProxyFrameId() 93 … logWriter.println("Frame #" + i + ": " + className + "." + methodName + "@" + location.index); in getFirstProxyFrameId() 94 if (location.classID != proxyClassId && in getFirstProxyFrameId() 95 IsProxy(location.classID, proxyClassId)) { in getFirstProxyFrameId() [all …]
|
/external/deqp/modules/gles31/functional/ |
D | es31fShaderSharedVarTests.cpp | 204 const int location = uNdx == 1 ? refLoc : valLoc; in iterate() local 206 if (scalarSize == 1) gl.uniform1fv(location, numValues, &values[0]); in iterate() 207 else if (scalarSize == 2) gl.uniform2fv(location, numValues, &values[0]); in iterate() 208 else if (scalarSize == 3) gl.uniform3fv(location, numValues, &values[0]); in iterate() 209 else if (scalarSize == 4) gl.uniform4fv(location, numValues, &values[0]); in iterate() 223 const int location = uNdx == 1 ? refLoc : valLoc; in iterate() local 225 if (scalarSize == 1) gl.uniform1iv(location, numValues, &values[0]); in iterate() 226 else if (scalarSize == 2) gl.uniform2iv(location, numValues, &values[0]); in iterate() 227 else if (scalarSize == 3) gl.uniform3iv(location, numValues, &values[0]); in iterate() 228 else if (scalarSize == 4) gl.uniform4iv(location, numValues, &values[0]); in iterate() [all …]
|