Searched defs:flag (Results 1 - 25 of 60) sorted by last modified time

123

/frameworks/support/v4/java/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompat.java220 * Returns the string representation of a flag. For example,
224 * @param flag The flag.
227 public static String flagToString(int flag) { argument
228 switch (flag) {
/frameworks/opt/telephony/mockril/src/com/android/internal/telephony/mockril/
H A DMockRilController.java173 * Set call transition flag to the Mock Ril
175 * @param flag is a boolean value for the call transiton flag
178 * @return true if the request is successful, false if it failed to set the flag
180 public boolean setCallTransitionFlag(boolean flag) { argument
183 req.setFlag(flag);
193 * Set the dialing call to alert if the call transition flag is true
206 * Set the alert call to active if the call transition flag is true
/frameworks/ex/common/java/com/android/common/widget/
H A DCompositeCursorAdapter.java139 public void setHasHeader(int partitionIndex, boolean flag) { argument
140 mPartitions[partitionIndex].hasHeader = flag;
144 public void setShowIfEmpty(int partitionIndex, boolean flag) { argument
145 mPartitions[partitionIndex].showIfEmpty = flag;
515 public void setNotificationsEnabled(boolean flag) { argument
516 mNotificationsEnabled = flag;
517 if (flag && mNotificationNeeded) {
/frameworks/native/opengl/libagl/
H A Dstate.cpp322 // If more than one flag has recorded an error, glGetError returns
323 // and clears an arbitrary error flag value. Thus, glGetError should
534 void glDepthMask(GLboolean flag) { argument
536 c->rasterizer.procs.depthMask(c, flag);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp1400 void GLTrace_glDepthMask(GLboolean flag) { argument
1406 // copy argument flag
1410 arg_flag->add_boolvalue(flag);
1415 glContext->hooks->gl.glDepthMask(flag);
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFSegment.h103 uint32_t flag() const function in class:mcld::ELFSegment
H A DLDSection.h57 /// flag - An integer describes miscellaneous attributes.
60 uint32_t flag() const function in class:mcld::LDSection
125 void setFlag(uint32_t flag) argument
126 { m_Flag = flag; }
/frameworks/compile/mclinker/include/mcld/Target/
H A DGNULDBackend.h327 /// (i.e., offset, addresses, file/mem size, flag, and alignment)
330 /// getSegmentFlag - give a section flag and return the corresponding segment
331 /// flag
334 uint32_t flag = llvm::ELF::PF_R; local
336 flag |= llvm::ELF::PF_W;
338 flag |= llvm::ELF::PF_X;
339 return flag;
/frameworks/compile/mclinker/lib/Support/
H A DFileHandle.cpp232 int prot, flag; local
236 flag = MAP_FILE | MAP_PRIVATE;
241 flag = MAP_FILE | MAP_SHARED;
246 flag = MAP_FILE | MAP_SHARED;
254 pMemBuffer = ::mmap(NULL, pLength, prot, flag, m_Handler, pStartOffset);
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1124 if (0 == (pSectHdr.flag() & llvm::ELF::SHF_ALLOC))
1127 bool is_write = (pSectHdr.flag() & llvm::ELF::SHF_WRITE) != 0;
1128 bool is_exec = (pSectHdr.flag() & llvm::ELF::SHF_EXECINSTR) != 0;
1422 if (0 == ((*sect)->flag() & llvm::ELF::SHF_ALLOC) &&
1427 cur_seg_flag = getSegmentFlag((*sect)->flag());
1539 uint32_t flag = 0x0; local
1543 flag = llvm::ELF::SHF_EXECINSTR;
1556 if (0 != (llvm::ELF::SHF_EXECINSTR & sect->flag())) {
1557 flag = llvm::ELF::SHF_EXECINSTR;
1570 if (llvm::ELF::SHF_EXECINSTR != flag
[all...]
/frameworks/base/voip/java/android/net/sip/
H A DSipProfile.java250 * Sets the send keep-alive flag.
252 * @param flag true if sending keep-alive message is required,
256 public Builder setSendKeepAlive(boolean flag) { argument
257 mProfile.mSendKeepAlive = flag;
263 * Sets the auto. registration flag.
265 * @param flag true if the profile will be registered automatically,
269 public Builder setAutoRegistration(boolean flag) { argument
270 mProfile.mAutoRegistration = flag;
464 * Gets the flag of 'Sending keep-alive'.
466 * @return the flag o
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardTransportControlView.java341 private static void setVisibilityBasedOnFlag(View view, int flags, int flag) { argument
342 if ((flags & flag) != 0) {
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DCallbackProxy.java526 public void setXSSAuditorEnabled(boolean flag) { argument
527 obtainMessage(SET_XSS_AUDITOR_ENABLED, flag ? 1 : 0, 0).sendToTarget();
H A DLayoutTestController.java73 public void setXSSAuditorEnabled(boolean flag); argument
H A DTestShellActivity.java159 // this function by default, but V8 requires the flag to turn it on.
584 public void setXSSAuditorEnabled (boolean flag) { argument
585 mWebViewClassic.getSettings().setXSSAuditorEnabled(flag);
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DLayoutTestController.java109 public void setXSSAuditorEnabled(boolean flag) { argument
110 mLayoutTestsExecutor.setXSSAuditorEnabled(flag);
H A DLayoutTestsExecutor.java720 public void setXSSAuditorEnabled(boolean flag) { argument
721 Log.i(LOG_TAG, mCurrentTestRelativePath + ": setXSSAuditorEnabled(" + flag + ") called");
723 msg.arg1 = flag ? 1 : 0;
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java225 public void glDepthMask(boolean flag) { argument
227 mgl.glDepthMask(flag);
H A DGLLogWrapper.java1452 public void glDepthMask(boolean flag) { argument
1454 arg("flag", flag);
1457 mgl.glDepthMask(flag);
/frameworks/base/libs/androidfw/
H A DKeyLayoutMap.cpp240 uint32_t flag = getKeyFlagByLabel(flagToken.string()); local
241 if (!flag) {
242 ALOGE("%s: Expected key flag label, got '%s'.", mTokenizer->getLocation().string(),
246 if (flags & flag) {
247 ALOGE("%s: Duplicate key flag '%s'.", mTokenizer->getLocation().string(),
251 flags |= flag;
/frameworks/base/media/java/android/media/videoeditor/
H A DMediaArtistNativeHelper.java2082 * Sets the audio regenerate flag
2084 * @param flag The boolean to set the audio regenerate flag
2087 void setAudioflag(boolean flag) { argument
2090 flag = true;
2092 mRegenerateAudio = flag;
2096 * Gets the audio regenerate flag
2098 * @param return The boolean to get the audio regenerate flag
3158 * This function sets the flag to invalidate the preview array
3178 * flag
[all...]
H A DMediaItem.java471 * @param flag The flag to indicate if regeneration of clip is true or
474 void setRegenerateClip(boolean flag) { argument
475 mRegenerateClip = flag;
479 * @return flag The flag to indicate if regeneration of clip is true or
H A DVideoEditorImpl.java851 private synchronized MediaItem removeMediaItem(String mediaItemId, boolean flag) { argument
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorClasses.cpp1733 bool flag)
1808 if(flag)
1728 videoEditClasses_getEditSettings( bool* pResult, JNIEnv* pEnv, jobject object, M4VSS3GPP_EditSettings** ppSettings, bool flag) argument
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_api.c155 /* check if it is DRM Message, only check the first two bytes, it must be the start flag of boundary: "--" */
511 int32_t flag = DRM_FAILURE; local
636 flag =
641 flag =
647 flag =
653 flag =
688 /* If the flag is TRUE, this means: we have found a valid RO, so break, no need to check other RO */
689 if (DRM_SUCCESS == flag)
698 flag = DRM_FAILURE;
703 return flag;
[all...]

Completed in 392 milliseconds

123