/external/llvm-project/mlir/include/mlir/IR/ |
D | Location.h | 1 //===- Location.h - MLIR Location Classes -----------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // location position information. 12 //===----------------------------------------------------------------------===// 38 /// Location objects represent source locations information in MLIR. 39 /// LocationAttr acts as the anchor for all Location based attributes. 49 /// non-nullable wrapper around a LocationAttr. 50 class Location { 52 Location(LocationAttr loc) : impl(loc) { in Location() function [all …]
|
D | BuiltinTypes.h | 1 //===- BuiltinTypes.h - MLIR Builtin Type Classes ---------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 25 class Location; variable 46 //===----------------------------------------------------------------------===// 48 //===----------------------------------------------------------------------===// 60 /// Get or create a ComplexType with the provided element type. 61 static ComplexType get(Type elementType); 63 /// Get or create a ComplexType with the provided element type. This emits 64 /// and error at the specified location and returns null if the element type [all …]
|
/external/llvm-project/mlir/lib/IR/ |
D | Location.cpp | 1 //===- Location.cpp - MLIR Location Classes -------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 #include "mlir/IR/Location.h" 16 //===----------------------------------------------------------------------===// 18 //===----------------------------------------------------------------------===// 26 //===----------------------------------------------------------------------===// 28 //===----------------------------------------------------------------------===// 30 Location CallSiteLoc::get(Location callee, Location caller) { in get() function in CallSiteLoc 31 return Base::get(callee->getContext(), callee, caller); in get() [all …]
|
D | LocationDetail.h | 1 //===- LocationDetail.h - MLIR Location storage details ---------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This holds implementation details of the location attributes. 11 //===----------------------------------------------------------------------===// 17 #include "mlir/IR/Location.h" 26 CallSiteLocationStorage(Location callee, Location caller) in CallSiteLocationStorage() 30 using KeyTy = std::pair<Location, Location>; 42 Location callee, caller; 60 FileLineColLocationStorage(std::get<0>(key), std::get<1>(key), in construct() [all …]
|
D | BuiltinTypes.cpp | 1 //===- BuiltinTypes.cpp - MLIR Builtin Type Classes -----------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 23 //===----------------------------------------------------------------------===// 25 //===----------------------------------------------------------------------===// 27 ComplexType ComplexType::get(Type elementType) { in get() function in ComplexType 28 return Base::get(elementType.getContext(), elementType); in get() 31 ComplexType ComplexType::getChecked(Type elementType, Location location) { in getChecked() argument 32 return Base::getChecked(location, elementType); in getChecked() 36 LogicalResult ComplexType::verifyConstructionInvariants(Location loc, in verifyConstructionInvariants() [all …]
|
/external/python/apitools/samples/storage_sample/ |
D | storage_v1.json | 13 "x16": "https://www.google.com/images/icons/product/cloud_storage-16.png", 14 "x32": "https://www.google.com/images/icons/product/cloud_storage-32.png" 36 "Responses with Content-Type of application/json" 38 "location": "query" string 43 "location": "query" string 48 "location": "query" string 53 "location": "query" string 59 "location": "query" string 63 …"description": "Available to use for quota purposes for server-side applications. Can be any arbit… 64 "location": "query" string [all …]
|
/external/python/google-api-python-client/tests/data/ |
D | zoo.json | 20 "Responses with Content-Type of application/json" 22 "location": "query" string 27 "location": "query" string 32 "location": "query" string 37 "location": "query" string 43 "location": "query" string 47 …"description": "Available to use for quota purposes for server-side applications. Can be any arbit… 48 "location": "query" string 52 …ddress of the site where the request originates. Use this if you want to enforce per-user limits.", 53 "location": "query" string [all …]
|
D | latitude.json | 8 "x16": "http://www.google.com/images/icons/product/search-16.gif", 9 "x32": "http://www.google.com/images/icons/product/search-32.gif" 22 "description": "Manage your current location and location history" 32 "$ref": "Location" 34 "Location": { object 35 "id": "Location", 55 "default": "latitude#location" 81 "$ref": "Location" 98 "description": "Deletes the authenticated user's current location.", 103 "get": { object [all …]
|
D | moderator.json | 8 "x16": "http://www.google.com/images/icons/product/moderator-32.png", 9 "x32": "http://www.google.com/images/icons/product/search-32.gif" 78 "location": { object 86 "location": { object 196 "location": { object 227 "location": { object 582 "httpMethod": "GET", 602 "httpMethod": "GET", 605 "max-results": { 610 "location": "query" string [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/ |
D | MutableMethodImplementation.java | 76 Arrays.fill(codeAddressToIndex, -1); in MutableMethodImplementation() 79 codeAddressToIndex[instructionList.get(i).codeAddress] = i; in MutableMethodImplementation() 85 final MethodLocation location = instructionList.get(index); in MutableMethodImplementation() local 90 convertAndSetInstruction(location, codeAddressToIndex, instruction); in MutableMethodImplementation() 94 convertAndSetInstruction(location, codeAddressToIndex, instruction); in MutableMethodImplementation() 108 MethodLocation debugLocation = instructionList.get(locationIndex); in MutableMethodImplementation() 111 builderDebugItem.location = debugLocation; in MutableMethodImplementation() 145 @Override public BuilderInstruction get(int i) { in getInstructions() 152 return instructionList.get(i).instruction; in getInstructions() 160 return instructionList.size() - 1; in getInstructions() [all …]
|
/external/llvm-project/mlir/lib/Parser/ |
D | LocationParser.cpp | 1 //===- LocationParser.cpp - MLIR Location Parser -------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 14 /// Specific location instances. 16 /// location-inst ::= filelinecol-location | 17 /// name-location | 18 /// callsite-location | 19 /// fused-location | 20 /// unknown-location 21 /// filelinecol-location ::= string-literal ':' integer-literal [all …]
|
/external/python/httplib2/tests/ |
D | test_http.py | 26 assert response["content-location"] == tests.DUMMY_URL 49 http.request("http://no-such-hostname./") 53 response, content = http.request("http://no-such-hostname./") 54 assert response["content-type"] == "text/plain" 60 os.environ.get("TRAVIS_PYTHON_VERSION") in ("2.7", "pypy"), 62 "See https://travis-ci.org/httplib2/httplib2/jobs/408769880.", 74 os.environ.get("TRAVIS_PYTHON_VERSION") in ("2.7", "pypy"), 76 "See https://travis-ci.org/httplib2/httplib2/jobs/408769880.", 85 assert response["content-type"] == "text/plain" 98 response, content = http.request(uri + query, "GET") [all …]
|
/external/fonttools/Lib/fontTools/designspaceLib/ |
D | __init__.py | 1 # -*- coding: utf-8 -*- 15 - read and write designspace files 24 # ElementTree allows to find namespace-prefixed elements, but not attributes 98 'location', 'copyLib', 111 location=None, argument 134 The default document reader will not fill-in this attribute, and the 142 self.location = location 160 """<!-- optional: list of substitution rules --> 183 def evaluateRule(rule, location): argument 184 """ Return True if any of the rule's conditionsets matches the given location.""" [all …]
|
/external/libchrome/base/test/android/junit/src/org/chromium/base/test/util/ |
D | AnnotationProcessingUtilsTest.java | 2 // Use of this source code is governed by a BSD-style license that can be 79 assertEquals(Location.Class, retrievedAnnotation.value()); in testGetTargetAnnotation_OnClassButNotOnMethod() 90 assertEquals(Location.Method, retrievedAnnotation.value()); in testGetTargetAnnotation_OnClassAndMethod() 101 assertEquals(Location.Rule, retrievedAnnotation.value()); in testGetTargetAnnotation_OnRuleButNotOnMethod() 112 assertEquals(Location.Method, retrievedAnnotation.value()); in testGetTargetAnnotation_OnRuleAndMethod() 133 assertEquals(Location.Class, retrievedAnnotations.get(0).value()); in testGetAllTargetAnnotations() 134 assertEquals(Location.Method, retrievedAnnotations.get(1).value()); in testGetAllTargetAnnotations() 145 assertEquals(Location.Class, retrievedAnnotations.get(0).value()); in testGetAllTargetAnnotations_OnParentClass() 156 assertEquals(Location.Class, retrievedAnnotations.get(0).value()); in testGetAllTargetAnnotations_OnDerivedMethodAndParentClass() 157 assertEquals(Location.DerivedMethod, retrievedAnnotations.get(1).value()); in testGetAllTargetAnnotations_OnDerivedMethodAndParentClass() [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | MemoryLocation.h | 1 //===- MemoryLocation.h - Memory location descriptions ----------*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 14 //===----------------------------------------------------------------------===// 31 /// Representation for a specific memory location. 33 /// This abstraction can be used to represent a specific location in memory. 34 /// The goal of the location is to represent enough information to describe 36 /// value(s) are stored in memory at the particular location. 42 /// UnknownSize - This is a special value which can be used with the 47 /// The address of the start of the location. 50 /// The maximum size of the location, in address-units, or [all …]
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | DescriptorDeclaration.cs | 2 // Protocol Buffers - Google's data interchange format 4 // https://developers.google.com/protocol-buffers/ 44 /// such as source location and comments. 51 public IDescriptor Descriptor { get; } 54 /// The start line of the declaration within the source file. This value is 1-based. 56 public int StartLine { get; } 58 /// The start column of the declaration within the source file. This value is 1-based. 60 public int StartColumn { get; } 63 /// // The end line of the declaration within the source file. This value is 1-based. 65 public int EndLine { get; } [all …]
|
/external/angle/src/tests/gl_tests/ |
D | ProgramBinaryTest.cpp | 3 // Use of this source code is governed by a BSD-style license that can be 178 // Tests that switching between signed and unsigned un-normalized data doesn't trigger a bug 179 // in the D3D11 back-end. 186 ASSERT_NE(-1, attribLocation); in TEST_P() 326 glBindBuffer(GL_UNIFORM_BUFFER, ubo.get()); in testBinaryAndUBOBlockIndexes() 328 glBindBufferRange(GL_UNIFORM_BUFFER, bindIndex, ubo.get(), 0, sizeof(fData)); in testBinaryAndUBOBlockIndexes() 330 GLint blockIndex = glGetUniformBlockIndex(program.get(), "block"); in testBinaryAndUBOBlockIndexes() 331 ASSERT_NE(-1, blockIndex); in testBinaryAndUBOBlockIndexes() 333 glUniformBlockBinding(program.get(), blockIndex, bindIndex); in testBinaryAndUBOBlockIndexes() 341 drawQuad(program.get(), "position", 0.5f); in testBinaryAndUBOBlockIndexes() [all …]
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowLocationManager.java | 9 import android.location.Criteria; 10 import android.location.GpsStatus.Listener; 11 import android.location.Location; 12 import android.location.LocationListener; 13 import android.location.LocationManager; 38 private final Map<String, Location> lastKnownLocations = new HashMap<>(); 48 /** Location listeners along with metadata on when they should be fired. */ 54 Location lastSeenLocation; 57 …ListenerRegistration(String provider, long minTime, float minDistance, Location locationAtCreation, in ListenerRegistration() 74 LocationProviderEntry map = providersEnabled.get(provider); in isProviderEnabled() [all …]
|
/external/libchrome/base/task/ |
D | cancelable_task_tracker_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 11 #include "base/location.h" 43 void AddFailureAt(const Location& location) { in AddFailureAt() argument 44 ADD_FAILURE_AT(location.file_name(), location.line_number()); in AddFailureAt() 48 Closure MakeExpectedNotRunClosure(const Location& location) { in MakeExpectedNotRunClosure() argument 49 return Bind(&AddFailureAt, location); in MakeExpectedNotRunClosure() 58 explicit RunChecker(const Location& location) in RunChecker() argument 59 : location_(location), called_(false) {} in RunChecker() 70 Location location_; 75 Closure MakeExpectedRunClosure(const Location& location) { in MakeExpectedRunClosure() argument [all …]
|
/external/llvm-project/mlir/lib/Dialect/Quant/IR/ |
D | QuantTypes.cpp | 1 //===- QuantOps.cpp - Quantization Type and Ops Implementation --*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 24 return static_cast<ImplType *>(impl)->flags; in getFlags() 32 Location loc, unsigned flags, Type storageType, Type expressedType, in verifyConstructionInvariants() 53 if (storageTypeMax - storageTypeMin <= 0 || in verifyConstructionInvariants() 63 return static_cast<ImplType *>(impl)->storageType; in getStorageType() 67 return static_cast<ImplType *>(impl)->storageTypeMin; in getStorageTypeMin() 71 return static_cast<ImplType *>(impl)->storageTypeMax; in getStorageTypeMax() 75 // NOTE: If ever supporting non-integral storage types, some other scheme in getStorageTypeIntegralWidth() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGLoopInfo.cpp | 1 //===---- CGLoopInfo.cpp - LLVM CodeGen for loop metadata -*- C++ -*-------===// 8 //===----------------------------------------------------------------------===// 23 llvm::DebugLoc Location) { in createMetadata() argument 30 !Location) in createMetadata() 36 Args.push_back(TempNode.get()); in createMetadata() 38 // If we have a valid debug location for the loop, add it. in createMetadata() 39 if (Location) in createMetadata() 40 Args.push_back(Location.getAsMDNode()); in createMetadata() 44 Metadata *Vals[] = {MDString::get(Ctx, "llvm.loop.vectorize.width"), in createMetadata() 45 ConstantAsMetadata::get(ConstantInt::get( in createMetadata() [all …]
|
/external/google-breakpad/src/client/solaris/handler/ |
D | minidump_generator.cc | 44 #include "client/minidump_file_writer-inl.h" 78 // Used to get information about the lwps. 91 crashing_lwpid(-1) { in FindCrashLwpContext() 102 const SolarisLwp *lwp_lister = crashing_context->lwp_lister; in IsLwpCrashedCallback() 103 const prgregset_t *gregs = &(lsp->pr_reg); in IsLwpCrashedCallback() 109 uintptr_t stack_bottom = lwp_lister->GetLwpStackBottom(last_ebp); in IsLwpCrashedCallback() 111 stack_bottom == crashing_context->crashing_stack_bottom) { in IsLwpCrashedCallback() 113 crashing_context->crashing_lwpid = lsp->pr_lwpid; in IsLwpCrashedCallback() 130 lwp_lister->Lwp_iter_all(lwp_lister->getpid(), &callback_param); in FindCrashingLwp() 138 uintptr_t stack_bottom = lwp_lister->GetLwpStackBottom(last_esp); in WriteLwpStack() [all …]
|
/external/curl/tests/data/ |
D | test25 | 5 HTTP GET 7 --max-redirs 10 # Server-side 14 Server: test-server/fake 15 Location: data/reply/25 16 Content-Length: 32 23 Server: test-server/fake 24 Location: data/reply/25 25 Content-Length: 32 29 Server: test-server/fake [all …]
|
/external/ipsec-tools/src/racoon/ |
D | oakley.c | 175 if (dhgrp->prime) 176 vfree(dhgrp->prime); 177 if (dhgrp->curve_a) 178 vfree(dhgrp->curve_a); 179 if (dhgrp->curve_b) 180 vfree(dhgrp->curve_b); 181 if (dhgrp->order) 182 vfree(dhgrp->order); 188 * The length of the Diffie-Hellman public value MUST be equal to the 199 if (prime->l == pub->l) [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | mirror_v1.locations.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|