HomeSort by relevance Sort by last modified time
    Searched full:inprogress (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/autotest/client/common_lib/cros/fake_device_server/
constants.py 11 DEVICE_STATES = ['aborted', 'done', 'error', 'inProgress', QUEUED_STATE
commands_unittest.py 104 'inProgress'
123 check_has_commands([command1_id], state='inProgress')
  /external/skia/docs/
status.json 36 "InProgress": {
  /external/skqp/docs/
status.json 33 "InProgress": {
  /frameworks/base/core/java/android/text/style/
SpellCheckSpan.java 42 public void setSpellCheckInProgress(boolean inProgress) {
43 mSpellCheckInProgress = inProgress;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXWriter.java 90 boolean inProgress = false;
94 if (inProgress) {
98 inProgress = false;
101 if (!inProgress) {
114 inProgress = true;
117 if (inProgress) {
  /prebuilts/go/darwin-x86/src/cmd/vet/
types.go 129 func (f *File) matchArgTypeInternal(t printfArgType, typ types.Type, arg ast.Expr, inProgress map[types.Type]bool) bool {
151 if inProgress[typ] {
155 inProgress[typ] = true
164 (f.matchArgTypeInternal(t, typ.Key(), arg, inProgress) && f.matchArgTypeInternal(t, typ.Elem(), arg, inProgress))
175 return t&argPointer != 0 || f.matchArgTypeInternal(t, typ.Elem(), arg, inProgress)
185 return t&argPointer != 0 || f.matchArgTypeInternal(t, typ.Elem(), arg, inProgress)
202 return f.matchStructArgType(t, str, arg, inProgress)
208 return f.matchStructArgType(t, typ, arg, inProgress)
299 func (f *File) matchStructArgType(t printfArgType, typ *types.Struct, arg ast.Expr, inProgress map[types.Type]bool) bool
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
types.go 129 func (f *File) matchArgTypeInternal(t printfArgType, typ types.Type, arg ast.Expr, inProgress map[types.Type]bool) bool {
151 if inProgress[typ] {
155 inProgress[typ] = true
164 (f.matchArgTypeInternal(t, typ.Key(), arg, inProgress) && f.matchArgTypeInternal(t, typ.Elem(), arg, inProgress))
175 return t&argPointer != 0 || f.matchArgTypeInternal(t, typ.Elem(), arg, inProgress)
185 return t&argPointer != 0 || f.matchArgTypeInternal(t, typ.Elem(), arg, inProgress)
202 return f.matchStructArgType(t, str, arg, inProgress)
208 return f.matchStructArgType(t, typ, arg, inProgress)
299 func (f *File) matchStructArgType(t printfArgType, typ *types.Struct, arg ast.Expr, inProgress map[types.Type]bool) bool
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
FullscreenUserSwitcher.java 115 private void toggleSwitchInProgress(boolean inProgress) {
116 if (inProgress) {
  /packages/apps/Settings/src/com/android/settings/fingerprint/
FingerprintRemoveSidecar.java 123 return inProgress() && mFingerprintRemoving.getFingerId() == fid;
126 final boolean inProgress() {
FingerprintSettings.java 268 if (mRemovalSidecar.inProgress()
317 renameDialog.setDeleteInProgress(mRemovalSidecar.inProgress());
427 final boolean removalInProgress = mRemovalSidecar.inProgress();
501 if (mRemovalSidecar.inProgress()) {
531 renameDialog.setDeleteInProgress(mRemovalSidecar.inProgress());
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/
TranscriptionDbHelper.java 108 List<Uri> inProgress = new ArrayList<>();
116 inProgress.add(ContentUris.withAppendedId(uri, cursor.getLong(ID)));
120 return inProgress;
GetTranscriptReceiver.java 216 List<Uri> inProgress = dbHelper.getTranscribingVoicemails();
217 if (!inProgress.isEmpty()) {
218 Uri uri = inProgress.get(0);
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
IModuleResult.java 90 * @param inProgress whether the module is currently in progress
92 void inProgress(boolean inProgress);
ModuleResult.java 98 public void inProgress(boolean inProgress) {
99 mInProgress = inProgress;
  /prebuilts/go/darwin-x86/src/encoding/gob/
decode.go 790 func (dec *Decoder) decOpFor(wireId typeId, rt reflect.Type, name string, inProgress map[reflect.Type]*decOp) *decOp {
799 if opPtr := inProgress[rt]; opPtr != nil {
809 inProgress[rt] = &op
815 elemOp := dec.decOpFor(elemId, t.Elem(), name, inProgress)
825 keyOp := dec.decOpFor(keyId, t.Key(), "key of "+name, inProgress)
826 elemOp := dec.decOpFor(elemId, t.Elem(), "element of "+name, inProgress)
844 elemOp := dec.decOpFor(elemId, t.Elem(), name, inProgress)
875 func (dec *Decoder) decIgnoreOpFor(wireId typeId, inProgress map[typeId]*decOp) *decOp {
878 if opPtr := inProgress[wireId]; opPtr != nil {
883 inProgress[wireId] = &o
    [all...]
encode.go 516 func encOpFor(rt reflect.Type, inProgress map[reflect.Type]*encOp, building map[*typeInfo]bool) (*encOp, int) {
524 if opPtr := inProgress[rt]; opPtr != nil {
535 inProgress[rt] = &op
544 elemOp, elemIndir := encOpFor(t.Elem(), inProgress, building)
555 elemOp, elemIndir := encOpFor(t.Elem(), inProgress, building)
562 keyOp, keyIndir := encOpFor(t.Key(), inProgress, building)
563 elemOp, elemIndir := encOpFor(t.Elem(), inProgress, building)
  /prebuilts/go/linux-x86/src/encoding/gob/
decode.go 790 func (dec *Decoder) decOpFor(wireId typeId, rt reflect.Type, name string, inProgress map[reflect.Type]*decOp) *decOp {
799 if opPtr := inProgress[rt]; opPtr != nil {
809 inProgress[rt] = &op
815 elemOp := dec.decOpFor(elemId, t.Elem(), name, inProgress)
825 keyOp := dec.decOpFor(keyId, t.Key(), "key of "+name, inProgress)
826 elemOp := dec.decOpFor(elemId, t.Elem(), "element of "+name, inProgress)
844 elemOp := dec.decOpFor(elemId, t.Elem(), name, inProgress)
875 func (dec *Decoder) decIgnoreOpFor(wireId typeId, inProgress map[typeId]*decOp) *decOp {
878 if opPtr := inProgress[wireId]; opPtr != nil {
883 inProgress[wireId] = &o
    [all...]
encode.go 516 func encOpFor(rt reflect.Type, inProgress map[reflect.Type]*encOp, building map[*typeInfo]bool) (*encOp, int) {
524 if opPtr := inProgress[rt]; opPtr != nil {
535 inProgress[rt] = &op
544 elemOp, elemIndir := encOpFor(t.Elem(), inProgress, building)
555 elemOp, elemIndir := encOpFor(t.Elem(), inProgress, building)
562 keyOp, keyIndir := encOpFor(t.Key(), inProgress, building)
563 elemOp, elemIndir := encOpFor(t.Elem(), inProgress, building)
  /external/autotest/client/site_tests/cellular_SafetyDance/
cellular_SafetyDance.py 54 'InProgress' in reason):
105 'org.chromium.flimflam.Error.InProgress',
  /hardware/qcom/bt/msm8909/libbt-vendor/src/
bt_vendor_qcom.c 232 char inProgress[PROPERTY_VALUE_MAX] = {'\0'};
244 property_get("wc_transport.patch_dnld_inprog", inProgress, "null");
245 if((is_soc_initialized() == true) || (strcmp(inProgress,"null") != 0))
    [all...]
  /hardware/qcom/bt/msm8996/libbt-vendor/src/
bt_vendor_qcom.c 248 char inProgress[PROPERTY_VALUE_MAX] = {'\0'};
260 property_get("wc_transport.patch_dnld_inprog", inProgress, "null");
261 if((is_soc_initialized() == true) || (strcmp(inProgress,"null") != 0))
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
enable_machine.py 94 # The API suggests that "InProgress" should be returned, so that's
  /hardware/qcom/bt/msm8909w_3100/libbt-vendor/src/
bt_vendor_qcom.c 226 char inProgress[PROPERTY_VALUE_MAX] = {'\0'};
    [all...]
  /hardware/qcom/bt/msm8998/libbt-vendor/src/
bt_vendor_qcom.c 230 char inProgress[PROPERTY_VALUE_MAX] = {'\0'};
    [all...]

Completed in 641 milliseconds

1 2 3