Searched defs:first (Results 1 - 25 of 1089) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/renderer/safe_browsing/
H A Dtest_utils.cc15 void ExpectFeatureMapsAreEqual(const FeatureMap& first, argument
17 std::map<std::string, double> sorted_first(first.features().begin(),
18 first.features().end());
/external/chromium_org/v8/test/webkit/
H A Deval-cache-crash.js30 var a = "first";
31 var first = eval(str)(); variable
32 shouldBe("first", "'first'");
/external/elfutils/libelf/
H A Delf_newscn.c69 bool first = false; local
97 first = true;
128 /* Remember the index for the first section in this block. */
162 if (unlikely (first))
164 /* For the first section we mark the data as already available. */
166 first = false;
/external/clang/test/Index/
H A Drecursive-member-access.c2 struct rdar8650865 *first; member in struct:rdar8650865
7 return ((((((s->first)->first)
8 ->first)
9 ->first)
10 ->first)
11 ->first)
12 ->first
13 ->first
14 ->first
[all...]
/external/chromium_org/chrome/browser/spellchecker/
H A Dword_trimmer.cc24 size_t first = std::string::npos; local
31 if (first == std::string::npos)
32 first = word_offset[0];
35 if (first == std::string::npos) {
46 if (first == std::string::npos)
48 *start -= first;
49 return text.substr(first, last - first);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pt_util.c38 void draw_pt_split_prim(unsigned prim, unsigned *first, unsigned *incr) argument
42 *first = 1;
46 *first = 2;
51 *first = 2;
55 *first = 4;
59 *first = 4;
63 *first = 3;
67 *first = 6;
73 *first = 3;
77 *first
96 draw_pt_trim_count(unsigned count, unsigned first, unsigned incr) argument
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Dt_x509a.c70 char oidstr[80], first; local
74 first = 1;
78 if(!first) BIO_puts(out, ", ");
79 else first = 0;
87 first = 1;
91 if(!first) BIO_puts(out, ", ");
92 else first = 0;
/external/chromium_org/v8/src/
H A Ddata-flow.cc38 bool first = true; local
42 if (!first) PrintF(",");
43 first = false;
H A Dhydrogen-removable-simulates.cc39 // Nasty heuristic: Never remove the first simulate in a block. This
41 bool first = true; local
66 // Skip the non-simulates and the first simulate.
68 if (first) {
69 first = false;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1146.js33 a.first = function() { return 11; }
42 var b = "first";
H A Dregress-931.js35 function first() { sequence += "1"; return o; } function
40 var result = (first()[second()](third(), fourth()))
46 var result = (first()[second_prime()](third(), fourth()))
/external/compiler-rt/lib/tsan/lit_tests/
H A Duser_malloc.cc9 static int first = 0; local
10 if (__sync_lock_test_and_set(&first, 1) == 0)
/external/elfutils/libebl/
H A Deblmachineflagname.c74 int first = 1; local
80 if (! first)
104 first = 0;
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt_util.c38 void draw_pt_split_prim(unsigned prim, unsigned *first, unsigned *incr) argument
42 *first = 1;
46 *first = 2;
51 *first = 2;
55 *first = 4;
59 *first = 4;
63 *first = 3;
67 *first = 6;
73 *first = 3;
77 *first
96 draw_pt_trim_count(unsigned count, unsigned first, unsigned incr) argument
[all...]
/external/openssl/crypto/asn1/
H A Dt_x509a.c70 char oidstr[80], first; local
74 first = 1;
78 if(!first) BIO_puts(out, ", ");
79 else first = 0;
87 first = 1;
91 if(!first) BIO_puts(out, ", ");
92 else first = 0;
/external/oprofile/pp/
H A Dcommon_option.h32 std::list<std::string> first; member in struct:options::spec
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DPair.java32 public final A first; field in class:Pair
35 public Pair(A first, B second) { argument
36 this.first = first;
/external/v8/src/
H A Ddata-flow.cc38 bool first = true; local
42 if (!first) PrintF(",");
43 first = false;
/external/v8/test/mjsunit/regress/
H A Dregress-1146.js33 a.first = function() { return 11; }
42 var b = "first";
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMAxisTraverser.java36 * for(int nodeHandle=myTraverser.first(myContext);
50 * an axis, the first function must be used to get the first node.
57 * @return the first node in the traversal.
59 public int first(int context) method in class:DTMAxisTraverser
67 * an axis, the first function must be used to get the first node.
76 * @return the first node in the traversal.
78 public int first(int context, int extendedTypeID) method in class:DTMAxisTraverser
90 * previous traversal step. For the first traversa
[all...]
/external/chromium/chrome/browser/
H A Dbrowser_commands_unittest.cc31 // Navigate to the first tab using an accelerator.
39 // Navigate back to the first tab using the previous accelerators.
124 // The new tab should be like the first one but navigated back.
125 TabContents* first = browser()->GetTabContentsAt(1); local
127 EXPECT_FALSE(first->controller().CanGoBack());
128 EXPECT_TRUE(first->controller().CanGoForward());
136 CommitPendingLoad(&first->controller());
141 EXPECT_EQ(url1, first->GetURL());
142 EXPECT_FALSE(first->controller().CanGoBack());
143 EXPECT_TRUE(first
[all...]
/external/chromium_org/cc/base/
H A Dscoped_ptr_algorithm.h15 ForwardIterator first,
18 ForwardIterator result = first;
19 for (; first != last; ++first) {
20 if (!predicate(*first)) {
21 container->swap(first, result);
13 remove_if( ScopedContainer* container, ForwardIterator first, ForwardIterator last, Predicate predicate) argument
/external/chromium_org/chrome/browser/extensions/api/dial/
H A Ddial_device_data_unittest.cc14 void ExpectEqual(const DialDeviceData& first, const DialDeviceData& second) { argument
15 EXPECT_EQ(first.device_id(), second.device_id());
16 EXPECT_EQ(first.label(), second.label());
17 EXPECT_EQ(first.device_description_url(), second.device_description_url());
18 EXPECT_EQ(first.response_time(), second.response_time());
19 EXPECT_EQ(first.max_age(), second.max_age());
20 EXPECT_EQ(first.config_id(), second.config_id());
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DMergeIdenticalElementsCommand.cpp35 MergeIdenticalElementsCommand::MergeIdenticalElementsCommand(PassRefPtr<Element> first, PassRefPtr<Element> second) argument
36 : SimpleEditCommand(first->document())
37 , m_element1(first)
/external/clang/test/SemaCXX/
H A Dnon-empty-class-size-zero.cpp13 int first; member in struct:Y

Completed in 2895 milliseconds

1234567891011>>