HomeSort by relevance Sort by last modified time
    Searched refs:full (Results 76 - 100 of 526) sorted by null

1 2 34 5 6 7 8 91011>>

  /dalvik/vm/mterp/x86/
OP_MUL_LONG.S 30 leal (%ecx,rIBASE),rIBASE # full result now in rIBASE:%eax
  /external/chromium_org/components/autofill/core/browser/
contact_info.cc 117 void NameInfo::SetFullName(const base::string16& full) {
124 Tokenize(full, ASCIIToUTF16(" "), &full_name_tokens);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
queries_unittest.py 43 options = MockOptions(all=False, csv=False, full=False, platform=platform,
80 full=True)
  /system/core/libcutils/tests/memset_mips/
memset_omips.S 47 or a1, t0 # a1 is now pattern in full word
70 andi t0, a2, 0x4 # Check if there is at least a full
  /external/chromium/chrome/browser/autofill/
contact_info.h 35 // Returns the full name, which can include up to the first, middle, and last
84 // |full|. It is tokenized on a space only.
85 void SetFullName(const string16& full);
  /packages/apps/Camera/src/com/android/camera/
CameraActivity.java 255 protected void onFullScreenChanged(boolean full) {
256 if (full) {
261 super.onFullScreenChanged(full);
262 mCurrentModule.onFullScreenChanged(full);
ActivityBase.java 466 protected void onFullScreenChanged(boolean full) {
467 if (mShowCameraAppView == full) return;
468 mShowCameraAppView = full;
585 // This is used to notify that the screen nail will be drawn in full screen
588 public void onFullScreenChanged(boolean full) {
589 ActivityBase.this.onFullScreenChanged(full);
  /external/dhcpcd/
bind.c 62 sigset_t full; local
69 sigfillset(&full);
70 sigprocmask(SIG_SETMASK, &full, &old);
  /external/netperf/
netcpu_pstat.c 64 long long full; member in union:overlay_u
144 long long full; member in union:overlay_u
180 long long full; member in union:overlay_u
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
structs.h 33 WebRtc_Word16 full; /* 0 - first byte in memory filled, second empty*/ member in struct:Bitstreamstruct_dec
45 WebRtc_Word16 full; /* 0 - first byte in memory filled, second empty*/ member in struct:Bitstreamstruct_enc
373 WebRtc_Word16 full; /* 0 - first byte in memory filled, second empty*/ member in struct:__anon31345
encode.c 102 ISACenc_obj->bitstr_obj.full = 1;
220 arithLenBeforeEncodingDFT = (ISACenc_obj->bitstr_obj.stream_index << 1) + (1-ISACenc_obj->bitstr_obj.full);
324 arithLenDFTByte = (ISACenc_obj->bitstr_obj.stream_index << 1) + (1-ISACenc_obj->bitstr_obj.full) - arithLenBeforeEncodingDFT;
373 ISACenc_obj->bitstr_obj.full = transcodingParam.full;
383 arithLenBeforeEncodingDFT = (ISACenc_obj->bitstr_obj.stream_index << 1) + (1-ISACenc_obj->bitstr_obj.full);
520 ISACenc_obj->bitstr_obj.full = 1;
  /frameworks/base/core/java/android/content/res/
StringBlock.java 378 private static String subtag(String full, String attribute) {
379 int start = full.indexOf(attribute);
385 int end = full.indexOf(';', start);
388 return full.substring(start);
390 return full.substring(start, end);
  /hardware/ti/wlan/mac80211/ti-utils/
calibrator.c 112 static void __usage_cmd(const struct cmd *cmd, char *indent, bool full)
137 if (!full || !cmd->help) {
173 static void usage(bool full)
187 __usage_cmd(section, "\t", full);
197 __usage_cmd(cmd, "\t", full);
  /external/chromium_org/chrome/browser/safe_browsing/
protocol_parser_unittest.cc 57 // Test parsing one add chunk with full hashes.
294 // Test parsing one sub chunk with full hashes.
744 SBFullHash full; local
745 memcpy(full.full_hash, "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", 32);
746 EXPECT_TRUE(entry->FullHashAt(0) == full);
755 memcpy(full.full_hash, "yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy", 32);
756 EXPECT_TRUE(entry->FullHashAt(0) == full);
757 memcpy(full.full_hash, "zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz", 32);
758 EXPECT_TRUE(entry->FullHashAt(1) == full);
784 SBFullHash full; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
mediaControls.css 84 video:-webkit-full-page-media {
93 audio:-webkit-full-page-media, video:-webkit-full-page-media {
98 audio:-webkit-full-page-media::-webkit-media-controls-panel,
99 video:-webkit-full-page-media::-webkit-media-controls-panel {
  /external/chromium_org/v8/test/mjsunit/
cyrillic.js 183 var full = (i != 0);
184 var mixed = full ? "[a-\uffff]" : "[a-" + cyrillic.LAST + "]";
185 var f = full ? "f" : "c";
191 ignore_case || (full && !!add_non_ascii_character_to_subject);
196 assertEquals(ignore_case || full, re.test(cyrillic.middle), 62 + flag + f);
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 152 void SplitStringToIteratorUsing(const string& full,
158 const char* p = full.data();
159 const char* end = p + full.size();
173 begin_index = full.find_first_not_of(delim);
175 end_index = full.find_first_of(delim, begin_index);
177 *result++ = full.substr(begin_index);
180 *result++ = full.substr(begin_index, (end_index - begin_index));
181 begin_index = full.find_first_not_of(delim, end_index);
185 void SplitStringUsing(const string& full,
189 SplitStringToIteratorUsing(full, delim, it)
    [all...]
  /external/v8/test/mjsunit/
cyrillic.js 183 var full = (i != 0);
184 var mixed = full ? "[a-\uffff]" : "[a-" + cyrillic.LAST + "]";
185 var f = full ? "f" : "c";
191 ignore_case || (full && !!add_non_ascii_character_to_subject);
196 assertEquals(ignore_case || full, re.test(cyrillic.middle), 62 + flag + f);
  /external/chromium_org/chrome/browser/resources/chromeos/
keyboard_overlay_data.js 357 'label': 'full screen'
673 'label': 'full screen'
950 'label': 'full screen'
1258 'label': 'full screen'
1538 'label': 'full screen'
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
dtfmttst.cpp 105 * Instantiate a SimpleDateFormat set up to produce a full time
201 DateFormat* fmtA = DateFormat::createDateTimeInstance(DateFormat::MEDIUM, DateFormat::FULL);
202 DateFormat* fmtB = DateFormat::createDateTimeInstance(DateFormat::MEDIUM, DateFormat::FULL);
229 //DateFormat* fmt = DateFormat::createDateTimeInstance(DateFormat::MEDIUM, DateFormat::FULL, Locale::ENGLISH);
634 DateFormat* fmt = DateFormat::createDateInstance(DateFormat::FULL, Locale("cs", "", ""));
787 DateFormat::SHORT, DateFormat::MEDIUM, DateFormat::LONG, DateFormat::FULL
794 DateFormat *full = DateFormat::createDateTimeInstance(DateFormat::LONG, DateFormat::LONG); local
795 if(full==NULL) {
821 full->format(when, format);
838 delete full;
1141 DateFormat *date=0, *time=0, *full=0; local
2017 DateFormat *full = DateFormat::createDateInstance(DateFormat::kFull , loc); local
2116 DateFormat *full = DateFormat::createDateInstance(DateFormat::kFullRelative, loc); local
2146 DateFormat *full = DateFormat::createDateInstance(DateFormat::kFull, loc); local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
uresbund.c 2361 char full[1024] = ""; local
    [all...]
  /external/icu4c/common/
uresbund.cpp 2412 char full[1024] = ""; local
    [all...]
  /external/icu4c/test/intltest/
strcase.cpp 549 UnicodeString full; local
550 while((c=iter.next(full))>=0) {
552 // Check that the full Case_Folding has more than 1 code point.
553 if(!full.hasMoreChar32Than(0, 0x7fffffff, 1)) {
554 errln("error: FullCaseFoldingIterator.next()=U+%04lX full Case_Folding has at most 1 code point", (long)c);
557 // Check that full == Case_Folding(c).
560 if(full!=cf) {
561 errln("error: FullCaseFoldingIterator.next()=U+%04lX full Case_Folding != cf(c)", (long)c);
565 if((full==ffi && c==0xfb03) || (full==ss && (c==0xdf || c==0x1e9e)))
    [all...]
  /external/chromium_org/third_party/jinja2/
debug.py 103 def render_as_html(self, full=False):
107 render_traceback(self, full=full),
  /external/chromium_org/third_party/re2/re2/
simplify.cc 68 // Simple as long as the char class is not empty, not full.
70 return !ccb_->empty() && !ccb_->full();
71 return !cc_->empty() && !cc_->full();
387 if (cc->full())

Completed in 639 milliseconds

1 2 34 5 6 7 8 91011>>