Searched refs:created (Results 1 - 22 of 22) sorted by relevance

/frameworks/rs/script_api/
H A DSpecification.cpp125 * which created a problem with rs_matrix2x2.
374 bool created = false; local
375 Constant* constant = systemSpecification.findOrCreateConstant(name, &created);
379 specFile->addConstantSpecification(spec, created);
388 constant->scanDocumentationTags(scanner, created, specFile);
403 bool created = false; local
404 Type* type = systemSpecification.findOrCreateType(name, &created);
408 specFile->addTypeSpecification(spec, created);
443 type->scanDocumentationTags(scanner, created, specFile);
620 bool created local
872 findOrCreate(const string& name, map<string, T*>* map, bool* created) argument
884 findOrCreateConstant(const string& name, bool* created) argument
888 findOrCreateType(const string& name, bool* created) argument
892 findOrCreateFunction(const string& name, bool* created) argument
[all...]
H A Drs_matrix.spec267 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().
H A Drs_object_info.spec21 or Sampler object. These objects are created from Java. You can't create them from a
H A DSpecification.h588 /* These are called the parser to create unique instances per name. Set *created to true
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);
H A Drs_object_types.spec21 elements, and scripts. Most of these object are created using the Java RenderScript APIs.
H A Drs_allocation_create.spec142 only supported usage flags for Allocations created from within a RenderScript
H A Drs_math.spec1244 Returns the floating point created from the mantissa and exponent,
/frameworks/base/core/java/android/app/
H A DDexLoadReporter.java135 // Returns true if the file was created, false if the file already exists.
137 boolean created = secondaryProfile.createNewFile();
138 if (DEBUG && created) {
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUFlowManager.java135 boolean created = false;
139 created = true;
143 mNetworkCreated = created;
144 if (created) {
148 toString(), created ? "created " : "existing ", osuNetworkId));
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkAgentInfo.java66 // ConnectivityService will tell netd to create the network if it was not already created, and
68 // 4. registered, created, connected, unvalidated
80 // 5. registered, created, connected, validated
132 public boolean created; field in class:NetworkAgentInfo
391 return created &&
396 return created &&
560 "created{" + created + "} lingering{" + isLingering() + "} " +
/frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
H A DNativeMedia.java65 /** Called when the activity is first created. */
252 boolean created = false;
254 if (!created) {
263 created = createStreamingMediaPlayer(mSourceString);
266 if (created) {
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentArgumentsSupport.java49 ft.add(R.id.created, newFragment);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentArgumentsSupport.java49 ft.add(R.id.created, newFragment);
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DUserManagerTest.java188 // Make sure only one managed profile can be created
339 assertTrue("creationTime must be set when the profile is created",
477 // Switch to the user just created.
491 AtomicInteger created = new AtomicInteger();
497 created.incrementAndGet();
507 assertEquals(canBeCreatedCount, created.get());
/frameworks/av/media/mtp/
H A DMtpDevice.cpp494 char created[100], modified[100]; local
495 formatDateTime(info->mDateCreated, created, sizeof(created));
498 mData.putString(created);
H A DMtpServer.cpp769 mData.putString(date); // date created
949 MtpStringBuffer name, created, modified;
955 if (!mData.getString(created)) return MTP_RESPONSE_INVALID_PARAMETER; // date created
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DObjectViewer.java141 view = (TextView)findViewById(R.id.created);
/frameworks/base/core/tests/coretests/src/android/util/
H A DLruCacheTest.java86 assertCreated(cache, "aa", "created-aa");
87 assertHit(cache, "aa", "created-aa");
88 assertSnapshot(cache, "aa", "created-aa");
90 assertCreated(cache, "bb", "created-bb");
92 assertSnapshot(cache, "aa", "created-aa", "bb", "created-bb");
94 assertCreated(cache, "cc", "created-cc");
95 assertSnapshot(cache, "aa", "created-aa", "bb", "created-bb", "cc", "created
[all...]
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java1628 * @return If a chip was created from a real contact.
2228 * A callback for subclasses to use to know when a chip was created with the
2974 ArrayList<DrawableRecipientChip> created = handlePaste();
2975 if (created != null && created.size() > 0) {
2978 replace.execute(created);
2990 ArrayList<DrawableRecipientChip> created = new ArrayList<DrawableRecipientChip>();
3017 created.add(createdChip);
3027 created.add(findChip(tokenStart));
3029 return created;
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java2033 "; created=" + nai.created +
2309 if (nai.created) {
4563 if (!Objects.equals(oldPermission, newPermission) && nai.created && !nai.isVPN()) {
5119 if (!networkAgent.created
5142 networkAgent.created = true;
/frameworks/base/services/core/java/com/android/server/am/
H A DActiveServices.java1769 if (DEBUG_SERVICE) Slog.v(TAG_SERVICE, "Retrieve created new service: " + r);
2206 boolean created = false;
2225 created = true;
2231 if (!created) {
3071 // the service created, then we'll kill the cached process as well -- we
3563 pw.print(" created=");
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 1570 milliseconds