/frameworks/rs/script_api/ |
D | Specification.cpp | 375 bool created = false; in scanConstantSpecification() local 376 Constant* constant = systemSpecification.findOrCreateConstant(name, &created); in scanConstantSpecification() 380 specFile->addConstantSpecification(spec, created); in scanConstantSpecification() 389 constant->scanDocumentationTags(scanner, created, specFile); in scanConstantSpecification() 404 bool created = false; in scanTypeSpecification() local 405 Type* type = systemSpecification.findOrCreateType(name, &created); in scanTypeSpecification() 409 specFile->addTypeSpecification(spec, created); in scanTypeSpecification() 444 type->scanDocumentationTags(scanner, created, specFile); in scanTypeSpecification() 621 bool created = false; in scanFunctionSpecification() local 622 Function* function = systemSpecification.findOrCreateFunction(name, &created); in scanFunctionSpecification() [all …]
|
D | rs_matrix.spec | 267 To apply this projection to a vector, multiply the vector by the created 318 To apply this projection to a vector, multiply the vector by the created matrix 336 To apply this projection to a vector, multiply the vector by the created matrix 352 To rotate a vector, multiply the vector by the created matrix using @rsMatrixMultiply(). 369 To scale a vector, multiply the vector by the created matrix using @rsMatrixMultiply(). 384 To translate a vector, multiply the vector by the created matrix using 525 To apply this combined transformation to a vector, multiply the vector by the created 543 To apply this combined transformation to a vector, multiply the vector by the created 577 created matrix using @rsMatrixMultiply().
|
D | Specification.h | 591 Constant* findOrCreateConstant(const std::string& name, bool* created); 592 Type* findOrCreateType(const std::string& name, bool* created); 593 Function* findOrCreateFunction(const std::string& name, bool* created);
|
D | rs_object_info.spec | 21 or Sampler object. These objects are created from Java. You can't create them from a
|
/frameworks/base/services/core/java/com/android/server/connectivity/ |
D | NetworkAgentInfo.java | 132 public boolean created; field in NetworkAgentInfo 456 return created && in satisfies() 461 return created && in satisfiesImmutableCapabilitiesOf() 627 + "created{" + created + "} lingering{" + isLingering() + "} " in toString()
|
/frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/ |
D | NativeMedia.java | 252 boolean created = false; in onCreate() 254 if (!created) { in onCreate() 263 created = createStreamingMediaPlayer(mSourceString); in onCreate() 266 if (created) { in onCreate()
|
/frameworks/base/core/java/android/app/ |
D | DexLoadReporter.java | 174 boolean created = secondaryProfile.createNewFile(); in registerSecondaryDexForProfiling() 175 if (DEBUG && created) { in registerSecondaryDexForProfiling()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/Tests/CocoaPods/ |
D | README.md | 4 The sub directories are the basic projects as created by Xcode 6.3. They are
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_native_fence_sync.txt | 90 object is created. In this case the EGL_SYNC_NATIVE_FENCE_FD_ANDROID 115 "When a fence sync object is created or when an EGL native fence sync 116 object is created with the EGL_SYNC_NATIVE_FENCE_FD_ANDROID attribute set 120 with the newly created sync object. 124 new native fence object to be created, and the 223 when <sync> was created, the behaviour is undefined." 276 - Added language specifying that a native Android fence is created at the
|
D | EGL_ANDROID_image_native_buffer.txt | 90 * If <target> is EGL_NATIVE_BUFFER_ANDROID and <buffer> was created
|
/frameworks/hardware/interfaces/sensorservice/1.0/ |
D | ISensorManager.hal | 76 * @return chan The created channel, or NULL if failure. 97 * @return chan The created channel, or NULL if failure. 114 * @return queue the event queue created. null on failure.
|
D | IEventQueue.hal | 20 * An IEventQueue is an interface to manage an event queue created by
|
D | IDirectReportChannel.hal | 22 * The interface represents a direct channel created by
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/examples/ |
D | README.txt | 49 is created if it does not exist. To view the data, run: 53 similar way and can view/modify files created by the Go example and vice
|
/frameworks/rs/script_api/include/ |
D | rs_matrix.rsh | 273 * To apply this projection to a vector, multiply the vector by the created 335 * To apply this projection to a vector, multiply the vector by the created matrix 352 * To apply this projection to a vector, multiply the vector by the created matrix 370 * To rotate a vector, multiply the vector by the created matrix using rsMatrixMultiply(). 390 * To scale a vector, multiply the vector by the created matrix using rsMatrixMultiply(). 407 * To translate a vector, multiply the vector by the created matrix using 520 * To apply this combined transformation to a vector, multiply the vector by the created 541 * To apply this combined transformation to a vector, multiply the vector by the created 584 * created matrix using rsMatrixMultiply().
|
/frameworks/native/services/vr/virtual_touchpad/idc/ |
D | vr-virtual-touchpad-1.idc | 28 # This displayID matches the unique ID of the virtual display created for VR.
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | MessagingImageMessage.java | 136 boolean created = createdMessage.setMessage(m); in createMessage() 137 if (!created) { in createMessage()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | EventLogTags.logtags | 22 # A new task is being created: 24 # A new activity is being created in an existing task: 65 # A service is being created
|
/frameworks/base/packages/SystemUI/docs/ |
D | dagger.md | 94 instance should be created. 141 Fragments are created as part of the FragmentManager, so they need to be 146 whenever your fragment needs to be created.
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | TaskPositionerTests.java | 99 final boolean[] created = new boolean[1]; in testOverrideFactory() 100 created[0] = false; in testOverrideFactory() 104 created[0] = true; in testOverrideFactory() 110 assertTrue(created[0]); in testOverrideFactory()
|
/frameworks/av/media/mtp/ |
D | MtpDevice.cpp | 494 char created[100], modified[100]; in sendObjectInfo() local 495 formatDateTime(info->mDateCreated, created, sizeof(created)); in sendObjectInfo() 498 mData.putString(created); in sendObjectInfo()
|
/frameworks/base/core/proto/android/service/ |
D | print.proto | 341 // The print job is being created but not yet ready to be printed 344 // The print jobs is created, it is ready to be printed and should be processed 372 // Time the job was created
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
D | UserManagerTest.java | 585 AtomicInteger created = new AtomicInteger(); in testConcurrentUserCreate() local 591 created.incrementAndGet(); in testConcurrentUserCreate() 601 assertEquals(canBeCreatedCount, created.get()); in testConcurrentUserCreate()
|
/frameworks/base/tests/AccessoryDisplay/ |
D | README | 2 displays created over an Android Open Accessories Protocol link.
|
/frameworks/base/core/proto/android/server/ |
D | backup_chunks_metadata.proto | 72 // consistently use the same type between backups. If unspecified this backup file was created 120 // created before INLINE_LENGTHS was supported, thus assume it is EXPLICIT_STARTS.
|